{"paragraphs":[{"text":"%dep\n\n/*\n\nBEFORE START\n\nif your are using Hortonworks Sandbox, make sure you added more cores and more memory to YARN\n\nspark streaming requires at least 3 containers to run\n\n\n*/\n\n/* this step must be executed as first command, if you already executed other commands, please click in \"Interpreter\" and restart spark interpreter */\n\nz.reset()\nz.load(\"org.apache.spark:spark-streaming-twitter_2.10:1.4.1\")\nz.load(\"org.twitter4j:twitter4j-core:3.0.3\")\nz.load(\"org.twitter4j:twitter4j-media-support:3.0.3\")\nz.load(\"org.twitter4j:twitter4j-async:3.0.3\")\nz.load(\"org.twitter4j:twitter4j-examples:3.0.3\")\nz.load(\"org.twitter4j:twitter4j-stream:3.0.3\")","dateUpdated":"2015-11-03T01:47:03+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446127001985_751042471","id":"20151029-135641_978946549","result":{"code":"SUCCESS","type":"TEXT","msg":"res0: org.apache.zeppelin.spark.dep.Dependency = org.apache.zeppelin.spark.dep.Dependency@189d576c\n"},"dateCreated":"2015-10-29T01:56:41+0000","dateStarted":"2015-11-03T01:47:03+0000","dateFinished":"2015-11-03T01:47:26+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:511"},{"text":"/*\nUPDATE YOUR TWITTER CREDENTIALS\n*/\n\n\nimport org.apache.spark.streaming._\nimport org.apache.spark.streaming.twitter._\nimport org.apache.spark.storage.StorageLevel\nimport scala.io.Source\nimport scala.collection.mutable.HashMap\nimport java.io.File\nimport org.apache.log4j.Logger\nimport org.apache.log4j.Level\nimport sys.process.stringSeqToProcess\nimport twitter4j.HashtagEntity\n\n/** Configures the Oauth Credentials for accessing Twitter */\ndef configureTwitterCredentials(apiKey: String, apiSecret: String, accessToken: String, accessTokenSecret: String) {\n val configs = new HashMap[String, String] ++= Seq(\n \"apiKey\" -> apiKey, \"apiSecret\" -> apiSecret, \"accessToken\" -> accessToken, \"accessTokenSecret\" -> accessTokenSecret)\n println(\"Configuring Twitter OAuth\")\n configs.foreach{ case(key, value) =>\n if (value.trim.isEmpty) {\n throw new Exception(\"Error setting authentication - value for \" + key + \" not set\")\n }\n val fullKey = \"twitter4j.oauth.\" + key.replace(\"api\", \"consumer\")\n System.setProperty(fullKey, value.trim)\n println(\"\\tProperty \" + fullKey + \" set as [\" + value.trim + \"]\")\n }\n println()\n}\n\n// Configure Twitter credentials\nval apiKey = \"\"\nval apiSecret = \"\"\nval accessToken = \"\"\nval accessTokenSecret = \"\"\nconfigureTwitterCredentials(apiKey, apiSecret, accessToken, accessTokenSecret)\n\nimport org.apache.spark.streaming.twitter._\nval ssc = new StreamingContext(sc, Seconds(2))\nval tweets = TwitterUtils.createStream(ssc, None, Array(\"#hadoop\", \"#bigdata\", \"#spark\", \"#hortonworks\", \"#HDP\"))\n//tweets.saveAsObjectFiles(\"hdfs://sandbox.hortonworks.com:8020/test/twitter-spark/twitter_\", \".txt\")\n\nval twt = tweets.window(Seconds(600))\n\ncase class Tweet(createdAt:Long, text:String, screenName:String)\ntwt.map(status=>\n Tweet(status.getCreatedAt().getTime()/1000, status.getText(), status.getUser().getScreenName())\n).foreachRDD(rdd=>\n rdd.toDF().registerTempTable(\"tweets\")\n)\n\n//twt.print\n\nssc.start()\n","dateUpdated":"2015-11-03T02:08:18+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","tableHide":false,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446126855245_-996333792","id":"20151029-135415_169890","result":{"code":"SUCCESS","type":"TEXT","msg":"import org.apache.spark.streaming._\nimport org.apache.spark.streaming.twitter._\nimport org.apache.spark.storage.StorageLevel\nimport scala.io.Source\nimport scala.collection.mutable.HashMap\nimport java.io.File\nimport org.apache.log4j.Logger\nimport org.apache.log4j.Level\nimport sys.process.stringSeqToProcess\nimport twitter4j.HashtagEntity\nconfigureTwitterCredentials: (apiKey: String, apiSecret: String, accessToken: String, accessTokenSecret: String)Unit\napiKey: String = V5qDyUgRR9ypp1Le6TV2R9xuN\napiSecret: String = wf9f616YjjngQH9md4ces2wTNwU1w8kQsSlLKtXFcBOgsOKIn2\naccessToken: String = 68171747-abCcgA5jod3OANKSctFHbNfOdbrAaulD4W6PsxrWf\naccessTokenSecret: String = 0JzXXr27RGRa5vpa84hDuLqAnH172zg1chilIvFIBevrZ\nConfiguring Twitter OAuth\n\tProperty twitter4j.oauth.consumerKey set as [V5qDyUgRR9ypp1Le6TV2R9xuN]\n\tProperty twitter4j.oauth.accessToken set as [68171747-abCcgA5jod3OANKSctFHbNfOdbrAaulD4W6PsxrWf]\n\tProperty twitter4j.oauth.consumerSecret set as [wf9f616YjjngQH9md4ces2wTNwU1w8kQsSlLKtXFcBOgsOKIn2]\n\tProperty twitter4j.oauth.accessTokenSecret set as [0JzXXr27RGRa5vpa84hDuLqAnH172zg1chilIvFIBevrZ]\n\nimport org.apache.spark.streaming.twitter._\nssc: org.apache.spark.streaming.StreamingContext = org.apache.spark.streaming.StreamingContext@223d5843\ntweets: org.apache.spark.streaming.dstream.ReceiverInputDStream[twitter4j.Status] = org.apache.spark.streaming.twitter.TwitterInputDStream@4dbecb59\ntwt: org.apache.spark.streaming.dstream.DStream[twitter4j.Status] = org.apache.spark.streaming.dstream.WindowedDStream@34389aba\ndefined class Tweet\n"},"dateCreated":"2015-10-29T01:54:15+0000","dateStarted":"2015-11-03T01:48:06+0000","dateFinished":"2015-11-03T01:49:22+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:512"},{"text":"%sql\n-- checking window contents\n\nselect from_unixtime(createdAt), count(1) from tweets group by createdAt order by createdAt","dateUpdated":"2015-11-03T02:08:16+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[{"name":"_c0","index":0,"aggr":"sum"}],"values":[{"name":"_c1","index":1,"aggr":"sum"}],"groups":[],"scatter":{"yAxis":{"name":"_c1","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/sql","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446128385763_-529427583","id":"20151029-141945_1632994865","result":{"code":"SUCCESS","type":"TABLE","msg":"_c0\t_c1\n2015-11-03 01:58:15\t1\n2015-11-03 01:58:18\t1\n2015-11-03 01:58:23\t1\n2015-11-03 01:58:27\t1\n2015-11-03 01:58:31\t1\n2015-11-03 01:58:42\t1\n2015-11-03 01:58:43\t1\n2015-11-03 01:58:51\t1\n2015-11-03 01:58:56\t1\n2015-11-03 01:59:08\t1\n2015-11-03 01:59:11\t1\n2015-11-03 01:59:12\t1\n2015-11-03 01:59:13\t1\n2015-11-03 01:59:14\t2\n2015-11-03 01:59:15\t1\n2015-11-03 01:59:16\t1\n2015-11-03 01:59:17\t2\n2015-11-03 01:59:20\t1\n2015-11-03 01:59:22\t1\n2015-11-03 01:59:24\t1\n2015-11-03 01:59:29\t1\n2015-11-03 01:59:35\t1\n2015-11-03 01:59:36\t2\n2015-11-03 01:59:48\t1\n2015-11-03 02:00:00\t1\n2015-11-03 02:00:01\t2\n2015-11-03 02:00:02\t1\n2015-11-03 02:00:10\t1\n2015-11-03 02:00:35\t1\n2015-11-03 02:00:49\t1\n2015-11-03 02:00:54\t1\n2015-11-03 02:00:57\t1\n2015-11-03 02:01:20\t1\n2015-11-03 02:01:23\t1\n2015-11-03 02:01:26\t1\n2015-11-03 02:01:36\t1\n2015-11-03 02:01:38\t1\n2015-11-03 02:01:51\t1\n2015-11-03 02:02:04\t1\n2015-11-03 02:02:10\t1\n2015-11-03 02:02:21\t1\n2015-11-03 02:02:25\t1\n2015-11-03 02:02:41\t1\n2015-11-03 02:02:42\t2\n2015-11-03 02:02:44\t1\n2015-11-03 02:02:45\t1\n2015-11-03 02:02:46\t1\n2015-11-03 02:02:48\t2\n2015-11-03 02:02:54\t1\n2015-11-03 02:02:59\t1\n2015-11-03 02:03:13\t1\n2015-11-03 02:03:21\t1\n2015-11-03 02:03:23\t1\n2015-11-03 02:03:29\t1\n2015-11-03 02:03:39\t1\n2015-11-03 02:03:41\t1\n2015-11-03 02:03:46\t1\n2015-11-03 02:03:56\t1\n2015-11-03 02:03:59\t1\n2015-11-03 02:04:01\t1\n2015-11-03 02:04:05\t1\n2015-11-03 02:04:11\t1\n2015-11-03 02:04:12\t1\n2015-11-03 02:04:13\t2\n2015-11-03 02:04:14\t1\n2015-11-03 02:04:18\t1\n2015-11-03 02:04:20\t2\n2015-11-03 02:04:23\t1\n2015-11-03 02:04:27\t1\n2015-11-03 02:04:29\t2\n2015-11-03 02:04:37\t1\n2015-11-03 02:04:51\t2\n2015-11-03 02:04:56\t1\n2015-11-03 02:05:05\t1\n2015-11-03 02:05:11\t1\n2015-11-03 02:05:16\t3\n2015-11-03 02:05:30\t2\n2015-11-03 02:05:46\t1\n2015-11-03 02:06:07\t1\n2015-11-03 02:06:13\t1\n2015-11-03 02:06:19\t1\n2015-11-03 02:06:27\t1\n2015-11-03 02:06:37\t1\n2015-11-03 02:06:48\t1\n2015-11-03 02:06:51\t2\n2015-11-03 02:06:52\t1\n2015-11-03 02:06:53\t1\n2015-11-03 02:06:54\t1\n2015-11-03 02:07:02\t1\n2015-11-03 02:07:09\t1\n2015-11-03 02:07:13\t1\n2015-11-03 02:07:27\t1\n2015-11-03 02:07:40\t1\n2015-11-03 02:07:45\t1\n2015-11-03 02:07:48\t1\n2015-11-03 02:07:53\t1\n2015-11-03 02:07:58\t2\n2015-11-03 02:08:03\t2\n2015-11-03 02:08:06\t1\n","comment":"","msgTable":[[{"key":"_c1","value":"2015-11-03 01:58:15"},{"key":"_c1","value":"1"}],[{"value":"2015-11-03 01:58:18"},{"value":"1"}],[{"value":"2015-11-03 01:58:23"},{"value":"1"}],[{"value":"2015-11-03 01:58:27"},{"value":"1"}],[{"value":"2015-11-03 01:58:31"},{"value":"1"}],[{"value":"2015-11-03 01:58:42"},{"value":"1"}],[{"value":"2015-11-03 01:58:43"},{"value":"1"}],[{"value":"2015-11-03 01:58:51"},{"value":"1"}],[{"value":"2015-11-03 01:58:56"},{"value":"1"}],[{"value":"2015-11-03 01:59:08"},{"value":"1"}],[{"value":"2015-11-03 01:59:11"},{"value":"1"}],[{"value":"2015-11-03 01:59:12"},{"value":"1"}],[{"value":"2015-11-03 01:59:13"},{"value":"1"}],[{"value":"2015-11-03 01:59:14"},{"value":"2"}],[{"value":"2015-11-03 01:59:15"},{"value":"1"}],[{"value":"2015-11-03 01:59:16"},{"value":"1"}],[{"value":"2015-11-03 01:59:17"},{"value":"2"}],[{"value":"2015-11-03 01:59:20"},{"value":"1"}],[{"value":"2015-11-03 01:59:22"},{"value":"1"}],[{"value":"2015-11-03 01:59:24"},{"value":"1"}],[{"value":"2015-11-03 01:59:29"},{"value":"1"}],[{"value":"2015-11-03 01:59:35"},{"value":"1"}],[{"value":"2015-11-03 01:59:36"},{"value":"2"}],[{"value":"2015-11-03 01:59:48"},{"value":"1"}],[{"value":"2015-11-03 02:00:00"},{"value":"1"}],[{"value":"2015-11-03 02:00:01"},{"value":"2"}],[{"value":"2015-11-03 02:00:02"},{"value":"1"}],[{"value":"2015-11-03 02:00:10"},{"value":"1"}],[{"value":"2015-11-03 02:00:35"},{"value":"1"}],[{"value":"2015-11-03 02:00:49"},{"value":"1"}],[{"value":"2015-11-03 02:00:54"},{"value":"1"}],[{"value":"2015-11-03 02:00:57"},{"value":"1"}],[{"value":"2015-11-03 02:01:20"},{"value":"1"}],[{"value":"2015-11-03 02:01:23"},{"value":"1"}],[{"value":"2015-11-03 02:01:26"},{"value":"1"}],[{"value":"2015-11-03 02:01:36"},{"value":"1"}],[{"value":"2015-11-03 02:01:38"},{"value":"1"}],[{"value":"2015-11-03 02:01:51"},{"value":"1"}],[{"value":"2015-11-03 02:02:04"},{"value":"1"}],[{"value":"2015-11-03 02:02:10"},{"value":"1"}],[{"value":"2015-11-03 02:02:21"},{"value":"1"}],[{"value":"2015-11-03 02:02:25"},{"value":"1"}],[{"value":"2015-11-03 02:02:41"},{"value":"1"}],[{"value":"2015-11-03 02:02:42"},{"value":"2"}],[{"value":"2015-11-03 02:02:44"},{"value":"1"}],[{"value":"2015-11-03 02:02:45"},{"value":"1"}],[{"value":"2015-11-03 02:02:46"},{"value":"1"}],[{"value":"2015-11-03 02:02:48"},{"value":"2"}],[{"value":"2015-11-03 02:02:54"},{"value":"1"}],[{"value":"2015-11-03 02:02:59"},{"value":"1"}],[{"value":"2015-11-03 02:03:13"},{"value":"1"}],[{"value":"2015-11-03 02:03:21"},{"value":"1"}],[{"value":"2015-11-03 02:03:23"},{"value":"1"}],[{"value":"2015-11-03 02:03:29"},{"value":"1"}],[{"value":"2015-11-03 02:03:39"},{"value":"1"}],[{"value":"2015-11-03 02:03:41"},{"value":"1"}],[{"value":"2015-11-03 02:03:46"},{"value":"1"}],[{"value":"2015-11-03 02:03:56"},{"value":"1"}],[{"value":"2015-11-03 02:03:59"},{"value":"1"}],[{"value":"2015-11-03 02:04:01"},{"value":"1"}],[{"value":"2015-11-03 02:04:05"},{"value":"1"}],[{"value":"2015-11-03 02:04:11"},{"value":"1"}],[{"value":"2015-11-03 02:04:12"},{"value":"1"}],[{"value":"2015-11-03 02:04:13"},{"value":"2"}],[{"value":"2015-11-03 02:04:14"},{"value":"1"}],[{"value":"2015-11-03 02:04:18"},{"value":"1"}],[{"value":"2015-11-03 02:04:20"},{"value":"2"}],[{"value":"2015-11-03 02:04:23"},{"value":"1"}],[{"value":"2015-11-03 02:04:27"},{"value":"1"}],[{"value":"2015-11-03 02:04:29"},{"value":"2"}],[{"value":"2015-11-03 02:04:37"},{"value":"1"}],[{"value":"2015-11-03 02:04:51"},{"value":"2"}],[{"value":"2015-11-03 02:04:56"},{"value":"1"}],[{"value":"2015-11-03 02:05:05"},{"value":"1"}],[{"value":"2015-11-03 02:05:11"},{"value":"1"}],[{"value":"2015-11-03 02:05:16"},{"value":"3"}],[{"value":"2015-11-03 02:05:30"},{"value":"2"}],[{"value":"2015-11-03 02:05:46"},{"value":"1"}],[{"value":"2015-11-03 02:06:07"},{"value":"1"}],[{"value":"2015-11-03 02:06:13"},{"value":"1"}],[{"value":"2015-11-03 02:06:19"},{"value":"1"}],[{"value":"2015-11-03 02:06:27"},{"value":"1"}],[{"value":"2015-11-03 02:06:37"},{"value":"1"}],[{"value":"2015-11-03 02:06:48"},{"value":"1"}],[{"value":"2015-11-03 02:06:51"},{"value":"2"}],[{"value":"2015-11-03 02:06:52"},{"value":"1"}],[{"value":"2015-11-03 02:06:53"},{"value":"1"}],[{"value":"2015-11-03 02:06:54"},{"value":"1"}],[{"value":"2015-11-03 02:07:02"},{"value":"1"}],[{"value":"2015-11-03 02:07:09"},{"value":"1"}],[{"value":"2015-11-03 02:07:13"},{"value":"1"}],[{"value":"2015-11-03 02:07:27"},{"value":"1"}],[{"value":"2015-11-03 02:07:40"},{"value":"1"}],[{"value":"2015-11-03 02:07:45"},{"value":"1"}],[{"value":"2015-11-03 02:07:48"},{"value":"1"}],[{"value":"2015-11-03 02:07:53"},{"value":"1"}],[{"value":"2015-11-03 02:07:58"},{"value":"2"}],[{"value":"2015-11-03 02:08:03"},{"value":"2"}],[{"value":"2015-11-03 02:08:06"},{"value":"1"}]],"columnNames":[{"name":"_c0","index":0,"aggr":"sum"},{"name":"_c1","index":1,"aggr":"sum"}],"rows":[["2015-11-03 01:58:15","1"],["2015-11-03 01:58:18","1"],["2015-11-03 01:58:23","1"],["2015-11-03 01:58:27","1"],["2015-11-03 01:58:31","1"],["2015-11-03 01:58:42","1"],["2015-11-03 01:58:43","1"],["2015-11-03 01:58:51","1"],["2015-11-03 01:58:56","1"],["2015-11-03 01:59:08","1"],["2015-11-03 01:59:11","1"],["2015-11-03 01:59:12","1"],["2015-11-03 01:59:13","1"],["2015-11-03 01:59:14","2"],["2015-11-03 01:59:15","1"],["2015-11-03 01:59:16","1"],["2015-11-03 01:59:17","2"],["2015-11-03 01:59:20","1"],["2015-11-03 01:59:22","1"],["2015-11-03 01:59:24","1"],["2015-11-03 01:59:29","1"],["2015-11-03 01:59:35","1"],["2015-11-03 01:59:36","2"],["2015-11-03 01:59:48","1"],["2015-11-03 02:00:00","1"],["2015-11-03 02:00:01","2"],["2015-11-03 02:00:02","1"],["2015-11-03 02:00:10","1"],["2015-11-03 02:00:35","1"],["2015-11-03 02:00:49","1"],["2015-11-03 02:00:54","1"],["2015-11-03 02:00:57","1"],["2015-11-03 02:01:20","1"],["2015-11-03 02:01:23","1"],["2015-11-03 02:01:26","1"],["2015-11-03 02:01:36","1"],["2015-11-03 02:01:38","1"],["2015-11-03 02:01:51","1"],["2015-11-03 02:02:04","1"],["2015-11-03 02:02:10","1"],["2015-11-03 02:02:21","1"],["2015-11-03 02:02:25","1"],["2015-11-03 02:02:41","1"],["2015-11-03 02:02:42","2"],["2015-11-03 02:02:44","1"],["2015-11-03 02:02:45","1"],["2015-11-03 02:02:46","1"],["2015-11-03 02:02:48","2"],["2015-11-03 02:02:54","1"],["2015-11-03 02:02:59","1"],["2015-11-03 02:03:13","1"],["2015-11-03 02:03:21","1"],["2015-11-03 02:03:23","1"],["2015-11-03 02:03:29","1"],["2015-11-03 02:03:39","1"],["2015-11-03 02:03:41","1"],["2015-11-03 02:03:46","1"],["2015-11-03 02:03:56","1"],["2015-11-03 02:03:59","1"],["2015-11-03 02:04:01","1"],["2015-11-03 02:04:05","1"],["2015-11-03 02:04:11","1"],["2015-11-03 02:04:12","1"],["2015-11-03 02:04:13","2"],["2015-11-03 02:04:14","1"],["2015-11-03 02:04:18","1"],["2015-11-03 02:04:20","2"],["2015-11-03 02:04:23","1"],["2015-11-03 02:04:27","1"],["2015-11-03 02:04:29","2"],["2015-11-03 02:04:37","1"],["2015-11-03 02:04:51","2"],["2015-11-03 02:04:56","1"],["2015-11-03 02:05:05","1"],["2015-11-03 02:05:11","1"],["2015-11-03 02:05:16","3"],["2015-11-03 02:05:30","2"],["2015-11-03 02:05:46","1"],["2015-11-03 02:06:07","1"],["2015-11-03 02:06:13","1"],["2015-11-03 02:06:19","1"],["2015-11-03 02:06:27","1"],["2015-11-03 02:06:37","1"],["2015-11-03 02:06:48","1"],["2015-11-03 02:06:51","2"],["2015-11-03 02:06:52","1"],["2015-11-03 02:06:53","1"],["2015-11-03 02:06:54","1"],["2015-11-03 02:07:02","1"],["2015-11-03 02:07:09","1"],["2015-11-03 02:07:13","1"],["2015-11-03 02:07:27","1"],["2015-11-03 02:07:40","1"],["2015-11-03 02:07:45","1"],["2015-11-03 02:07:48","1"],["2015-11-03 02:07:53","1"],["2015-11-03 02:07:58","2"],["2015-11-03 02:08:03","2"],["2015-11-03 02:08:06","1"]]},"dateCreated":"2015-10-29T02:19:45+0000","dateStarted":"2015-11-03T02:08:16+0000","dateFinished":"2015-11-03T02:09:04+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:513"},{"text":"/* declaring a function in Scala */\n\ndef sentiment(s:String) : String = {\n val positive = Array(\"like\", \"love\", \"good\", \"great\", \"happy\", \"cool\", \"the\", \"one\", \"that\")\n val negative = Array(\"hate\", \"bad\", \"stupid\", \"is\")\n\n var st = 0;\n\n val words = s.split(\" \") \n positive.foreach(p =>\n words.foreach(w =>\n if(p==w) st = st+1\n )\n )\n\n negative.foreach(p=>\n words.foreach(w=>\n if(p==w) st = st-1\n )\n )\n if(st>0)\n \"positivie\"\n else if(st<0)\n \"negative\"\n else\n \"neutral\"\n}\n\nsqlc.udf.register(\"sentiment\", sentiment _)","dateUpdated":"2015-11-03T01:54:18+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","tableHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446171594228_-847079314","id":"20151030-021954_1559711258","result":{"code":"SUCCESS","type":"TEXT","msg":"-------------------------------------------\nTime: 1446515658000 ms\n-------------------------------------------\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:44 UTC 2015, id=661359574780391424, text='White House hits #Turkey over vote 'intimidation'\n#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP\nhttps://t.co/DhAK3bXnX3', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2cc9f3f7, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/DhAK3bXnX3', expandedURL='http://www.dailystar.com.lb/News/Middle-East/2015/Nov-02/321330-white-house-hits-turkey-over-vote-intimidation.ashx', displayURL='dailystar.com.lb/News/Middle-Ea…'}], hashtagEntities=[HashtagEntityJSONImpl{text='Turkey'}, HashtagEntityJSONImpl{text='YPJ'}, HashtagEntityJSONImpl{text='YPG'}, HashtagEntityJSONImpl{text='Kobane'}, HashtagEntityJSONImpl{text='TwitterKurds'}, HashtagEntityJSONImpl{text='turkeyelections'}, HashtagEntityJSONImpl{text='Turkeyvotes'}, HashtagEntityJSONImpl{text='HDP'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2421003619, name='Hanar Marouf', screenName='Hanar_Marouf', location='Kurdistan', description='Human rights activist,found first English magazine for youth Kurdistan,AUIS alumni MA/politics&Int.Relations. Human Rights Watch DC. Opinions are my own', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', url='null', isProtected=false, followersCount=7974, status=null, profileBackgroundColor='FF6699', profileTextColor='362720', profileLinkColor='B40B43', profileSidebarFillColor='E5507E', profileSidebarBorderColor='CC3366', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=400, createdAt=Mon Mar 31 19:49:35 UTC 2014, favouritesCount=8607, utcOffset=10800, timeZone='Baghdad', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=9883, isGeoEnabled=false, isVerified=false, translator=false, listedCount=96, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:49 UTC 2015, id=661359595324112896, text='5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech', source='Twitter for iPhone', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@7eaff419, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/iwoH7G5RdP', expandedURL='http://j.mp/1jlzNdc', displayURL='j.mp/1jlzNdc'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='tech'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=509154369, name='Karen Elliott', screenName='karenbelliott', location='null', description='Marketer, designer, music lover. Fan of innovation, smart design, funny people, unique perspectives and goats.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', url='null', isProtected=false, followersCount=743, status=null, profileBackgroundColor='ACDED6', profileTextColor='333333', profileLinkColor='DB7923', profileSidebarFillColor='FFFFFF', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=907, createdAt=Wed Feb 29 19:47:40 UTC 2012, favouritesCount=645, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=778, isGeoEnabled=true, isVerified=false, translator=false, listedCount=97, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:01 UTC 2015, id=661359646930812928, text='RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…', source='GaggleAMP', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@51c2d649, retweetedStatus=StatusJSONImpl{createdAt=Wed Oct 28 15:23:50 UTC 2015, id=659390121041641472, text='That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.co/SUGd0BLUYa', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=33, isPossiblySensitive=false, contributorsIDs=[J@4e827c8e, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=105890977, name='Qubit', screenName='qubit', location='London, UK', description='We believe marketers should be constrained only by their imaginations, not the limitations of their technology. We’re here to help them beat digital roadblocks', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', url='http://www.qubit.com', isProtected=false, followersCount=1835, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='47B28D', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=465, createdAt=Sun Jan 17 21:01:53 UTC 2010, favouritesCount=76, utcOffset=3600, timeZone='Amsterdam', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundTiled=true, lang='en', statusesCount=1505, isGeoEnabled=true, isVerified=false, translator=false, listedCount=106, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Qubit', screenName='qubit', id=105890977}, UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2385488701, name='Kim Pritchard', screenName='kpritch01', location='Philadelphia', description='Sales Engineer @Qubit\nJournalism major turned tech nerd. Foodie. Traveler. Animal Lover.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', url='http://www.extole.com', isProtected=false, followersCount=53, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='CF0053', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=265, createdAt=Wed Mar 12 16:15:11 UTC 2014, favouritesCount=1, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=60, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:17 UTC 2015, id=661359713767047168, text='Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG', source='Twitter for BlackBerry', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@58bf76e6, retweetedStatus=null, userMentionEntities=[], urlEntities=[], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='BigIdeasBeterCities'}], mediaEntities=[MediaEntityJSONImpl{id=661359713548922880, url=https://t.co/PCBJGbHtZG, mediaURL=http://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, expandedURL=http://twitter.com/MacDATAInst/status/661359713767047168/photo/1, displayURL='pic.twitter.com/PCBJGbHtZG', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=604, resize=100}, 2=Size{width=600, height=1066, resize=100}, 3=Size{width=1024, height=1820, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4055252105, name='MacDATA Institute', screenName='MacDATAInst', location='Hamilton, Ontario', description='The official Twitter Account for the MacDATA Institute at McMaster University.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', url='null', isProtected=false, followersCount=15, status=null, profileBackgroundColor='EBEBEB', profileTextColor='333333', profileLinkColor='990000', profileSidebarFillColor='F3F3F3', profileSidebarBorderColor='DFDFDF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=34, createdAt=Tue Oct 27 18:44:03 UTC 2015, favouritesCount=3, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=37, isGeoEnabled=false, isVerified=false, translator=false, listedCount=2, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:36 UTC 2015, id=661359792250753024, text='RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH', source='Hootsuite', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@217238f, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/kfP5fABIeH', expandedURL='http://ow.ly/3ynvUz', displayURL='ow.ly/3ynvUz'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1976317832, name='Dr. Rajeev Bukralia', screenName='rbukralia', location='Wisconsin, USA', description='Data Scientist, Professor, Consultant...Former CEO, #CIO, Dean, Programmer...Tweets on #DataScience #AI #BigData #Leadership #HigherEd #Mindfulness #Startups...', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', url='null', isProtected=false, followersCount=954, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='3B94D9', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=670, createdAt=Sun Oct 20 20:25:50 UTC 2013, favouritesCount=9, utcOffset=-21600, timeZone='Central Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=2431, isGeoEnabled=false, isVerified=false, translator=false, listedCount=275, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:39 UTC 2015, id=661359804229677056, text='RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='BigDataTweetBot', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@3d1f825b, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:30:34 UTC 2015, id=661354748528979968, text='CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='Twitter tweets 111', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=1, isPossiblySensitive=false, contributorsIDs=[J@5fa743b6, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3170121190, name='FinBuzz', screenName='PortfolioBuzz', location='London', description='Financial #bigdata crowd-sourced, crowd-curated real-time news from 200+ news publications and from Twitter for FREE', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', url='http://www.cityfalcon.com', isProtected=false, followersCount=661, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=665, createdAt=Wed Apr 15 13:32:42 UTC 2015, favouritesCount=189, utcOffset=0, timeZone='Dublin', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en-gb', statusesCount=24916, isGeoEnabled=false, isVerified=false, translator=false, listedCount=123, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='FinBuzz', screenName='PortfolioBuzz', id=3170121190}], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3356052532, name='Big Data Tweet', screenName='BigDataTweetBot', location='null', description='I retweet #bigdata follow to get a feed of all that is tweeted about this subject. createdby @magicrat_larry', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', url='null', isProtected=false, followersCount=4536, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=256, createdAt=Fri Jul 03 01:30:20 UTC 2015, favouritesCount=0, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=353262, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4443, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:43 UTC 2015, id=661359823104163840, text='RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@5e4e92c9, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:19:03 UTC 2015, id=661351850340442112, text='How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.co/NIMJHDcktM', source='Tweet Jukebox', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@7886fa7d, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=44171091, name='Ted Coiné', screenName='tedcoine', location='Naples, Florida, USA', description='CEO of The Extraordinary #influencer Network. Keynote Speaker. Latest book: A World Gone Social. #socialCEO #FutureofWork #PersonalBranding *EN = sponsored', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', url='http://openfor.business/keynote/tedcoine/', isProtected=false, followersCount=461079, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='3B94D9', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='BDDCAD', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=350897, createdAt=Tue Jun 02 18:12:19 UTC 2009, favouritesCount=1125, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundTiled=true, lang='en', statusesCount=102830, isGeoEnabled=false, isVerified=false, translator=false, listedCount=8882, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Ted Coiné', screenName='tedcoine', id=44171091}, UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4005210261, name='Richard Anthony', screenName='indi_solutions', location='Georgia, USA', description='CEO of Indi Solutions', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', url='null', isProtected=false, followersCount=57, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='FFCC4D', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=143, createdAt=Tue Oct 20 22:48:00 UTC 2015, favouritesCount=7, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundTiled=true, lang='en', statusesCount=52, isGeoEnabled=false, isVerified=false, translator=false, listedCount=0, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359841559117825, text='RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@65a7625c, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 01:51:00 UTC 2015, id=660997504746586112, text='Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #DeloitteReview', source='Sprinklr', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=16, isPossiblySensitive=false, contributorsIDs=[J@502aba27, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=588631454, name='Deloitte Univ Press', screenName='DU_Press', location='United States', description='Where ideas prosper. Latest news, #research & thought leadership from Deloitte University Press. For questions: dupress@deloitte.com', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', url='http://www.dupress.com', isProtected=false, followersCount=18031, status=null, profileBackgroundColor='F5F9FA', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=1343, createdAt=Wed May 23 22:37:20 UTC 2012, favouritesCount=9351, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=8172, isGeoEnabled=false, isVerified=true, translator=false, listedCount=548, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Deloitte Univ Press', screenName='DU_Press', id=588631454}], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24536, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359843538792448, text='RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@25237f8f, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 16:30:09 UTC 2015, id=661218751560335360, text='#BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='TweetDeck', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@3d8b9855, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=24028758, name='Microsoft NewEngland', screenName='MSNewEngland', location='Cambridge, MA', description='Microsoft New England promotes research, software #innovation & community in the heart of #kendallsquare.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', url='http://microsoftnewengland.com/', isProtected=false, followersCount=9927, status=null, profileBackgroundColor='9D9A91', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='FF7F00', profileSidebarBorderColor='FF7F00', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2657, createdAt=Thu Mar 12 20:28:19 UTC 2009, favouritesCount=5776, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundTiled=false, lang='en', statusesCount=16824, isGeoEnabled=true, isVerified=false, translator=false, listedCount=717, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Microsoft NewEngland', screenName='MSNewEngland', id=24028758}, UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24538, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:49 UTC 2015, id=661359844474114048, text='RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@17be1404, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 18:40:00 UTC 2015, id=661251425989693440, text='#GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https://t.co/HXRqCwSaax', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@40141ec9, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=16890685, name='GaTech Computing ', screenName='gtcomputing', location='Atlanta, GA', description='An international leader in real-world computing breakthroughs that drive social and scientific progress. Use #gtcomputing to share with us.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', url='http://www.cc.gatech.edu', isProtected=false, followersCount=6927, status=null, profileBackgroundColor='131516', profileTextColor='333333', profileLinkColor='E0B23E', profileSidebarFillColor='C0DFEC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=3133, createdAt=Tue Oct 21 18:19:35 UTC 2008, favouritesCount=481, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=3298, isGeoEnabled=true, isVerified=false, translator=false, listedCount=224, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='GaTech Computing ', screenName='gtcomputing', id=16890685}, UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24539, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\n...\n\n-------------------------------------------\nTime: 1446515660000 ms\n-------------------------------------------\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:44 UTC 2015, id=661359574780391424, text='White House hits #Turkey over vote 'intimidation'\n#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP\nhttps://t.co/DhAK3bXnX3', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@4aa554aa, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/DhAK3bXnX3', expandedURL='http://www.dailystar.com.lb/News/Middle-East/2015/Nov-02/321330-white-house-hits-turkey-over-vote-intimidation.ashx', displayURL='dailystar.com.lb/News/Middle-Ea…'}], hashtagEntities=[HashtagEntityJSONImpl{text='Turkey'}, HashtagEntityJSONImpl{text='YPJ'}, HashtagEntityJSONImpl{text='YPG'}, HashtagEntityJSONImpl{text='Kobane'}, HashtagEntityJSONImpl{text='TwitterKurds'}, HashtagEntityJSONImpl{text='turkeyelections'}, HashtagEntityJSONImpl{text='Turkeyvotes'}, HashtagEntityJSONImpl{text='HDP'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2421003619, name='Hanar Marouf', screenName='Hanar_Marouf', location='Kurdistan', description='Human rights activist,found first English magazine for youth Kurdistan,AUIS alumni MA/politics&Int.Relations. Human Rights Watch DC. Opinions are my own', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', url='null', isProtected=false, followersCount=7974, status=null, profileBackgroundColor='FF6699', profileTextColor='362720', profileLinkColor='B40B43', profileSidebarFillColor='E5507E', profileSidebarBorderColor='CC3366', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=400, createdAt=Mon Mar 31 19:49:35 UTC 2014, favouritesCount=8607, utcOffset=10800, timeZone='Baghdad', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=9883, isGeoEnabled=false, isVerified=false, translator=false, listedCount=96, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:49 UTC 2015, id=661359595324112896, text='5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech', source='Twitter for iPhone', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2c598b2f, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/iwoH7G5RdP', expandedURL='http://j.mp/1jlzNdc', displayURL='j.mp/1jlzNdc'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='tech'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=509154369, name='Karen Elliott', screenName='karenbelliott', location='null', description='Marketer, designer, music lover. Fan of innovation, smart design, funny people, unique perspectives and goats.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', url='null', isProtected=false, followersCount=743, status=null, profileBackgroundColor='ACDED6', profileTextColor='333333', profileLinkColor='DB7923', profileSidebarFillColor='FFFFFF', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=907, createdAt=Wed Feb 29 19:47:40 UTC 2012, favouritesCount=645, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=778, isGeoEnabled=true, isVerified=false, translator=false, listedCount=97, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:01 UTC 2015, id=661359646930812928, text='RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…', source='GaggleAMP', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2ac0d168, retweetedStatus=StatusJSONImpl{createdAt=Wed Oct 28 15:23:50 UTC 2015, id=659390121041641472, text='That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.co/SUGd0BLUYa', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=33, isPossiblySensitive=false, contributorsIDs=[J@58f418c5, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=105890977, name='Qubit', screenName='qubit', location='London, UK', description='We believe marketers should be constrained only by their imaginations, not the limitations of their technology. We’re here to help them beat digital roadblocks', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', url='http://www.qubit.com', isProtected=false, followersCount=1835, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='47B28D', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=465, createdAt=Sun Jan 17 21:01:53 UTC 2010, favouritesCount=76, utcOffset=3600, timeZone='Amsterdam', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundTiled=true, lang='en', statusesCount=1505, isGeoEnabled=true, isVerified=false, translator=false, listedCount=106, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Qubit', screenName='qubit', id=105890977}, UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2385488701, name='Kim Pritchard', screenName='kpritch01', location='Philadelphia', description='Sales Engineer @Qubit\nJournalism major turned tech nerd. Foodie. Traveler. Animal Lover.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', url='http://www.extole.com', isProtected=false, followersCount=53, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='CF0053', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=265, createdAt=Wed Mar 12 16:15:11 UTC 2014, favouritesCount=1, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=60, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:17 UTC 2015, id=661359713767047168, text='Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG', source='Twitter for BlackBerry', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@1bc9579d, retweetedStatus=null, userMentionEntities=[], urlEntities=[], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='BigIdeasBeterCities'}], mediaEntities=[MediaEntityJSONImpl{id=661359713548922880, url=https://t.co/PCBJGbHtZG, mediaURL=http://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, expandedURL=http://twitter.com/MacDATAInst/status/661359713767047168/photo/1, displayURL='pic.twitter.com/PCBJGbHtZG', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=604, resize=100}, 2=Size{width=600, height=1066, resize=100}, 3=Size{width=1024, height=1820, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4055252105, name='MacDATA Institute', screenName='MacDATAInst', location='Hamilton, Ontario', description='The official Twitter Account for the MacDATA Institute at McMaster University.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', url='null', isProtected=false, followersCount=15, status=null, profileBackgroundColor='EBEBEB', profileTextColor='333333', profileLinkColor='990000', profileSidebarFillColor='F3F3F3', profileSidebarBorderColor='DFDFDF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=34, createdAt=Tue Oct 27 18:44:03 UTC 2015, favouritesCount=3, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=37, isGeoEnabled=false, isVerified=false, translator=false, listedCount=2, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:36 UTC 2015, id=661359792250753024, text='RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH', source='Hootsuite', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@3f9712ab, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/kfP5fABIeH', expandedURL='http://ow.ly/3ynvUz', displayURL='ow.ly/3ynvUz'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1976317832, name='Dr. Rajeev Bukralia', screenName='rbukralia', location='Wisconsin, USA', description='Data Scientist, Professor, Consultant...Former CEO, #CIO, Dean, Programmer...Tweets on #DataScience #AI #BigData #Leadership #HigherEd #Mindfulness #Startups...', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', url='null', isProtected=false, followersCount=954, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='3B94D9', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=670, createdAt=Sun Oct 20 20:25:50 UTC 2013, favouritesCount=9, utcOffset=-21600, timeZone='Central Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=2431, isGeoEnabled=false, isVerified=false, translator=false, listedCount=275, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:39 UTC 2015, id=661359804229677056, text='RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='BigDataTweetBot', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@574ab92a, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:30:34 UTC 2015, id=661354748528979968, text='CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='Twitter tweets 111', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=1, isPossiblySensitive=false, contributorsIDs=[J@6ac2a12b, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3170121190, name='FinBuzz', screenName='PortfolioBuzz', location='London', description='Financial #bigdata crowd-sourced, crowd-curated real-time news from 200+ news publications and from Twitter for FREE', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', url='http://www.cityfalcon.com', isProtected=false, followersCount=661, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=665, createdAt=Wed Apr 15 13:32:42 UTC 2015, favouritesCount=189, utcOffset=0, timeZone='Dublin', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en-gb', statusesCount=24916, isGeoEnabled=false, isVerified=false, translator=false, listedCount=123, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='FinBuzz', screenName='PortfolioBuzz', id=3170121190}], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3356052532, name='Big Data Tweet', screenName='BigDataTweetBot', location='null', description='I retweet #bigdata follow to get a feed of all that is tweeted about this subject. createdby @magicrat_larry', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', url='null', isProtected=false, followersCount=4536, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=256, createdAt=Fri Jul 03 01:30:20 UTC 2015, favouritesCount=0, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=353262, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4443, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:43 UTC 2015, id=661359823104163840, text='RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@fe344cf, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:19:03 UTC 2015, id=661351850340442112, text='How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.co/NIMJHDcktM', source='Tweet Jukebox', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@11ba7a2f, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=44171091, name='Ted Coiné', screenName='tedcoine', location='Naples, Florida, USA', description='CEO of The Extraordinary #influencer Network. Keynote Speaker. Latest book: A World Gone Social. #socialCEO #FutureofWork #PersonalBranding *EN = sponsored', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', url='http://openfor.business/keynote/tedcoine/', isProtected=false, followersCount=461079, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='3B94D9', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='BDDCAD', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=350897, createdAt=Tue Jun 02 18:12:19 UTC 2009, favouritesCount=1125, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundTiled=true, lang='en', statusesCount=102830, isGeoEnabled=false, isVerified=false, translator=false, listedCount=8882, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Ted Coiné', screenName='tedcoine', id=44171091}, UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4005210261, name='Richard Anthony', screenName='indi_solutions', location='Georgia, USA', description='CEO of Indi Solutions', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', url='null', isProtected=false, followersCount=57, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='FFCC4D', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=143, createdAt=Tue Oct 20 22:48:00 UTC 2015, favouritesCount=7, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundTiled=true, lang='en', statusesCount=52, isGeoEnabled=false, isVerified=false, translator=false, listedCount=0, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359841559117825, text='RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@69abacc0, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 01:51:00 UTC 2015, id=660997504746586112, text='Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #DeloitteReview', source='Sprinklr', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=16, isPossiblySensitive=false, contributorsIDs=[J@5daa773, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=588631454, name='Deloitte Univ Press', screenName='DU_Press', location='United States', description='Where ideas prosper. Latest news, #research & thought leadership from Deloitte University Press. For questions: dupress@deloitte.com', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', url='http://www.dupress.com', isProtected=false, followersCount=18031, status=null, profileBackgroundColor='F5F9FA', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=1343, createdAt=Wed May 23 22:37:20 UTC 2012, favouritesCount=9351, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=8172, isGeoEnabled=false, isVerified=true, translator=false, listedCount=548, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Deloitte Univ Press', screenName='DU_Press', id=588631454}], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24536, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359843538792448, text='RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@56277205, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 16:30:09 UTC 2015, id=661218751560335360, text='#BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='TweetDeck', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@37aed273, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=24028758, name='Microsoft NewEngland', screenName='MSNewEngland', location='Cambridge, MA', description='Microsoft New England promotes research, software #innovation & community in the heart of #kendallsquare.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', url='http://microsoftnewengland.com/', isProtected=false, followersCount=9927, status=null, profileBackgroundColor='9D9A91', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='FF7F00', profileSidebarBorderColor='FF7F00', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2657, createdAt=Thu Mar 12 20:28:19 UTC 2009, favouritesCount=5776, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundTiled=false, lang='en', statusesCount=16824, isGeoEnabled=true, isVerified=false, translator=false, listedCount=717, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Microsoft NewEngland', screenName='MSNewEngland', id=24028758}, UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24538, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:49 UTC 2015, id=661359844474114048, text='RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@367a9894, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 18:40:00 UTC 2015, id=661251425989693440, text='#GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https://t.co/HXRqCwSaax', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@2ab7387d, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=16890685, name='GaTech Computing ', screenName='gtcomputing', location='Atlanta, GA', description='An international leader in real-world computing breakthroughs that drive social and scientific progress. Use #gtcomputing to share with us.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', url='http://www.cc.gatech.edu', isProtected=false, followersCount=6927, status=null, profileBackgroundColor='131516', profileTextColor='333333', profileLinkColor='E0B23E', profileSidebarFillColor='C0DFEC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=3133, createdAt=Tue Oct 21 18:19:35 UTC 2008, favouritesCount=481, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=3298, isGeoEnabled=true, isVerified=false, translator=false, listedCount=224, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='GaTech Computing ', screenName='gtcomputing', id=16890685}, UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24539, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\n...\n\n-------------------------------------------\nTime: 1446515662000 ms\n-------------------------------------------\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:44 UTC 2015, id=661359574780391424, text='White House hits #Turkey over vote 'intimidation'\n#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP\nhttps://t.co/DhAK3bXnX3', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@5efebdb5, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/DhAK3bXnX3', expandedURL='http://www.dailystar.com.lb/News/Middle-East/2015/Nov-02/321330-white-house-hits-turkey-over-vote-intimidation.ashx', displayURL='dailystar.com.lb/News/Middle-Ea…'}], hashtagEntities=[HashtagEntityJSONImpl{text='Turkey'}, HashtagEntityJSONImpl{text='YPJ'}, HashtagEntityJSONImpl{text='YPG'}, HashtagEntityJSONImpl{text='Kobane'}, HashtagEntityJSONImpl{text='TwitterKurds'}, HashtagEntityJSONImpl{text='turkeyelections'}, HashtagEntityJSONImpl{text='Turkeyvotes'}, HashtagEntityJSONImpl{text='HDP'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2421003619, name='Hanar Marouf', screenName='Hanar_Marouf', location='Kurdistan', description='Human rights activist,found first English magazine for youth Kurdistan,AUIS alumni MA/politics&Int.Relations. Human Rights Watch DC. Opinions are my own', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', url='null', isProtected=false, followersCount=7974, status=null, profileBackgroundColor='FF6699', profileTextColor='362720', profileLinkColor='B40B43', profileSidebarFillColor='E5507E', profileSidebarBorderColor='CC3366', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=400, createdAt=Mon Mar 31 19:49:35 UTC 2014, favouritesCount=8607, utcOffset=10800, timeZone='Baghdad', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=9883, isGeoEnabled=false, isVerified=false, translator=false, listedCount=96, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:49 UTC 2015, id=661359595324112896, text='5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech', source='Twitter for iPhone', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2658e6cc, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/iwoH7G5RdP', expandedURL='http://j.mp/1jlzNdc', displayURL='j.mp/1jlzNdc'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='tech'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=509154369, name='Karen Elliott', screenName='karenbelliott', location='null', description='Marketer, designer, music lover. Fan of innovation, smart design, funny people, unique perspectives and goats.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', url='null', isProtected=false, followersCount=743, status=null, profileBackgroundColor='ACDED6', profileTextColor='333333', profileLinkColor='DB7923', profileSidebarFillColor='FFFFFF', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=907, createdAt=Wed Feb 29 19:47:40 UTC 2012, favouritesCount=645, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=778, isGeoEnabled=true, isVerified=false, translator=false, listedCount=97, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:01 UTC 2015, id=661359646930812928, text='RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…', source='GaggleAMP', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@16986ebf, retweetedStatus=StatusJSONImpl{createdAt=Wed Oct 28 15:23:50 UTC 2015, id=659390121041641472, text='That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.co/SUGd0BLUYa', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=33, isPossiblySensitive=false, contributorsIDs=[J@718ec92f, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=105890977, name='Qubit', screenName='qubit', location='London, UK', description='We believe marketers should be constrained only by their imaginations, not the limitations of their technology. We’re here to help them beat digital roadblocks', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', url='http://www.qubit.com', isProtected=false, followersCount=1835, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='47B28D', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=465, createdAt=Sun Jan 17 21:01:53 UTC 2010, favouritesCount=76, utcOffset=3600, timeZone='Amsterdam', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundTiled=true, lang='en', statusesCount=1505, isGeoEnabled=true, isVerified=false, translator=false, listedCount=106, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Qubit', screenName='qubit', id=105890977}, UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2385488701, name='Kim Pritchard', screenName='kpritch01', location='Philadelphia', description='Sales Engineer @Qubit\nJournalism major turned tech nerd. Foodie. Traveler. Animal Lover.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', url='http://www.extole.com', isProtected=false, followersCount=53, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='CF0053', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=265, createdAt=Wed Mar 12 16:15:11 UTC 2014, favouritesCount=1, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=60, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:17 UTC 2015, id=661359713767047168, text='Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG', source='Twitter for BlackBerry', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@553a66e7, retweetedStatus=null, userMentionEntities=[], urlEntities=[], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='BigIdeasBeterCities'}], mediaEntities=[MediaEntityJSONImpl{id=661359713548922880, url=https://t.co/PCBJGbHtZG, mediaURL=http://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, expandedURL=http://twitter.com/MacDATAInst/status/661359713767047168/photo/1, displayURL='pic.twitter.com/PCBJGbHtZG', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=604, resize=100}, 2=Size{width=600, height=1066, resize=100}, 3=Size{width=1024, height=1820, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4055252105, name='MacDATA Institute', screenName='MacDATAInst', location='Hamilton, Ontario', description='The official Twitter Account for the MacDATA Institute at McMaster University.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', url='null', isProtected=false, followersCount=15, status=null, profileBackgroundColor='EBEBEB', profileTextColor='333333', profileLinkColor='990000', profileSidebarFillColor='F3F3F3', profileSidebarBorderColor='DFDFDF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=34, createdAt=Tue Oct 27 18:44:03 UTC 2015, favouritesCount=3, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=37, isGeoEnabled=false, isVerified=false, translator=false, listedCount=2, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:36 UTC 2015, id=661359792250753024, text='RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH', source='Hootsuite', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@6d39f367, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/kfP5fABIeH', expandedURL='http://ow.ly/3ynvUz', displayURL='ow.ly/3ynvUz'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1976317832, name='Dr. Rajeev Bukralia', screenName='rbukralia', location='Wisconsin, USA', description='Data Scientist, Professor, Consultant...Former CEO, #CIO, Dean, Programmer...Tweets on #DataScience #AI #BigData #Leadership #HigherEd #Mindfulness #Startups...', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', url='null', isProtected=false, followersCount=954, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='3B94D9', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=670, createdAt=Sun Oct 20 20:25:50 UTC 2013, favouritesCount=9, utcOffset=-21600, timeZone='Central Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=2431, isGeoEnabled=false, isVerified=false, translator=false, listedCount=275, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:39 UTC 2015, id=661359804229677056, text='RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='BigDataTweetBot', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@779b2736, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:30:34 UTC 2015, id=661354748528979968, text='CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='Twitter tweets 111', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=1, isPossiblySensitive=false, contributorsIDs=[J@6b2b8792, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3170121190, name='FinBuzz', screenName='PortfolioBuzz', location='London', description='Financial #bigdata crowd-sourced, crowd-curated real-time news from 200+ news publications and from Twitter for FREE', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', url='http://www.cityfalcon.com', isProtected=false, followersCount=661, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=665, createdAt=Wed Apr 15 13:32:42 UTC 2015, favouritesCount=189, utcOffset=0, timeZone='Dublin', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en-gb', statusesCount=24916, isGeoEnabled=false, isVerified=false, translator=false, listedCount=123, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='FinBuzz', screenName='PortfolioBuzz', id=3170121190}], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3356052532, name='Big Data Tweet', screenName='BigDataTweetBot', location='null', description='I retweet #bigdata follow to get a feed of all that is tweeted about this subject. createdby @magicrat_larry', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', url='null', isProtected=false, followersCount=4536, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=256, createdAt=Fri Jul 03 01:30:20 UTC 2015, favouritesCount=0, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=353262, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4443, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:43 UTC 2015, id=661359823104163840, text='RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@76d1b935, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:19:03 UTC 2015, id=661351850340442112, text='How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.co/NIMJHDcktM', source='Tweet Jukebox', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@42d68384, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=44171091, name='Ted Coiné', screenName='tedcoine', location='Naples, Florida, USA', description='CEO of The Extraordinary #influencer Network. Keynote Speaker. Latest book: A World Gone Social. #socialCEO #FutureofWork #PersonalBranding *EN = sponsored', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', url='http://openfor.business/keynote/tedcoine/', isProtected=false, followersCount=461079, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='3B94D9', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='BDDCAD', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=350897, createdAt=Tue Jun 02 18:12:19 UTC 2009, favouritesCount=1125, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundTiled=true, lang='en', statusesCount=102830, isGeoEnabled=false, isVerified=false, translator=false, listedCount=8882, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Ted Coiné', screenName='tedcoine', id=44171091}, UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4005210261, name='Richard Anthony', screenName='indi_solutions', location='Georgia, USA', description='CEO of Indi Solutions', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', url='null', isProtected=false, followersCount=57, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='FFCC4D', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=143, createdAt=Tue Oct 20 22:48:00 UTC 2015, favouritesCount=7, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundTiled=true, lang='en', statusesCount=52, isGeoEnabled=false, isVerified=false, translator=false, listedCount=0, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359841559117825, text='RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@11547164, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 01:51:00 UTC 2015, id=660997504746586112, text='Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #DeloitteReview', source='Sprinklr', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=16, isPossiblySensitive=false, contributorsIDs=[J@3ee0651f, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=588631454, name='Deloitte Univ Press', screenName='DU_Press', location='United States', description='Where ideas prosper. Latest news, #research & thought leadership from Deloitte University Press. For questions: dupress@deloitte.com', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', url='http://www.dupress.com', isProtected=false, followersCount=18031, status=null, profileBackgroundColor='F5F9FA', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=1343, createdAt=Wed May 23 22:37:20 UTC 2012, favouritesCount=9351, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=8172, isGeoEnabled=false, isVerified=true, translator=false, listedCount=548, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Deloitte Univ Press', screenName='DU_Press', id=588631454}], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24536, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359843538792448, text='RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@85780f0, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 16:30:09 UTC 2015, id=661218751560335360, text='#BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='TweetDeck', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@28d210d7, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=24028758, name='Microsoft NewEngland', screenName='MSNewEngland', location='Cambridge, MA', description='Microsoft New England promotes research, software #innovation & community in the heart of #kendallsquare.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', url='http://microsoftnewengland.com/', isProtected=false, followersCount=9927, status=null, profileBackgroundColor='9D9A91', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='FF7F00', profileSidebarBorderColor='FF7F00', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2657, createdAt=Thu Mar 12 20:28:19 UTC 2009, favouritesCount=5776, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundTiled=false, lang='en', statusesCount=16824, isGeoEnabled=true, isVerified=false, translator=false, listedCount=717, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Microsoft NewEngland', screenName='MSNewEngland', id=24028758}, UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24538, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:49 UTC 2015, id=661359844474114048, text='RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@774fa830, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 18:40:00 UTC 2015, id=661251425989693440, text='#GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https://t.co/HXRqCwSaax', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@eab2482, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=16890685, name='GaTech Computing ', screenName='gtcomputing', location='Atlanta, GA', description='An international leader in real-world computing breakthroughs that drive social and scientific progress. Use #gtcomputing to share with us.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', url='http://www.cc.gatech.edu', isProtected=false, followersCount=6927, status=null, profileBackgroundColor='131516', profileTextColor='333333', profileLinkColor='E0B23E', profileSidebarFillColor='C0DFEC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=3133, createdAt=Tue Oct 21 18:19:35 UTC 2008, favouritesCount=481, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=3298, isGeoEnabled=true, isVerified=false, translator=false, listedCount=224, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='GaTech Computing ', screenName='gtcomputing', id=16890685}, UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24539, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\n...\n\nsentiment: (s: String)String\n-------------------------------------------\nTime: 1446515664000 ms\n-------------------------------------------\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:44 UTC 2015, id=661359574780391424, text='White House hits #Turkey over vote 'intimidation'\n#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP\nhttps://t.co/DhAK3bXnX3', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@df703d2, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/DhAK3bXnX3', expandedURL='http://www.dailystar.com.lb/News/Middle-East/2015/Nov-02/321330-white-house-hits-turkey-over-vote-intimidation.ashx', displayURL='dailystar.com.lb/News/Middle-Ea…'}], hashtagEntities=[HashtagEntityJSONImpl{text='Turkey'}, HashtagEntityJSONImpl{text='YPJ'}, HashtagEntityJSONImpl{text='YPG'}, HashtagEntityJSONImpl{text='Kobane'}, HashtagEntityJSONImpl{text='TwitterKurds'}, HashtagEntityJSONImpl{text='turkeyelections'}, HashtagEntityJSONImpl{text='Turkeyvotes'}, HashtagEntityJSONImpl{text='HDP'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2421003619, name='Hanar Marouf', screenName='Hanar_Marouf', location='Kurdistan', description='Human rights activist,found first English magazine for youth Kurdistan,AUIS alumni MA/politics&Int.Relations. Human Rights Watch DC. Opinions are my own', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', url='null', isProtected=false, followersCount=7974, status=null, profileBackgroundColor='FF6699', profileTextColor='362720', profileLinkColor='B40B43', profileSidebarFillColor='E5507E', profileSidebarBorderColor='CC3366', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=400, createdAt=Mon Mar 31 19:49:35 UTC 2014, favouritesCount=8607, utcOffset=10800, timeZone='Baghdad', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=9883, isGeoEnabled=false, isVerified=false, translator=false, listedCount=96, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:49 UTC 2015, id=661359595324112896, text='5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech', source='Twitter for iPhone', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@541bd727, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/iwoH7G5RdP', expandedURL='http://j.mp/1jlzNdc', displayURL='j.mp/1jlzNdc'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='tech'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=509154369, name='Karen Elliott', screenName='karenbelliott', location='null', description='Marketer, designer, music lover. Fan of innovation, smart design, funny people, unique perspectives and goats.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', url='null', isProtected=false, followersCount=743, status=null, profileBackgroundColor='ACDED6', profileTextColor='333333', profileLinkColor='DB7923', profileSidebarFillColor='FFFFFF', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=907, createdAt=Wed Feb 29 19:47:40 UTC 2012, favouritesCount=645, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=778, isGeoEnabled=true, isVerified=false, translator=false, listedCount=97, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:01 UTC 2015, id=661359646930812928, text='RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…', source='GaggleAMP', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@6fca6c94, retweetedStatus=StatusJSONImpl{createdAt=Wed Oct 28 15:23:50 UTC 2015, id=659390121041641472, text='That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.co/SUGd0BLUYa', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=33, isPossiblySensitive=false, contributorsIDs=[J@529ea1e2, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=105890977, name='Qubit', screenName='qubit', location='London, UK', description='We believe marketers should be constrained only by their imaginations, not the limitations of their technology. We’re here to help them beat digital roadblocks', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', url='http://www.qubit.com', isProtected=false, followersCount=1835, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='47B28D', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=465, createdAt=Sun Jan 17 21:01:53 UTC 2010, favouritesCount=76, utcOffset=3600, timeZone='Amsterdam', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundTiled=true, lang='en', statusesCount=1505, isGeoEnabled=true, isVerified=false, translator=false, listedCount=106, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Qubit', screenName='qubit', id=105890977}, UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2385488701, name='Kim Pritchard', screenName='kpritch01', location='Philadelphia', description='Sales Engineer @Qubit\nJournalism major turned tech nerd. Foodie. Traveler. Animal Lover.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', url='http://www.extole.com', isProtected=false, followersCount=53, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='CF0053', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=265, createdAt=Wed Mar 12 16:15:11 UTC 2014, favouritesCount=1, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=60, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:17 UTC 2015, id=661359713767047168, text='Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG', source='Twitter for BlackBerry', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2c9626ce, retweetedStatus=null, userMentionEntities=[], urlEntities=[], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='BigIdeasBeterCities'}], mediaEntities=[MediaEntityJSONImpl{id=661359713548922880, url=https://t.co/PCBJGbHtZG, mediaURL=http://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, expandedURL=http://twitter.com/MacDATAInst/status/661359713767047168/photo/1, displayURL='pic.twitter.com/PCBJGbHtZG', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=604, resize=100}, 2=Size{width=600, height=1066, resize=100}, 3=Size{width=1024, height=1820, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4055252105, name='MacDATA Institute', screenName='MacDATAInst', location='Hamilton, Ontario', description='The official Twitter Account for the MacDATA Institute at McMaster University.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', url='null', isProtected=false, followersCount=15, status=null, profileBackgroundColor='EBEBEB', profileTextColor='333333', profileLinkColor='990000', profileSidebarFillColor='F3F3F3', profileSidebarBorderColor='DFDFDF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=34, createdAt=Tue Oct 27 18:44:03 UTC 2015, favouritesCount=3, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=37, isGeoEnabled=false, isVerified=false, translator=false, listedCount=2, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:36 UTC 2015, id=661359792250753024, text='RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH', source='Hootsuite', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@35cdb540, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/kfP5fABIeH', expandedURL='http://ow.ly/3ynvUz', displayURL='ow.ly/3ynvUz'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1976317832, name='Dr. Rajeev Bukralia', screenName='rbukralia', location='Wisconsin, USA', description='Data Scientist, Professor, Consultant...Former CEO, #CIO, Dean, Programmer...Tweets on #DataScience #AI #BigData #Leadership #HigherEd #Mindfulness #Startups...', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', url='null', isProtected=false, followersCount=954, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='3B94D9', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=670, createdAt=Sun Oct 20 20:25:50 UTC 2013, favouritesCount=9, utcOffset=-21600, timeZone='Central Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=2431, isGeoEnabled=false, isVerified=false, translator=false, listedCount=275, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:39 UTC 2015, id=661359804229677056, text='RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='BigDataTweetBot', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@54369858, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:30:34 UTC 2015, id=661354748528979968, text='CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='Twitter tweets 111', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=1, isPossiblySensitive=false, contributorsIDs=[J@4c4be499, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3170121190, name='FinBuzz', screenName='PortfolioBuzz', location='London', description='Financial #bigdata crowd-sourced, crowd-curated real-time news from 200+ news publications and from Twitter for FREE', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', url='http://www.cityfalcon.com', isProtected=false, followersCount=661, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=665, createdAt=Wed Apr 15 13:32:42 UTC 2015, favouritesCount=189, utcOffset=0, timeZone='Dublin', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en-gb', statusesCount=24916, isGeoEnabled=false, isVerified=false, translator=false, listedCount=123, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='FinBuzz', screenName='PortfolioBuzz', id=3170121190}], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3356052532, name='Big Data Tweet', screenName='BigDataTweetBot', location='null', description='I retweet #bigdata follow to get a feed of all that is tweeted about this subject. createdby @magicrat_larry', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', url='null', isProtected=false, followersCount=4536, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=256, createdAt=Fri Jul 03 01:30:20 UTC 2015, favouritesCount=0, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=353262, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4443, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:43 UTC 2015, id=661359823104163840, text='RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@a8d1ff1, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:19:03 UTC 2015, id=661351850340442112, text='How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.co/NIMJHDcktM', source='Tweet Jukebox', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@372c0ca0, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=44171091, name='Ted Coiné', screenName='tedcoine', location='Naples, Florida, USA', description='CEO of The Extraordinary #influencer Network. Keynote Speaker. Latest book: A World Gone Social. #socialCEO #FutureofWork #PersonalBranding *EN = sponsored', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', url='http://openfor.business/keynote/tedcoine/', isProtected=false, followersCount=461079, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='3B94D9', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='BDDCAD', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=350897, createdAt=Tue Jun 02 18:12:19 UTC 2009, favouritesCount=1125, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundTiled=true, lang='en', statusesCount=102830, isGeoEnabled=false, isVerified=false, translator=false, listedCount=8882, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Ted Coiné', screenName='tedcoine', id=44171091}, UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4005210261, name='Richard Anthony', screenName='indi_solutions', location='Georgia, USA', description='CEO of Indi Solutions', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', url='null', isProtected=false, followersCount=57, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='FFCC4D', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=143, createdAt=Tue Oct 20 22:48:00 UTC 2015, favouritesCount=7, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundTiled=true, lang='en', statusesCount=52, isGeoEnabled=false, isVerified=false, translator=false, listedCount=0, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359841559117825, text='RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2cf0f8ac, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 01:51:00 UTC 2015, id=660997504746586112, text='Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #DeloitteReview', source='Sprinklr', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=16, isPossiblySensitive=false, contributorsIDs=[J@55fb41, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=588631454, name='Deloitte Univ Press', screenName='DU_Press', location='United States', description='Where ideas prosper. Latest news, #research & thought leadership from Deloitte University Press. For questions: dupress@deloitte.com', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', url='http://www.dupress.com', isProtected=false, followersCount=18031, status=null, profileBackgroundColor='F5F9FA', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=1343, createdAt=Wed May 23 22:37:20 UTC 2012, favouritesCount=9351, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=8172, isGeoEnabled=false, isVerified=true, translator=false, listedCount=548, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Deloitte Univ Press', screenName='DU_Press', id=588631454}], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24536, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359843538792448, text='RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@ce26893, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 16:30:09 UTC 2015, id=661218751560335360, text='#BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='TweetDeck', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@643f9180, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=24028758, name='Microsoft NewEngland', screenName='MSNewEngland', location='Cambridge, MA', description='Microsoft New England promotes research, software #innovation & community in the heart of #kendallsquare.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', url='http://microsoftnewengland.com/', isProtected=false, followersCount=9927, status=null, profileBackgroundColor='9D9A91', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='FF7F00', profileSidebarBorderColor='FF7F00', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2657, createdAt=Thu Mar 12 20:28:19 UTC 2009, favouritesCount=5776, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundTiled=false, lang='en', statusesCount=16824, isGeoEnabled=true, isVerified=false, translator=false, listedCount=717, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Microsoft NewEngland', screenName='MSNewEngland', id=24028758}, UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24538, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:49 UTC 2015, id=661359844474114048, text='RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@9699deb, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 18:40:00 UTC 2015, id=661251425989693440, text='#GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https://t.co/HXRqCwSaax', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@74feb420, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=16890685, name='GaTech Computing ', screenName='gtcomputing', location='Atlanta, GA', description='An international leader in real-world computing breakthroughs that drive social and scientific progress. Use #gtcomputing to share with us.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', url='http://www.cc.gatech.edu', isProtected=false, followersCount=6927, status=null, profileBackgroundColor='131516', profileTextColor='333333', profileLinkColor='E0B23E', profileSidebarFillColor='C0DFEC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=3133, createdAt=Tue Oct 21 18:19:35 UTC 2008, favouritesCount=481, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=3298, isGeoEnabled=true, isVerified=false, translator=false, listedCount=224, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='GaTech Computing ', screenName='gtcomputing', id=16890685}, UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24539, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\n...\n\nres22: org.apache.spark.sql.UserDefinedFunction = UserDefinedFunction(,StringType)\n-------------------------------------------\nTime: 1446515666000 ms\n-------------------------------------------\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:44 UTC 2015, id=661359574780391424, text='White House hits #Turkey over vote 'intimidation'\n#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP\nhttps://t.co/DhAK3bXnX3', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@386e5a6c, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/DhAK3bXnX3', expandedURL='http://www.dailystar.com.lb/News/Middle-East/2015/Nov-02/321330-white-house-hits-turkey-over-vote-intimidation.ashx', displayURL='dailystar.com.lb/News/Middle-Ea…'}], hashtagEntities=[HashtagEntityJSONImpl{text='Turkey'}, HashtagEntityJSONImpl{text='YPJ'}, HashtagEntityJSONImpl{text='YPG'}, HashtagEntityJSONImpl{text='Kobane'}, HashtagEntityJSONImpl{text='TwitterKurds'}, HashtagEntityJSONImpl{text='turkeyelections'}, HashtagEntityJSONImpl{text='Turkeyvotes'}, HashtagEntityJSONImpl{text='HDP'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2421003619, name='Hanar Marouf', screenName='Hanar_Marouf', location='Kurdistan', description='Human rights activist,found first English magazine for youth Kurdistan,AUIS alumni MA/politics&Int.Relations. Human Rights Watch DC. Opinions are my own', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/612188678203420672/VJjkgeaH_normal.jpg', url='null', isProtected=false, followersCount=7974, status=null, profileBackgroundColor='FF6699', profileTextColor='362720', profileLinkColor='B40B43', profileSidebarFillColor='E5507E', profileSidebarBorderColor='CC3366', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=400, createdAt=Mon Mar 31 19:49:35 UTC 2014, favouritesCount=8607, utcOffset=10800, timeZone='Baghdad', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme11/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=9883, isGeoEnabled=false, isVerified=false, translator=false, listedCount=96, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:49:49 UTC 2015, id=661359595324112896, text='5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech', source='Twitter for iPhone', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@54f28565, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/iwoH7G5RdP', expandedURL='http://j.mp/1jlzNdc', displayURL='j.mp/1jlzNdc'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='tech'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=509154369, name='Karen Elliott', screenName='karenbelliott', location='null', description='Marketer, designer, music lover. Fan of innovation, smart design, funny people, unique perspectives and goats.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/623488862577274881/EEHnIAZy_normal.jpg', url='null', isProtected=false, followersCount=743, status=null, profileBackgroundColor='ACDED6', profileTextColor='333333', profileLinkColor='DB7923', profileSidebarFillColor='FFFFFF', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=907, createdAt=Wed Feb 29 19:47:40 UTC 2012, favouritesCount=645, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme18/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=778, isGeoEnabled=true, isVerified=false, translator=false, listedCount=97, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:01 UTC 2015, id=661359646930812928, text='RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…', source='GaggleAMP', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@7e13d574, retweetedStatus=StatusJSONImpl{createdAt=Wed Oct 28 15:23:50 UTC 2015, id=659390121041641472, text='That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.co/SUGd0BLUYa', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=33, isPossiblySensitive=false, contributorsIDs=[J@4822f356, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=105890977, name='Qubit', screenName='qubit', location='London, UK', description='We believe marketers should be constrained only by their imaginations, not the limitations of their technology. We’re here to help them beat digital roadblocks', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/3479293572/3ddac2af420aa051b5a1948e85d2fb7e_normal.png', url='http://www.qubit.com', isProtected=false, followersCount=1835, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='47B28D', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=465, createdAt=Sun Jan 17 21:01:53 UTC 2010, favouritesCount=76, utcOffset=3600, timeZone='Amsterdam', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/512998961058021376/Ru0Wg5Z0.png', profileBackgroundTiled=true, lang='en', statusesCount=1505, isGeoEnabled=true, isVerified=false, translator=false, listedCount=106, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Qubit', screenName='qubit', id=105890977}, UserMentionEntityJSONImpl{name='Shop Direct', screenName='ShopDirect', id=317734162}], urlEntities=[URLEntityJSONImpl{url='https://t.co/SUGd0BLUYa', expandedURL='https://twitter.com/retailweek/status/658929259549855745', displayURL='twitter.com/retailweek/sta…'}], hashtagEntities=[HashtagEntityJSONImpl{text='personalisation'}, HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=2385488701, name='Kim Pritchard', screenName='kpritch01', location='Philadelphia', description='Sales Engineer @Qubit\nJournalism major turned tech nerd. Foodie. Traveler. Animal Lover.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/564894051506196480/BKyGtT9f_normal.jpeg', url='http://www.extole.com', isProtected=false, followersCount=53, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='CF0053', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=265, createdAt=Wed Mar 12 16:15:11 UTC 2014, favouritesCount=1, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=60, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:17 UTC 2015, id=661359713767047168, text='Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG', source='Twitter for BlackBerry', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@6e95b819, retweetedStatus=null, userMentionEntities=[], urlEntities=[], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='BigIdeasBeterCities'}], mediaEntities=[MediaEntityJSONImpl{id=661359713548922880, url=https://t.co/PCBJGbHtZG, mediaURL=http://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2fJ8rWcAArn1k.jpg, expandedURL=http://twitter.com/MacDATAInst/status/661359713767047168/photo/1, displayURL='pic.twitter.com/PCBJGbHtZG', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=604, resize=100}, 2=Size{width=600, height=1066, resize=100}, 3=Size{width=1024, height=1820, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4055252105, name='MacDATA Institute', screenName='MacDATAInst', location='Hamilton, Ontario', description='The official Twitter Account for the MacDATA Institute at McMaster University.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/661240552701095936/zU1BerFo_normal.png', url='null', isProtected=false, followersCount=15, status=null, profileBackgroundColor='EBEBEB', profileTextColor='333333', profileLinkColor='990000', profileSidebarFillColor='F3F3F3', profileSidebarBorderColor='DFDFDF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=34, createdAt=Tue Oct 27 18:44:03 UTC 2015, favouritesCount=3, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme7/bg.gif', profileBackgroundTiled=false, lang='en', statusesCount=37, isGeoEnabled=false, isVerified=false, translator=false, listedCount=2, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:36 UTC 2015, id=661359792250753024, text='RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH', source='Hootsuite', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2769aa07, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/kfP5fABIeH', expandedURL='http://ow.ly/3ynvUz', displayURL='ow.ly/3ynvUz'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1976317832, name='Dr. Rajeev Bukralia', screenName='rbukralia', location='Wisconsin, USA', description='Data Scientist, Professor, Consultant...Former CEO, #CIO, Dean, Programmer...Tweets on #DataScience #AI #BigData #Leadership #HigherEd #Mindfulness #Startups...', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/603003564387127296/X3B05Fin_normal.jpg', url='null', isProtected=false, followersCount=954, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='3B94D9', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=false, showAllInlineMedia=false, friendsCount=670, createdAt=Sun Oct 20 20:25:50 UTC 2013, favouritesCount=9, utcOffset=-21600, timeZone='Central Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=2431, isGeoEnabled=false, isVerified=false, translator=false, listedCount=275, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:39 UTC 2015, id=661359804229677056, text='RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='BigDataTweetBot', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@a19c5c8, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:30:34 UTC 2015, id=661354748528979968, text='CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC', source='Twitter tweets 111', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=1, isPossiblySensitive=false, contributorsIDs=[J@2207d2a6, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3170121190, name='FinBuzz', screenName='PortfolioBuzz', location='London', description='Financial #bigdata crowd-sourced, crowd-curated real-time news from 200+ news publications and from Twitter for FREE', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/588350792798613505/8sfs3n5g_normal.jpg', url='http://www.cityfalcon.com', isProtected=false, followersCount=661, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=665, createdAt=Wed Apr 15 13:32:42 UTC 2015, favouritesCount=189, utcOffset=0, timeZone='Dublin', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en-gb', statusesCount=24916, isGeoEnabled=false, isVerified=false, translator=false, listedCount=123, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='FinBuzz', screenName='PortfolioBuzz', id=3170121190}], urlEntities=[URLEntityJSONImpl{url='https://t.co/dPpKdbV6WC', expandedURL='http://www.cityfalcon.com/watchlists?assets=aapl,%20tsla', displayURL='cityfalcon.com/watchlists?ass…'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=3356052532, name='Big Data Tweet', screenName='BigDataTweetBot', location='null', description='I retweet #bigdata follow to get a feed of all that is tweeted about this subject. createdby @magicrat_larry', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/616793252524650496/bQbxJqmz_normal.jpg', url='null', isProtected=false, followersCount=4536, status=null, profileBackgroundColor='C0DEED', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='C0DEED', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=256, createdAt=Fri Jul 03 01:30:20 UTC 2015, favouritesCount=0, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme1/bg.png', profileBackgroundTiled=false, lang='en', statusesCount=353262, isGeoEnabled=false, isVerified=false, translator=false, listedCount=4443, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:43 UTC 2015, id=661359823104163840, text='RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…', source='Twitter for Android', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@2f96a1be, retweetedStatus=StatusJSONImpl{createdAt=Tue Nov 03 01:19:03 UTC 2015, id=661351850340442112, text='How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.co/NIMJHDcktM', source='Tweet Jukebox', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@e2204fb, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=44171091, name='Ted Coiné', screenName='tedcoine', location='Naples, Florida, USA', description='CEO of The Extraordinary #influencer Network. Keynote Speaker. Latest book: A World Gone Social. #socialCEO #FutureofWork #PersonalBranding *EN = sponsored', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/644209860578402304/LKrl2x1n_normal.jpg', url='http://openfor.business/keynote/tedcoine/', isProtected=false, followersCount=461079, status=null, profileBackgroundColor='9AE4E8', profileTextColor='333333', profileLinkColor='3B94D9', profileSidebarFillColor='DDFFCC', profileSidebarBorderColor='BDDCAD', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=350897, createdAt=Tue Jun 02 18:12:19 UTC 2009, favouritesCount=1125, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/86958578/twilk_background_4bafab10d9fbc.jpg', profileBackgroundTiled=true, lang='en', statusesCount=102830, isGeoEnabled=false, isVerified=false, translator=false, listedCount=8882, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Ted Coiné', screenName='tedcoine', id=44171091}, UserMentionEntityJSONImpl{name='Nathaniel Schooler', screenName='NatSchooler', id=132639906}], urlEntities=[URLEntityJSONImpl{url='https://t.co/YB4XmvsYoy', expandedURL='http://buff.ly/1iwSt9z', displayURL='buff.ly/1iwSt9z'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}, HashtagEntityJSONImpl{text='marketing'}], mediaEntities=[MediaEntityJSONImpl{id=661351849618862080, url=https://t.co/NIMJHDcktM, mediaURL=http://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, mediaURLHttps=https://pbs.twimg.com/media/CS2YANQUcAAoAO7.jpg, expandedURL=http://twitter.com/tedcoine/status/661351850340442112/photo/1, displayURL='pic.twitter.com/NIMJHDcktM', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=150, resize=100}, 2=Size{width=600, height=265, resize=100}, 3=Size{width=905, height=400, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=4005210261, name='Richard Anthony', screenName='indi_solutions', location='Georgia, USA', description='CEO of Indi Solutions', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/657257791325782016/gqZ7j7JM_normal.png', url='null', isProtected=false, followersCount=57, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='FFCC4D', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=143, createdAt=Tue Oct 20 22:48:00 UTC 2015, favouritesCount=7, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/657898741396021248/R6MVZITB.png', profileBackgroundTiled=true, lang='en', statusesCount=52, isGeoEnabled=false, isVerified=false, translator=false, listedCount=0, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359841559117825, text='RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@5b7501fc, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 01:51:00 UTC 2015, id=660997504746586112, text='Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #DeloitteReview', source='Sprinklr', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=16, isPossiblySensitive=false, contributorsIDs=[J@5ed5764c, retweetedStatus=null, userMentionEntities=[], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=588631454, name='Deloitte Univ Press', screenName='DU_Press', location='United States', description='Where ideas prosper. Latest news, #research & thought leadership from Deloitte University Press. For questions: dupress@deloitte.com', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/552147022220783617/G6qd6aRF_normal.png', url='http://www.dupress.com', isProtected=false, followersCount=18031, status=null, profileBackgroundColor='F5F9FA', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='DDEEF6', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=1343, createdAt=Wed May 23 22:37:20 UTC 2012, favouritesCount=9351, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/692747233/badba30ed64c5144e9c71421f5a99849.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=8172, isGeoEnabled=false, isVerified=true, translator=false, listedCount=548, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Deloitte Univ Press', screenName='DU_Press', id=588631454}], urlEntities=[URLEntityJSONImpl{url='https://t.co/lNANiSi8Wp', expandedURL='http://deloi.tt/1LGqEpf', displayURL='deloi.tt/1LGqEpf'}], hashtagEntities=[HashtagEntityJSONImpl{text='bigdata'}, HashtagEntityJSONImpl{text='IoT'}, HashtagEntityJSONImpl{text='DeloitteReview'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24536, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:48 UTC 2015, id=661359843538792448, text='RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@1049a838, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 16:30:09 UTC 2015, id=661218751560335360, text='#BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe', source='TweetDeck', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@53c2fce2, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=24028758, name='Microsoft NewEngland', screenName='MSNewEngland', location='Cambridge, MA', description='Microsoft New England promotes research, software #innovation & community in the heart of #kendallsquare.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/378800000314181680/8c3fa57a678fab38ced00be34dae0bed_normal.png', url='http://microsoftnewengland.com/', isProtected=false, followersCount=9927, status=null, profileBackgroundColor='9D9A91', profileTextColor='333333', profileLinkColor='0084B4', profileSidebarFillColor='FF7F00', profileSidebarBorderColor='FF7F00', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2657, createdAt=Thu Mar 12 20:28:19 UTC 2009, favouritesCount=5776, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/554563253/2012_twitter_bg.jpg', profileBackgroundTiled=false, lang='en', statusesCount=16824, isGeoEnabled=true, isVerified=false, translator=false, listedCount=717, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='Microsoft NewEngland', screenName='MSNewEngland', id=24028758}, UserMentionEntityJSONImpl{name='MIT Sloan', screenName='MITSloan', id=8724862}, UserMentionEntityJSONImpl{name='The Boston Globe', screenName='BostonGlobe', id=95431448}], urlEntities=[URLEntityJSONImpl{url='https://t.co/mXlXEt1SLy', expandedURL='http://bit.ly/1Rp1dtK', displayURL='bit.ly/1Rp1dtK'}], hashtagEntities=[HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24538, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\nStatusJSONImpl{createdAt=Tue Nov 03 01:50:49 UTC 2015, id=661359844474114048, text='RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…', source='RoundTeam', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=0, isPossiblySensitive=false, contributorsIDs=[J@17cbd4ef, retweetedStatus=StatusJSONImpl{createdAt=Mon Nov 02 18:40:00 UTC 2015, id=661251425989693440, text='#GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https://t.co/HXRqCwSaax', source='Twitter Web Client', isTruncated=false, inReplyToStatusId=-1, inReplyToUserId=-1, isFavorited=false, inReplyToScreenName='null', geoLocation=null, place=null, retweetCount=3, isPossiblySensitive=false, contributorsIDs=[J@4708a31d, retweetedStatus=null, userMentionEntities=[UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=16890685, name='GaTech Computing ', screenName='gtcomputing', location='Atlanta, GA', description='An international leader in real-world computing breakthroughs that drive social and scientific progress. Use #gtcomputing to share with us.', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', profileImageUrlHttps='https://pbs.twimg.com/profile_images/2349085334/eifino66941i1lnmyrky_normal.jpeg', url='http://www.cc.gatech.edu', isProtected=false, followersCount=6927, status=null, profileBackgroundColor='131516', profileTextColor='333333', profileLinkColor='E0B23E', profileSidebarFillColor='C0DFEC', profileSidebarBorderColor='FFFFFF', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=3133, createdAt=Tue Oct 21 18:19:35 UTC 2008, favouritesCount=481, utcOffset=-18000, timeZone='Eastern Time (US & Canada)', profileBackgroundImageUrl='http://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundImageUrlHttps='https://abs.twimg.com/images/themes/theme14/bg.gif', profileBackgroundTiled=true, lang='en', statusesCount=3298, isGeoEnabled=true, isVerified=false, translator=false, listedCount=224, isFollowRequestSent=false}}, userMentionEntities=[UserMentionEntityJSONImpl{name='GaTech Computing ', screenName='gtcomputing', id=16890685}, UserMentionEntityJSONImpl{name='UNC-Chapel Hill', screenName='UNC', id=20683724}], urlEntities=[URLEntityJSONImpl{url='https://t.co/fN6hrQGaMg', expandedURL='http://b.gatech.edu/1MtiGNv', displayURL='b.gatech.edu/1MtiGNv'}], hashtagEntities=[HashtagEntityJSONImpl{text='GeorgiaTech'}, HashtagEntityJSONImpl{text='BigData'}], mediaEntities=[MediaEntityJSONImpl{id=661251425264148482, url=https://t.co/HXRqCwSaax, mediaURL=http://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, mediaURLHttps=https://pbs.twimg.com/media/CS08qvYXIAIwbKb.png, expandedURL=http://twitter.com/gtcomputing/status/661251425989693440/photo/1, displayURL='pic.twitter.com/HXRqCwSaax', sizes={0=Size{width=150, height=150, resize=101}, 1=Size{width=340, height=202, resize=100}, 2=Size{width=600, height=356, resize=100}, 3=Size{width=1024, height=608, resize=100}}, type=photo}], currentUserRetweetId=-1, user=UserJSONImpl{id=1544327005, name='BigBoards', screenName='bigboardsio', location='Aarschot, Belgium', description='Want to learn Big Data without getting your hands dirty in infrastructure mud? Have a look at our Hex, your personal cluster that works right out of the box!', isContributorsEnabled=false, profileImageUrl='http://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', profileImageUrlHttps='https://pbs.twimg.com/profile_images/489375332743409664/P4sYDY1__normal.png', url='http://bigboards.io', isProtected=false, followersCount=2587, status=null, profileBackgroundColor='000000', profileTextColor='000000', profileLinkColor='008888', profileSidebarFillColor='000000', profileSidebarBorderColor='000000', profileUseBackgroundImage=true, showAllInlineMedia=false, friendsCount=2240, createdAt=Mon Jun 24 23:11:07 UTC 2013, favouritesCount=15301, utcOffset=-1, timeZone='null', profileBackgroundImageUrl='http://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundImageUrlHttps='https://pbs.twimg.com/profile_background_images/560840149643177984/5VQCaEun.jpeg', profileBackgroundTiled=false, lang='en', statusesCount=24539, isGeoEnabled=false, isVerified=false, translator=false, listedCount=1434, isFollowRequestSent=false}}\n...\n\n"},"dateCreated":"2015-10-30T02:19:54+0000","dateStarted":"2015-11-03T01:54:18+0000","dateFinished":"2015-11-03T01:54:27+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:514"},{"text":"%pyspark\n\n#declaring a function in Python\n\nimport re\n\ndef wordcount(a):\n return len(re.split(\"\\W+\",a))\n \nsqlContext.registerFunction(\"wordcount\", wordcount)\n","dateUpdated":"2015-11-03T01:55:18+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446512982434_315431956","id":"20151103-010942_1843644139","result":{"code":"SUCCESS","type":"TEXT","msg":""},"dateCreated":"2015-11-03T01:09:42+0000","dateStarted":"2015-11-03T01:55:18+0000","dateFinished":"2015-11-03T01:55:19+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:515"},{"text":"%sql\n\n--using SQL to mix window data, with scala function and python function\n\nselect from_unixtime(createdAt) as created, screenName, sentiment(text) as sentiment, wordcount(text) as wordcount, text from tweets\n","dateUpdated":"2015-11-03T01:55:35+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":true,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sql","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446171777268_1513014767","id":"20151030-022257_424431286","result":{"code":"SUCCESS","type":"TABLE","msg":"created\tscreenName\tsentiment\twordcount\ttext\n2015-11-03 01:49:44\tHanar_Marouf\tneutral\t18\tWhite House hits #Turkey over vote 'intimidation'\n#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP\nhttps://t.co/DhAK3bXnX3\n2015-11-03 01:49:49\tkarenbelliott\tneutral\t17\t5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech\n2015-11-03 01:50:01\tkpritch01\tpositivie\t25\tRT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…\n2015-11-03 01:50:17\tMacDATAInst\tpositivie\t18\tWayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG\n2015-11-03 01:50:36\trbukralia\tneutral\t15\tRapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH\n2015-11-03 01:50:39\tBigDataTweetBot\tneutral\t17\tRT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC\n2015-11-03 01:50:43\tindi_solutions\tneutral\t24\tRT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…\n2015-11-03 01:50:48\tbigboardsio\tpositivie\t25\tRT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…\n2015-11-03 01:50:48\tbigboardsio\tneutral\t16\tRT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe\n2015-11-03 01:50:49\tbigboardsio\tneutral\t20\tRT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…\n2015-11-03 01:50:49\tdiscovertext\tpositivie\t15\tVisit @Texifer at the @BigDataTechCon the \"how to\" technical training conference for #bigdata professionals.\n2015-11-03 01:50:49\tbigboardsio\tpositivie\t19\tRT @IBMPowerSystems: Building a true system of insight that gets the most out of #BigData: https://t.co/ldhu5obrb9\n2015-11-03 01:50:52\tBigDataTweetBot\tpositivie\t24\tRT @GlobalBU: The world of #IoT in one #infographic! Data by @Livemint and @McKinsey_MGI https://t.co/N8aBHnBk8V https://t.co/dnB5JfXNVJ #B…\n2015-11-03 01:50:57\tBigDataTweetBot\tneutral\t16\tRT @MacDATAInst: Andrew McArthur- creating an Internet of DNA to detect emerging threats through #BigData, #bibcmcmaster\n2015-11-03 01:50:59\ttexifter\tneutral\t17\tRT @BigDataTechCon: We hope you enjoyed today's #BigData tutorials. See you tomorrow for more #BigDataTechCon!\n2015-11-03 01:51:09\tjknauer\tneutral\t17\tUsing @rhiza & #bigdata to move beyond ineffective stereotyping in marketing campaigns: https://t.co/py8CLEEVPR in @SmartDataCo\n2015-11-03 01:51:09\tNeuvooAdmAtl\tnegative\t19\tNTT DATA is hiring a #Hadoop #Administrator, apply now! #Atlanta #jobs https://t.co/ji5zzCBNMh https://t.co/FiIg4schcd\n2015-11-03 01:51:24\tHXCostello5\tneutral\t16\tRT @89Degrees: Learn more about our hosted enterprise hadoop platform #hortonworks #sasanalytics \nhttps://t.co/fZIfz1qMoT\n2015-11-03 01:51:26\tMacDATAInst\tnegative\t9\t\"Big data is our crystal ball\"- #BigData #bibcmcmaster\n2015-11-03 01:51:45\tNik_Caven\tpositivie\t23\tRT @SanDiskDataCtr: Will 2016 be the year for #BigData applications on flash? https://t.co/VYUqjLDrss\n\n@Tegile #datacenter https://t.co/RE3…\n2015-11-03 01:51:47\tjrdothoughts\tpositivie\t23\tshadow IT might be the one of the best things that ever happened to IT departments to push innovations in #cloud, #mobile, #bigdata\n2015-11-03 01:52:01\tDebbieAMKC\tnegative\t10\tRT @MacDATAInst: \"Big data is our crystal ball\"- #BigData #bibcmcmaster\n2015-11-03 01:52:11\ttisha2keeka\tnegative\t23\tRT @dr_morton: Time is NOT Money...\n\nIn Entrepreneurship Time is a CRITICAL Resource that Money Can't buy. \n\nComputing & #BigData can, howe…\n2015-11-03 01:52:40\tFollowBSE\tneutral\t15\tHi tisha2keeka, You should Follow https://t.co/2wQ2U9g55A For Updates ! https://t.co/ZVB7XbpurC\n2015-11-03 01:52:52\tHanar_Marouf\tneutral\t18\t#Erdogan Hails #Turkey Vote as Victory for One-Party Rule https://t.co/IpdnLYQgHw #turkeyelections #Turkeyvotes #HDP\n2015-11-03 01:52:54\tDanielHooman\tpositivie\t22\tRT @BernardMarr: The majority of people (87%) have not heard of the term ‘Internet of Things’ #IoT #BigData https://t.co/gZPsFWaMJW\n2015-11-03 01:53:03\thelbah8\tneutral\t21\t#BigData, ¿Sabemos todo lo que saben las marcas de nuestros hábitos e intereses? #Marketing| @scoopit https://t.co/yjWwoNkfUC\n2015-11-03 01:53:10\tmikepluta\tneutral\t22\tTop story from @CRN #BigData Stars MapReduce Design Patterns Implemented in Apa… https://t.co/GytZzRn8ZA, see more https://t.co/zbBJaNzwRa\n2015-11-03 01:53:13\tgildardorojas\tneutral\t10\t#MachineLearning at Scale with #Spark https://t.co/z5MfGTJJ4B\n2015-11-03 01:53:26\tJamesWMacintyre\tneutral\t17\tRT @robertoglezcano: Funny comic about football @DataScienceCtrl https://t.co/zMBckfM4cx #bigdata #datascience #Analytics #DataScientists h…\n2015-11-03 01:53:26\tJamesWMacintyre\tneutral\t19\tRT @EvanSinar: Data Science Core Skills @DataScienceCtrl  #DataScience #bigdata #analytics #statistics https://t.co/V5ACztzxLa https://t.co…\n2015-11-03 01:53:27\tJamesWMacintyre\tneutral\t18\tRT @RogerMoore: Types of Questions #DataScience can Answer @kdnuggets #BigData #Analytics #MachineLearning https://t.co/oc24smfooi https://…\n2015-11-03 01:53:27\tJamesWMacintyre\tpositivie\t25\tRT @dataCloud01: Are you going down the wrong #bigdata path? At @dataCloud01 we can help you with your #analytics needs. :https://t.co/GRhj…\n2015-11-03 01:53:27\tJamesWMacintyre\tneutral\t20\tRT @BigDataBlender: What #Marketers Should Know About #BigData https://t.co/IIJ0XcsXRX by @martykihn #Analytics #Digital #Marketing #CMO ht…\n2015-11-03 01:53:28\tJamesWMacintyre\tpositivie\t25\tRT @FarbodSaraf: RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.c…\n2015-11-03 01:53:39\tHanar_Marouf\tneutral\t19\tAfter #Turkey’s election, woe and despair for #Erdogan’s opponents https://t.co/f2fuRPHwE7 #turkeyelections #Turkeyvotes #HDP #TwitterKurds\n2015-11-03 01:53:43\tmcalacrity\tneutral\t17\tRT @IOTTopNews: IoT Redefines Airline-Passenger Experience | @ThingsExpo #IoT #M2M #BigData https://t.co/xNk9C149kz via @SMC_on_IoT\n2015-11-03 01:54:02\tDistrictDataLab\tneutral\t13\tModern Methods for Sentiment Analysis https://t.co/LPOpoNEJBB #DataScience #BigData #NLProc #Python\n2015-11-03 01:54:10\t__iot__\tpositivie\t19\tRT @GlenGilmore: #MiddleEast set to become a world leader in the #InternetOfThings\n\nhttps://t.co/FbSU0AzBf0 #IoT #MENA #BigData\n2015-11-03 01:54:32\tpatrickclee0207\tpositivie\t13\t\"Announcing the Spark TFOCS Optimization Package\" #bigdata #feedly https://t.co/0WklZxVX3V\n2015-11-03 01:54:52\tPDEWEB\tneutral\t26\tu_t=15x^2u_xx+(15x + 2t)u_x+0u with u(x,s)=cos(2*x^2+8)\n https://t.co/rrFFcdZr5Y #bigdata #analytics https://t.co/MJGqRzsDCc\n2015-11-03 01:54:52\tGMLconsultants\tpositivie\t23\tRT @retailwire: What is the role of the #retail buyer in the age of #BigData?\nhttps://t.co/VKZpIhJRf2 https://t.co/iIyV3DdT1w\n2015-11-03 01:55:07\tbigdata\tnegative\t22\tHow #bigdata is used to boost consumer engagement @PayPal https://t.co/gVu8aN7y5S #stratahadoop Singapore talk by Sujit Mathew & Yew Yap Goh\n2015-11-03 01:55:10\tSuibhne67\tneutral\t20\tRT @Hanar_Marouf: After #Turkey’s election, woe and despair for #Erdogan’s opponents https://t.co/f2fuRPHwE7 #turkeyelections #Turkeyvotes …\n2015-11-03 01:55:16\tjsb___19\tneutral\t7\tRT @mexjsge24: 《第7弾》\n\n小学生の頃、マイケル知らなかっただけで、健二郎に馬鹿にされる隆二😯😯(笑)\n\n#三代目\n#SPARK\n#山下健二郎\n#今市隆二\n#仲良し\n#文字おこし動画\n\n#もげの暇つぶし http://t.co/N8eMkNsxHB\n2015-11-03 01:55:24\tblisslogixIT\tpositivie\t25\tRT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…\n2015-11-03 01:55:24\tblisslogixIT\tneutral\t17\tRT @IOTTopNews: IoT Redefines Airline-Passenger Experience | @ThingsExpo #IoT #M2M #BigData https://t.co/xNk9C149kz via @SMC_on_IoT\n","comment":"@Tegile #datacenter https://t.co/RE3…2015-11-03 01:51:47\tjrdothoughts\tpositivie\t23\tshadow IT might be the one of the best things that ever happened to IT departments to push innovations in #cloud, #mobile, #bigdata2015-11-03 01:52:01\tDebbieAMKC\tnegative\t10\tRT @MacDATAInst: \"Big data is our crystal ball\"- #BigData #bibcmcmaster2015-11-03 01:52:11\ttisha2keeka\tnegative\t23\tRT @dr_morton: Time is NOT Money...In Entrepreneurship Time is a CRITICAL Resource that Money Can't buy. Computing & #BigData can, howe…2015-11-03 01:52:40\tFollowBSE\tneutral\t15\tHi tisha2keeka, You should Follow https://t.co/2wQ2U9g55A For Updates ! https://t.co/ZVB7XbpurC2015-11-03 01:52:52\tHanar_Marouf\tneutral\t18\t#Erdogan Hails #Turkey Vote as Victory for One-Party Rule https://t.co/IpdnLYQgHw #turkeyelections #Turkeyvotes #HDP2015-11-03 01:52:54\tDanielHooman\tpositivie\t22\tRT @BernardMarr: The majority of people (87%) have not heard of the term ‘Internet of Things’ #IoT #BigData https://t.co/gZPsFWaMJW2015-11-03 01:53:03\thelbah8\tneutral\t21\t#BigData, ¿Sabemos todo lo que saben las marcas de nuestros hábitos e intereses? #Marketing| @scoopit https://t.co/yjWwoNkfUC2015-11-03 01:53:10\tmikepluta\tneutral\t22\tTop story from @CRN #BigData Stars MapReduce Design Patterns Implemented in Apa… https://t.co/GytZzRn8ZA, see more https://t.co/zbBJaNzwRa2015-11-03 01:53:13\tgildardorojas\tneutral\t10\t#MachineLearning at Scale with #Spark https://t.co/z5MfGTJJ4B2015-11-03 01:53:26\tJamesWMacintyre\tneutral\t17\tRT @robertoglezcano: Funny comic about football @DataScienceCtrl https://t.co/zMBckfM4cx #bigdata #datascience #Analytics #DataScientists h…2015-11-03 01:53:26\tJamesWMacintyre\tneutral\t19\tRT @EvanSinar: Data Science Core Skills @DataScienceCtrl  #DataScience #bigdata #analytics #statistics https://t.co/V5ACztzxLa https://t.co…2015-11-03 01:53:27\tJamesWMacintyre\tneutral\t18\tRT @RogerMoore: Types of Questions #DataScience can Answer @kdnuggets #BigData #Analytics #MachineLearning https://t.co/oc24smfooi https://…2015-11-03 01:53:27\tJamesWMacintyre\tpositivie\t25\tRT @dataCloud01: Are you going down the wrong #bigdata path? At @dataCloud01 we can help you with your #analytics needs. :https://t.co/GRhj…2015-11-03 01:53:27\tJamesWMacintyre\tneutral\t20\tRT @BigDataBlender: What #Marketers Should Know About #BigData https://t.co/IIJ0XcsXRX by @martykihn #Analytics #Digital #Marketing #CMO ht…2015-11-03 01:53:28\tJamesWMacintyre\tpositivie\t25\tRT @FarbodSaraf: RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.c…2015-11-03 01:53:39\tHanar_Marouf\tneutral\t19\tAfter #Turkey’s election, woe and despair for #Erdogan’s opponents https://t.co/f2fuRPHwE7 #turkeyelections #Turkeyvotes #HDP #TwitterKurds2015-11-03 01:53:43\tmcalacrity\tneutral\t17\tRT @IOTTopNews: IoT Redefines Airline-Passenger Experience | @ThingsExpo #IoT #M2M #BigData https://t.co/xNk9C149kz via @SMC_on_IoT2015-11-03 01:54:02\tDistrictDataLab\tneutral\t13\tModern Methods for Sentiment Analysis https://t.co/LPOpoNEJBB #DataScience #BigData #NLProc #Python2015-11-03 01:54:10\t__iot__\tpositivie\t19\tRT @GlenGilmore: #MiddleEast set to become a world leader in the #InternetOfThingshttps://t.co/FbSU0AzBf0 #IoT #MENA #BigData2015-11-03 01:54:32\tpatrickclee0207\tpositivie\t13\t\"Announcing the Spark TFOCS Optimization Package\" #bigdata #feedly https://t.co/0WklZxVX3V2015-11-03 01:54:52\tPDEWEB\tneutral\t26\tu_t=15x^2u_xx+(15x + 2t)u_x+0u with u(x,s)=cos(2*x^2+8) https://t.co/rrFFcdZr5Y #bigdata #analytics https://t.co/MJGqRzsDCc2015-11-03 01:54:52\tGMLconsultants\tpositivie\t23\tRT @retailwire: What is the role of the #retail buyer in the age of #BigData?https://t.co/VKZpIhJRf2 https://t.co/iIyV3DdT1w2015-11-03 01:55:07\tbigdata\tnegative\t22\tHow #bigdata is used to boost consumer engagement @PayPal https://t.co/gVu8aN7y5S #stratahadoop Singapore talk by Sujit Mathew & Yew Yap Goh2015-11-03 01:55:10\tSuibhne67\tneutral\t20\tRT @Hanar_Marouf: After #Turkey’s election, woe and despair for #Erdogan’s opponents https://t.co/f2fuRPHwE7 #turkeyelections #Turkeyvotes …2015-11-03 01:55:16\tjsb___19\tneutral\t7\tRT @mexjsge24: 《第7弾》小学生の頃、マイケル知らなかっただけで、健二郎に馬鹿にされる隆二😯😯(笑)#三代目#SPARK#山下健二郎#今市隆二#仲良し#文字おこし動画#もげの暇つぶし http://t.co/N8eMkNsxHB2015-11-03 01:55:24\tblisslogixIT\tpositivie\t25\tRT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…2015-11-03 01:55:24\tblisslogixIT\tneutral\t17\tRT @IOTTopNews: IoT Redefines Airline-Passenger Experience | @ThingsExpo #IoT #M2M #BigData https://t.co/xNk9C149kz via @SMC_on_IoT","msgTable":[[{"key":"screenName","value":"2015-11-03 01:49:44"},{"key":"screenName","value":"Hanar_Marouf"},{"key":"screenName","value":"neutral"},{"key":"screenName","value":"18"},{"key":"screenName","value":"White House hits #Turkey over vote 'intimidation'"}],[{"key":"sentiment","value":"#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP"}],[{"key":"wordcount","value":"https://t.co/DhAK3bXnX3"}],[{"key":"text","value":"2015-11-03 01:49:49"},{"key":"text","value":"karenbelliott"},{"key":"text","value":"neutral"},{"key":"text","value":"17"},{"key":"text","value":"5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech"}],[{"value":"2015-11-03 01:50:01"},{"value":"kpritch01"},{"value":"positivie"},{"value":"25"},{"value":"RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…"}],[{"value":"2015-11-03 01:50:17"},{"value":"MacDATAInst"},{"value":"positivie"},{"value":"18"},{"value":"Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG"}],[{"value":"2015-11-03 01:50:36"},{"value":"rbukralia"},{"value":"neutral"},{"value":"15"},{"value":"RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH"}],[{"value":"2015-11-03 01:50:39"},{"value":"BigDataTweetBot"},{"value":"neutral"},{"value":"17"},{"value":"RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC"}],[{"value":"2015-11-03 01:50:43"},{"value":"indi_solutions"},{"value":"neutral"},{"value":"24"},{"value":"RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…"}],[{"value":"2015-11-03 01:50:48"},{"value":"bigboardsio"},{"value":"positivie"},{"value":"25"},{"value":"RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…"}],[{"value":"2015-11-03 01:50:48"},{"value":"bigboardsio"},{"value":"neutral"},{"value":"16"},{"value":"RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe"}],[{"value":"2015-11-03 01:50:49"},{"value":"bigboardsio"},{"value":"neutral"},{"value":"20"},{"value":"RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…"}],[{"value":"2015-11-03 01:50:49"},{"value":"discovertext"},{"value":"positivie"},{"value":"15"},{"value":"Visit @Texifer at the @BigDataTechCon the \"how to\" technical training conference for #bigdata professionals."}],[{"value":"2015-11-03 01:50:49"},{"value":"bigboardsio"},{"value":"positivie"},{"value":"19"},{"value":"RT @IBMPowerSystems: Building a true system of insight that gets the most out of #BigData: https://t.co/ldhu5obrb9"}],[{"value":"2015-11-03 01:50:52"},{"value":"BigDataTweetBot"},{"value":"positivie"},{"value":"24"},{"value":"RT @GlobalBU: The world of #IoT in one #infographic! Data by @Livemint and @McKinsey_MGI https://t.co/N8aBHnBk8V https://t.co/dnB5JfXNVJ #B…"}],[{"value":"2015-11-03 01:50:57"},{"value":"BigDataTweetBot"},{"value":"neutral"},{"value":"16"},{"value":"RT @MacDATAInst: Andrew McArthur- creating an Internet of DNA to detect emerging threats through #BigData, #bibcmcmaster"}],[{"value":"2015-11-03 01:50:59"},{"value":"texifter"},{"value":"neutral"},{"value":"17"},{"value":"RT @BigDataTechCon: We hope you enjoyed today's #BigData tutorials. See you tomorrow for more #BigDataTechCon!"}],[{"value":"2015-11-03 01:51:09"},{"value":"jknauer"},{"value":"neutral"},{"value":"17"},{"value":"Using @rhiza & #bigdata to move beyond ineffective stereotyping in marketing campaigns: https://t.co/py8CLEEVPR in @SmartDataCo"}],[{"value":"2015-11-03 01:51:09"},{"value":"NeuvooAdmAtl"},{"value":"negative"},{"value":"19"},{"value":"NTT DATA is hiring a #Hadoop #Administrator, apply now! #Atlanta #jobs https://t.co/ji5zzCBNMh https://t.co/FiIg4schcd"}],[{"value":"2015-11-03 01:51:24"},{"value":"HXCostello5"},{"value":"neutral"},{"value":"16"},{"value":"RT @89Degrees: Learn more about our hosted enterprise hadoop platform #hortonworks #sasanalytics "}],[{"value":"https://t.co/fZIfz1qMoT"}],[{"value":"2015-11-03 01:51:26"},{"value":"MacDATAInst"},{"value":"negative"},{"value":"9"},{"value":"\"Big data is our crystal ball\"- #BigData #bibcmcmaster"}],[{"value":"2015-11-03 01:51:45"},{"value":"Nik_Caven"},{"value":"positivie"},{"value":"23"},{"value":"RT @SanDiskDataCtr: Will 2016 be the year for #BigData applications on flash? https://t.co/VYUqjLDrss"}]],"columnNames":[{"name":"created","index":0,"aggr":"sum"},{"name":"screenName","index":1,"aggr":"sum"},{"name":"sentiment","index":2,"aggr":"sum"},{"name":"wordcount","index":3,"aggr":"sum"},{"name":"text","index":4,"aggr":"sum"}],"rows":[["2015-11-03 01:49:44","Hanar_Marouf","neutral","18","White House hits #Turkey over vote 'intimidation'"],["#YPJ #YPG #Kobane #TwitterKurds #turkeyelections #Turkeyvotes #HDP"],["https://t.co/DhAK3bXnX3"],["2015-11-03 01:49:49","karenbelliott","neutral","17","5 Disruptive Tech Trends That Could Dominate in 2016 -via @MatKim_ https://t.co/iwoH7G5RdP #bigdata #tech"],["2015-11-03 01:50:01","kpritch01","positivie","25","RT @qubit: That's what we like to hear. Great article on one of our customers @ShopDirect, on their #personalisation & #bigdata https://t.c…"],["2015-11-03 01:50:17","MacDATAInst","positivie","18","Wayne Cuervo - using analytics to reveal insights in the data -Cisco Canada #BigData #BigIdeasBeterCities https://t.co/PCBJGbHtZG"],["2015-11-03 01:50:36","rbukralia","neutral","15","RapidMiner's Big Data Predictive Analytics Goes Textual With AYLIEN. #BigData https://t.co/kfP5fABIeH"],["2015-11-03 01:50:39","BigDataTweetBot","neutral","17","RT @PortfolioBuzz: CityFALCON score gives top rated news for FREE #bigdata $AAPL $TSLA https://t.co/dPpKdbV6WC"],["2015-11-03 01:50:43","indi_solutions","neutral","24","RT @tedcoine: How to be successful with #BigData and #marketing with these 8 questions https://t.co/YB4XmvsYoy via @NatSchooler https://t.c…"],["2015-11-03 01:50:48","bigboardsio","positivie","25","RT @DU_Press: Most of what falls under the term #bigdata is in fact digital breadcrumbs collected by the #IoT. https://t.co/lNANiSi8Wp #Del…"],["2015-11-03 01:50:48","bigboardsio","neutral","16","RT @MSNewEngland: #BigData can aid companies of all sizes: https://t.co/mXlXEt1SLy via @MITSloan @BostonGlobe"],["2015-11-03 01:50:49","bigboardsio","neutral","20","RT @gtcomputing: #GeorgiaTech, @UNC will lead a national #BigData initiative for solving regional challenges https://t.co/fN6hrQGaMg https:…"],["2015-11-03 01:50:49","discovertext","positivie","15","Visit @Texifer at the @BigDataTechCon the \"how to\" technical training conference for #bigdata professionals."],["2015-11-03 01:50:49","bigboardsio","positivie","19","RT @IBMPowerSystems: Building a true system of insight that gets the most out of #BigData: https://t.co/ldhu5obrb9"],["2015-11-03 01:50:52","BigDataTweetBot","positivie","24","RT @GlobalBU: The world of #IoT in one #infographic! Data by @Livemint and @McKinsey_MGI https://t.co/N8aBHnBk8V https://t.co/dnB5JfXNVJ #B…"],["2015-11-03 01:50:57","BigDataTweetBot","neutral","16","RT @MacDATAInst: Andrew McArthur- creating an Internet of DNA to detect emerging threats through #BigData, #bibcmcmaster"],["2015-11-03 01:50:59","texifter","neutral","17","RT @BigDataTechCon: We hope you enjoyed today's #BigData tutorials. See you tomorrow for more #BigDataTechCon!"],["2015-11-03 01:51:09","jknauer","neutral","17","Using @rhiza & #bigdata to move beyond ineffective stereotyping in marketing campaigns: https://t.co/py8CLEEVPR in @SmartDataCo"],["2015-11-03 01:51:09","NeuvooAdmAtl","negative","19","NTT DATA is hiring a #Hadoop #Administrator, apply now! #Atlanta #jobs https://t.co/ji5zzCBNMh https://t.co/FiIg4schcd"],["2015-11-03 01:51:24","HXCostello5","neutral","16","RT @89Degrees: Learn more about our hosted enterprise hadoop platform #hortonworks #sasanalytics "],["https://t.co/fZIfz1qMoT"],["2015-11-03 01:51:26","MacDATAInst","negative","9","\"Big data is our crystal ball\"- #BigData #bibcmcmaster"],["2015-11-03 01:51:45","Nik_Caven","positivie","23","RT @SanDiskDataCtr: Will 2016 be the year for #BigData applications on flash? https://t.co/VYUqjLDrss"]]},"dateCreated":"2015-10-30T02:22:57+0000","dateStarted":"2015-11-03T01:55:35+0000","dateFinished":"2015-11-03T01:55:44+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:516"},{"text":"%sql\n\n--ploting sentiment\n\nselect sentiment(text) as sentiment, count(1) from tweets group by sentiment(text)","dateUpdated":"2015-11-03T01:56:07+0000","config":{"colWidth":12,"graph":{"mode":"pieChart","height":300,"optionOpen":false,"keys":[{"name":"sentiment","index":0,"aggr":"sum"}],"values":[{"name":"_c1","index":1,"aggr":"sum"}],"groups":[],"scatter":{"xAxis":{"name":"sentiment","index":0,"aggr":"sum"},"yAxis":{"name":"_c1","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/sql","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446513527434_2026791774","id":"20151103-011847_289533948","result":{"code":"SUCCESS","type":"TABLE","msg":"sentiment\t_c1\npositivie\t15\nnegative\t5\nneutral\t29\n","comment":"","msgTable":[[{"key":"_c1","value":"positivie"},{"key":"_c1","value":"15"}],[{"value":"negative"},{"value":"5"}],[{"value":"neutral"},{"value":"29"}]],"columnNames":[{"name":"sentiment","index":0,"aggr":"sum"},{"name":"_c1","index":1,"aggr":"sum"}],"rows":[["positivie","15"],["negative","5"],["neutral","29"]]},"dateCreated":"2015-11-03T01:18:47+0000","dateStarted":"2015-11-03T01:56:07+0000","dateFinished":"2015-11-03T01:56:31+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:517"},{"text":"%sql\n\n--show most common words for positive and negatives tweets\n\nselect word, sentiment, count(1) as cnt\nfrom \n(\n select from_unixtime(createdAt) as created, screenName, sentiment(text) as sentiment, wordcount(text) as wordcount, text from tweets\n) sub1\nlateral view explode(split(text, ' ')) t as word \nwhere sentiment <> 'neutral'\ngroup by word, sentiment\n--having count(1) > 1\norder by cnt desc\n\n","dateUpdated":"2015-11-03T01:56:52+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[{"name":"word","index":0,"aggr":"sum"}],"values":[{"name":"sentiment","index":1,"aggr":"sum"}],"groups":[],"scatter":{"xAxis":{"name":"word","index":0,"aggr":"sum"},"yAxis":{"name":"sentiment","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/sql","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446127819860_-1352999311","id":"20151029-141019_1920008596","result":{"code":"SUCCESS","type":"TABLE","msg":"word\tsentiment\tcnt\nthe\tpositivie\t23\nof\tpositivie\t15\nRT\tpositivie\t14\n#bigdata\tpositivie\t10\nto\tpositivie\t9\nin\tpositivie\t8\nis\tnegative\t7\non\tpositivie\t6\n#BigData\tpositivie\t5\nwhat\tpositivie\t4\nby\tpositivie\t4\na\tpositivie\t4\nis\tpositivie\t4\nterm\tpositivie\t4\nfalls\tpositivie\t3\ncollected\tpositivie\t3\n@DU_Press:\tpositivie\t3\nunder\tpositivie\t3\nMost\tpositivie\t3\nbreadcrumbs\tpositivie\t3\n&\tpositivie\t3\ndigital\tpositivie\t3\n#IoT.\tpositivie\t3\n#BigData\tnegative\t3\nmarket\tpositivie\t3\nfact\tpositivie\t3\n#IoT\tpositivie\t3\none\tpositivie\t3\nfor\tpositivie\t3\nyou\tnegative\t3\nour\tnegative\t2\nthat\tpositivie\t2\nAWS\tpositivie\t2\nThe\tpositivie\t2\nRT\tnegative\t2\ncharacteristics\tpositivie\t2\nhttps://t.c…\tpositivie\t2\nhttps://t.co/lNANiSi8Wp\tpositivie\t2\na\tnegative\t2\ndata\tnegative\t2\nleverage\tpositivie\t2\n:\tpositivie\t2\nTime\tnegative\t2\nbe\tpositivie\t2\n&\tnegative\t2\nData\tpositivie\t2\nissues\tpositivie\t2\n#Del…\tpositivie\t2\ncrystal\tnegative\t2\n\"Big\tnegative\t2\nworld\tpositivie\t2\nwe\tpositivie\t2\nball\"-\tnegative\t2\nyou\tpositivie\t2\nlatent\tpositivie\t2\n@ASIAIoT\tpositivie\t2\nIT\tpositivie\t2\n#bibcmcmaster\tnegative\t2\nprecision\tpositivie\t2\n#iot\tpositivie\t2\nunderstand\tpositivie\t2\ndevelop\tpositivie\t2\ncustomers\tpositivie\t1\n#mobile,\tpositivie\t1\nyour\tpositivie\t1\n-\tnegative\t1\ndepartments\tpositivie\t1\never\tpositivie\t1\nhttps://t.co/gZPsFWaMJW\tpositivie\t1\n#Hadoop?\tnegative\t1\n@retailwire:\tpositivie\t1\ndata\tpositivie\t1\n@Livemint\tpositivie\t1\nhttps://t.co/sEpgqoBytz\tpositivie\t1\nwith\tpositivie\t1\ntechnical\tpositivie\t1\nMathew\tnegative\t1\n\"Using\tpositivie\t1\nYap\tnegative\t1\nCan't\tnegative\t1\nthings\tpositivie\t1\nset\tpositivie\t1\nuse\tnegative\t1\nWill\tpositivie\t1\n@FarbodSaraf:\tpositivie\t1\nMoney\tnegative\t1\n#infographic!\tpositivie\t1\n#MENA\tpositivie\t1\nNOT\tnegative\t1\nCuervo\tpositivie\t1\nSingapore\tnegative\t1\nto\"\tpositivie\t1\nby\tnegative\t1\nhttps://t.co/N8aBHnBk8V\tpositivie\t1\nhttps://t.co/FiIg4schcd\tnegative\t1\nconference\tpositivie\t1\n#stratahadoop\tnegative\t1\ntrue\tpositivie\t1\nhttps://t.co/ldhu5obrb9\tpositivie\t1\nhttps://t.co/RE3…\tpositivie\t1\n#personalisation\tpositivie\t1\narticle\tpositivie\t1\n#BigData:\tpositivie\t1\ncan,\tnegative\t1\n#bigdata\tnegative\t1\nflash?\tpositivie\t1\nsystem\tpositivie\t1\nlike\tpositivie\t1\n#retail\tpositivie\t1\nhttps://t.co/dnB5JfXNVJ\tpositivie\t1\ndeployed\tnegative\t1\nTFOCS\tpositivie\t1\nSujit\tnegative\t1\nHow\tnegative\t1\nEntrepreneurship\tnegative\t1\nmight\tpositivie\t1\n@AWSstartups:\tpositivie\t1\nhappened\tpositivie\t1\nleader\tpositivie\t1\ninsight\tpositivie\t1\nDo\tnegative\t1\n#Atlanta\tnegative\t1\nhttps://t.co/0WklZxVX3V\tpositivie\t1\n#Administrator,\tnegative\t1\nshadow\tpositivie\t1\nhttps://t.co/PCBJGbHtZG\tpositivie\t1\nIf\tnegative\t1\n@BigdataProfiles\tnegative\t1\nVisit\tpositivie\t1\nThat's\tpositivie\t1\nSpark\tpositivie\t1\nanalytics\tpositivie\t1\nhowe…\tnegative\t1\nprofessionals.\tpositivie\t1\n@dr_morton:\tnegative\t1\nCanada\tpositivie\t1\nhttps://t.co/VYUqjLDrss\n\n@Tegile\tpositivie\t1\nProcessing\tpositivie\t1\n@BernardMarr:\tpositivie\t1\n#cloud,\tpositivie\t1\n#jobs\tnegative\t1\n@dataCloud01\tpositivie\t1\n‘Internet\tpositivie\t1\nengagement\tnegative\t1\nbecome\tpositivie\t1\nheard\tpositivie\t1\nPipelines\"\tpositivie\t1\nrole\tpositivie\t1\nhear.\tpositivie\t1\nhave\tpositivie\t1\npeople\tpositivie\t1\nbest\tpositivie\t1\n#feedly\tpositivie\t1\n@MacDATAInst:\tnegative\t1\n@mimosmalaysia:\tpositivie\t1\nit\tnegative\t1\n#InternetOfThings\n\nhttps://t.co/FbSU0AzBf0\tpositivie\t1\nhttps://t.co/gVu8aN7y5S\tnegative\t1\nLambda\tpositivie\t1\npush\tpositivie\t1\nhave\tnegative\t1\n#BigIdeasBeterCities\tpositivie\t1\nage\tpositivie\t1\nThings’\tpositivie\t1\nYew\tnegative\t1\nNTT\tnegative\t1\nor\tnegative\t1\nat\tpositivie\t1\nsolutions\tpositivie\t1\n#datacenter\tpositivie\t1\nBuilding\tpositivie\t1\nour\tpositivie\t1\nboost\tnegative\t1\nOptimization\tpositivie\t1\n(87%)\tpositivie\t1\n#analytics\tpositivie\t1\nbuy.\tnegative\t1\nnow!\tnegative\t1\nAt\tpositivie\t1\nyear\tpositivie\t1\ntheir\tpositivie\t1\n#BigData?\nhttps://t.co/VKZpIhJRf2\tpositivie\t1\nhelp\tpositivie\t1\n-\tpositivie\t1\ngoing\tpositivie\t1\n@GlenGilmore:\tpositivie\t1\n\n\nComputing\tnegative\t1\ndo,\tnegative\t1\n@qubit:\tpositivie\t1\ntalk\tnegative\t1\n#Hadoop\tnegative\t1\nto\tnegative\t1\nused\tnegative\t1\n@ShopDirect,\tpositivie\t1\nhttps:…\tpositivie\t1\nbuyer\tpositivie\t1\ncan\tpositivie\t1\n\"Announcing\tpositivie\t1\napplications\tpositivie\t1\ngets\tpositivie\t1\nCRITICAL\tnegative\t1\nthat\tnegative\t1\nHadoop-as-a-Service?\tnegative\t1\nnot\tpositivie\t1\n@BigDataTechCon\tpositivie\t1\npath?\tpositivie\t1\n#B…\tpositivie\t1\nin-house\tnegative\t1\nreveal\tpositivie\t1\nhttps://t.co/ji5zzCBNMh\tnegative\t1\nhttps://t.co/iIyV3DdT1w\tpositivie\t1\ninnovations\tpositivie\t1\n@dataCloud01:\tpositivie\t1\nneeds.\tpositivie\t1\nNew\tpositivie\t1\n2016\tpositivie\t1\ninsights\tpositivie\t1\n@SanDiskDataCtr:\tpositivie\t1\nand\tpositivie\t1\nAre\tpositivie\t1\ndown\tpositivie\t1\n@PayPal\tnegative\t1\n#MiddleEast\tpositivie\t1\nusing\tpositivie\t1\ndo\tnegative\t1\nMoney...\n\nIn\tnegative\t1\nWhat\tpositivie\t1\nout\tpositivie\t1\nhiring\tnegative\t1\nconsumer\tnegative\t1\nWayne\tpositivie\t1\nGoh\tnegative\t1\n@Texifer\tpositivie\t1\nBlog!\tpositivie\t1\ntraining\tpositivie\t1\nEvent-driven\tpositivie\t1\n@GlobalBU:\tpositivie\t1\n-Cisco\tpositivie\t1\n\"how\tpositivie\t1\nwrong\tpositivie\t1\nmost\tpositivie\t1\nGreat\tpositivie\t1\n@IBMPowerSystems:\tpositivie\t1\nDATA\tnegative\t1\n…\tpositivie\t1\n@McKinsey_MGI\tpositivie\t1\nmajority\tpositivie\t1\napply\tnegative\t1\nPackage\"\tpositivie\t1\nResource\tnegative\t1\n:https://t.co/GRhj…\tpositivie\t1\n","comment":"@Tegile\tpositivie\t1Processing\tpositivie\t1@BernardMarr:\tpositivie\t1#cloud,\tpositivie\t1#jobs\tnegative\t1@dataCloud01\tpositivie\t1‘Internet\tpositivie\t1engagement\tnegative\t1become\tpositivie\t1heard\tpositivie\t1Pipelines\"\tpositivie\t1role\tpositivie\t1hear.\tpositivie\t1have\tpositivie\t1people\tpositivie\t1best\tpositivie\t1#feedly\tpositivie\t1@MacDATAInst:\tnegative\t1@mimosmalaysia:\tpositivie\t1it\tnegative\t1#InternetOfThingshttps://t.co/FbSU0AzBf0\tpositivie\t1https://t.co/gVu8aN7y5S\tnegative\t1Lambda\tpositivie\t1push\tpositivie\t1have\tnegative\t1#BigIdeasBeterCities\tpositivie\t1age\tpositivie\t1Things’\tpositivie\t1Yew\tnegative\t1NTT\tnegative\t1or\tnegative\t1at\tpositivie\t1solutions\tpositivie\t1#datacenter\tpositivie\t1Building\tpositivie\t1our\tpositivie\t1boost\tnegative\t1Optimization\tpositivie\t1(87%)\tpositivie\t1#analytics\tpositivie\t1buy.\tnegative\t1now!\tnegative\t1At\tpositivie\t1year\tpositivie\t1their\tpositivie\t1#BigData?https://t.co/VKZpIhJRf2\tpositivie\t1help\tpositivie\t1-\tpositivie\t1going\tpositivie\t1@GlenGilmore:\tpositivie\t1Computing\tnegative\t1do,\tnegative\t1@qubit:\tpositivie\t1talk\tnegative\t1#Hadoop\tnegative\t1to\tnegative\t1used\tnegative\t1@ShopDirect,\tpositivie\t1https:…\tpositivie\t1buyer\tpositivie\t1can\tpositivie\t1\"Announcing\tpositivie\t1applications\tpositivie\t1gets\tpositivie\t1CRITICAL\tnegative\t1that\tnegative\t1Hadoop-as-a-Service?\tnegative\t1not\tpositivie\t1@BigDataTechCon\tpositivie\t1path?\tpositivie\t1#B…\tpositivie\t1in-house\tnegative\t1reveal\tpositivie\t1https://t.co/ji5zzCBNMh\tnegative\t1https://t.co/iIyV3DdT1w\tpositivie\t1innovations\tpositivie\t1@dataCloud01:\tpositivie\t1needs.\tpositivie\t1New\tpositivie\t12016\tpositivie\t1insights\tpositivie\t1@SanDiskDataCtr:\tpositivie\t1and\tpositivie\t1Are\tpositivie\t1down\tpositivie\t1@PayPal\tnegative\t1#MiddleEast\tpositivie\t1using\tpositivie\t1do\tnegative\t1Money...In\tnegative\t1What\tpositivie\t1out\tpositivie\t1hiring\tnegative\t1consumer\tnegative\t1Wayne\tpositivie\t1Goh\tnegative\t1@Texifer\tpositivie\t1Blog!\tpositivie\t1training\tpositivie\t1Event-driven\tpositivie\t1@GlobalBU:\tpositivie\t1-Cisco\tpositivie\t1\"how\tpositivie\t1wrong\tpositivie\t1most\tpositivie\t1Great\tpositivie\t1@IBMPowerSystems:\tpositivie\t1DATA\tnegative\t1…\tpositivie\t1@McKinsey_MGI\tpositivie\t1majority\tpositivie\t1apply\tnegative\t1Package\"\tpositivie\t1Resource\tnegative\t1:https://t.co/GRhj…\tpositivie\t1","msgTable":[[{"key":"sentiment","value":"the"},{"key":"sentiment","value":"positivie"},{"key":"sentiment","value":"23"}],[{"key":"cnt","value":"of"},{"key":"cnt","value":"positivie"},{"key":"cnt","value":"15"}],[{"value":"RT"},{"value":"positivie"},{"value":"14"}],[{"value":"#bigdata"},{"value":"positivie"},{"value":"10"}],[{"value":"to"},{"value":"positivie"},{"value":"9"}],[{"value":"in"},{"value":"positivie"},{"value":"8"}],[{"value":"is"},{"value":"negative"},{"value":"7"}],[{"value":"on"},{"value":"positivie"},{"value":"6"}],[{"value":"#BigData"},{"value":"positivie"},{"value":"5"}],[{"value":"what"},{"value":"positivie"},{"value":"4"}],[{"value":"by"},{"value":"positivie"},{"value":"4"}],[{"value":"a"},{"value":"positivie"},{"value":"4"}],[{"value":"is"},{"value":"positivie"},{"value":"4"}],[{"value":"term"},{"value":"positivie"},{"value":"4"}],[{"value":"falls"},{"value":"positivie"},{"value":"3"}],[{"value":"collected"},{"value":"positivie"},{"value":"3"}],[{"value":"@DU_Press:"},{"value":"positivie"},{"value":"3"}],[{"value":"under"},{"value":"positivie"},{"value":"3"}],[{"value":"Most"},{"value":"positivie"},{"value":"3"}],[{"value":"breadcrumbs"},{"value":"positivie"},{"value":"3"}],[{"value":"&"},{"value":"positivie"},{"value":"3"}],[{"value":"digital"},{"value":"positivie"},{"value":"3"}],[{"value":"#IoT."},{"value":"positivie"},{"value":"3"}],[{"value":"#BigData"},{"value":"negative"},{"value":"3"}],[{"value":"market"},{"value":"positivie"},{"value":"3"}],[{"value":"fact"},{"value":"positivie"},{"value":"3"}],[{"value":"#IoT"},{"value":"positivie"},{"value":"3"}],[{"value":"one"},{"value":"positivie"},{"value":"3"}],[{"value":"for"},{"value":"positivie"},{"value":"3"}],[{"value":"you"},{"value":"negative"},{"value":"3"}],[{"value":"our"},{"value":"negative"},{"value":"2"}],[{"value":"that"},{"value":"positivie"},{"value":"2"}],[{"value":"AWS"},{"value":"positivie"},{"value":"2"}],[{"value":"The"},{"value":"positivie"},{"value":"2"}],[{"value":"RT"},{"value":"negative"},{"value":"2"}],[{"value":"characteristics"},{"value":"positivie"},{"value":"2"}],[{"value":"https://t.c…"},{"value":"positivie"},{"value":"2"}],[{"value":"https://t.co/lNANiSi8Wp"},{"value":"positivie"},{"value":"2"}],[{"value":"a"},{"value":"negative"},{"value":"2"}],[{"value":"data"},{"value":"negative"},{"value":"2"}],[{"value":"leverage"},{"value":"positivie"},{"value":"2"}],[{"value":":"},{"value":"positivie"},{"value":"2"}],[{"value":"Time"},{"value":"negative"},{"value":"2"}],[{"value":"be"},{"value":"positivie"},{"value":"2"}],[{"value":"&"},{"value":"negative"},{"value":"2"}],[{"value":"Data"},{"value":"positivie"},{"value":"2"}],[{"value":"issues"},{"value":"positivie"},{"value":"2"}],[{"value":"#Del…"},{"value":"positivie"},{"value":"2"}],[{"value":"crystal"},{"value":"negative"},{"value":"2"}],[{"value":"\"Big"},{"value":"negative"},{"value":"2"}],[{"value":"world"},{"value":"positivie"},{"value":"2"}],[{"value":"we"},{"value":"positivie"},{"value":"2"}],[{"value":"ball\"-"},{"value":"negative"},{"value":"2"}],[{"value":"you"},{"value":"positivie"},{"value":"2"}],[{"value":"latent"},{"value":"positivie"},{"value":"2"}],[{"value":"@ASIAIoT"},{"value":"positivie"},{"value":"2"}],[{"value":"IT"},{"value":"positivie"},{"value":"2"}],[{"value":"#bibcmcmaster"},{"value":"negative"},{"value":"2"}],[{"value":"precision"},{"value":"positivie"},{"value":"2"}],[{"value":"#iot"},{"value":"positivie"},{"value":"2"}],[{"value":"understand"},{"value":"positivie"},{"value":"2"}],[{"value":"develop"},{"value":"positivie"},{"value":"2"}],[{"value":"customers"},{"value":"positivie"},{"value":"1"}],[{"value":"#mobile,"},{"value":"positivie"},{"value":"1"}],[{"value":"your"},{"value":"positivie"},{"value":"1"}],[{"value":"-"},{"value":"negative"},{"value":"1"}],[{"value":"departments"},{"value":"positivie"},{"value":"1"}],[{"value":"ever"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/gZPsFWaMJW"},{"value":"positivie"},{"value":"1"}],[{"value":"#Hadoop?"},{"value":"negative"},{"value":"1"}],[{"value":"@retailwire:"},{"value":"positivie"},{"value":"1"}],[{"value":"data"},{"value":"positivie"},{"value":"1"}],[{"value":"@Livemint"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/sEpgqoBytz"},{"value":"positivie"},{"value":"1"}],[{"value":"with"},{"value":"positivie"},{"value":"1"}],[{"value":"technical"},{"value":"positivie"},{"value":"1"}],[{"value":"Mathew"},{"value":"negative"},{"value":"1"}],[{"value":"\"Using"},{"value":"positivie"},{"value":"1"}],[{"value":"Yap"},{"value":"negative"},{"value":"1"}],[{"value":"Can't"},{"value":"negative"},{"value":"1"}],[{"value":"things"},{"value":"positivie"},{"value":"1"}],[{"value":"set"},{"value":"positivie"},{"value":"1"}],[{"value":"use"},{"value":"negative"},{"value":"1"}],[{"value":"Will"},{"value":"positivie"},{"value":"1"}],[{"value":"@FarbodSaraf:"},{"value":"positivie"},{"value":"1"}],[{"value":"Money"},{"value":"negative"},{"value":"1"}],[{"value":"#infographic!"},{"value":"positivie"},{"value":"1"}],[{"value":"#MENA"},{"value":"positivie"},{"value":"1"}],[{"value":"NOT"},{"value":"negative"},{"value":"1"}],[{"value":"Cuervo"},{"value":"positivie"},{"value":"1"}],[{"value":"Singapore"},{"value":"negative"},{"value":"1"}],[{"value":"to\""},{"value":"positivie"},{"value":"1"}],[{"value":"by"},{"value":"negative"},{"value":"1"}],[{"value":"https://t.co/N8aBHnBk8V"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/FiIg4schcd"},{"value":"negative"},{"value":"1"}],[{"value":"conference"},{"value":"positivie"},{"value":"1"}],[{"value":"#stratahadoop"},{"value":"negative"},{"value":"1"}],[{"value":"true"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/ldhu5obrb9"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/RE3…"},{"value":"positivie"},{"value":"1"}],[{"value":"#personalisation"},{"value":"positivie"},{"value":"1"}],[{"value":"article"},{"value":"positivie"},{"value":"1"}],[{"value":"#BigData:"},{"value":"positivie"},{"value":"1"}],[{"value":"can,"},{"value":"negative"},{"value":"1"}],[{"value":"#bigdata"},{"value":"negative"},{"value":"1"}],[{"value":"flash?"},{"value":"positivie"},{"value":"1"}],[{"value":"system"},{"value":"positivie"},{"value":"1"}],[{"value":"like"},{"value":"positivie"},{"value":"1"}],[{"value":"#retail"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/dnB5JfXNVJ"},{"value":"positivie"},{"value":"1"}],[{"value":"deployed"},{"value":"negative"},{"value":"1"}],[{"value":"TFOCS"},{"value":"positivie"},{"value":"1"}],[{"value":"Sujit"},{"value":"negative"},{"value":"1"}],[{"value":"How"},{"value":"negative"},{"value":"1"}],[{"value":"Entrepreneurship"},{"value":"negative"},{"value":"1"}],[{"value":"might"},{"value":"positivie"},{"value":"1"}],[{"value":"@AWSstartups:"},{"value":"positivie"},{"value":"1"}],[{"value":"happened"},{"value":"positivie"},{"value":"1"}],[{"value":"leader"},{"value":"positivie"},{"value":"1"}],[{"value":"insight"},{"value":"positivie"},{"value":"1"}],[{"value":"Do"},{"value":"negative"},{"value":"1"}],[{"value":"#Atlanta"},{"value":"negative"},{"value":"1"}],[{"value":"https://t.co/0WklZxVX3V"},{"value":"positivie"},{"value":"1"}],[{"value":"#Administrator,"},{"value":"negative"},{"value":"1"}],[{"value":"shadow"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/PCBJGbHtZG"},{"value":"positivie"},{"value":"1"}],[{"value":"If"},{"value":"negative"},{"value":"1"}],[{"value":"@BigdataProfiles"},{"value":"negative"},{"value":"1"}],[{"value":"Visit"},{"value":"positivie"},{"value":"1"}],[{"value":"That's"},{"value":"positivie"},{"value":"1"}],[{"value":"Spark"},{"value":"positivie"},{"value":"1"}],[{"value":"analytics"},{"value":"positivie"},{"value":"1"}],[{"value":"howe…"},{"value":"negative"},{"value":"1"}],[{"value":"professionals."},{"value":"positivie"},{"value":"1"}],[{"value":"@dr_morton:"},{"value":"negative"},{"value":"1"}],[{"value":"Canada"},{"value":"positivie"},{"value":"1"}],[{"value":"https://t.co/VYUqjLDrss"}]],"columnNames":[{"name":"word","index":0,"aggr":"sum"},{"name":"sentiment","index":1,"aggr":"sum"},{"name":"cnt","index":2,"aggr":"sum"}],"rows":[["the","positivie","23"],["of","positivie","15"],["RT","positivie","14"],["#bigdata","positivie","10"],["to","positivie","9"],["in","positivie","8"],["is","negative","7"],["on","positivie","6"],["#BigData","positivie","5"],["what","positivie","4"],["by","positivie","4"],["a","positivie","4"],["is","positivie","4"],["term","positivie","4"],["falls","positivie","3"],["collected","positivie","3"],["@DU_Press:","positivie","3"],["under","positivie","3"],["Most","positivie","3"],["breadcrumbs","positivie","3"],["&","positivie","3"],["digital","positivie","3"],["#IoT.","positivie","3"],["#BigData","negative","3"],["market","positivie","3"],["fact","positivie","3"],["#IoT","positivie","3"],["one","positivie","3"],["for","positivie","3"],["you","negative","3"],["our","negative","2"],["that","positivie","2"],["AWS","positivie","2"],["The","positivie","2"],["RT","negative","2"],["characteristics","positivie","2"],["https://t.c…","positivie","2"],["https://t.co/lNANiSi8Wp","positivie","2"],["a","negative","2"],["data","negative","2"],["leverage","positivie","2"],[":","positivie","2"],["Time","negative","2"],["be","positivie","2"],["&","negative","2"],["Data","positivie","2"],["issues","positivie","2"],["#Del…","positivie","2"],["crystal","negative","2"],["\"Big","negative","2"],["world","positivie","2"],["we","positivie","2"],["ball\"-","negative","2"],["you","positivie","2"],["latent","positivie","2"],["@ASIAIoT","positivie","2"],["IT","positivie","2"],["#bibcmcmaster","negative","2"],["precision","positivie","2"],["#iot","positivie","2"],["understand","positivie","2"],["develop","positivie","2"],["customers","positivie","1"],["#mobile,","positivie","1"],["your","positivie","1"],["-","negative","1"],["departments","positivie","1"],["ever","positivie","1"],["https://t.co/gZPsFWaMJW","positivie","1"],["#Hadoop?","negative","1"],["@retailwire:","positivie","1"],["data","positivie","1"],["@Livemint","positivie","1"],["https://t.co/sEpgqoBytz","positivie","1"],["with","positivie","1"],["technical","positivie","1"],["Mathew","negative","1"],["\"Using","positivie","1"],["Yap","negative","1"],["Can't","negative","1"],["things","positivie","1"],["set","positivie","1"],["use","negative","1"],["Will","positivie","1"],["@FarbodSaraf:","positivie","1"],["Money","negative","1"],["#infographic!","positivie","1"],["#MENA","positivie","1"],["NOT","negative","1"],["Cuervo","positivie","1"],["Singapore","negative","1"],["to\"","positivie","1"],["by","negative","1"],["https://t.co/N8aBHnBk8V","positivie","1"],["https://t.co/FiIg4schcd","negative","1"],["conference","positivie","1"],["#stratahadoop","negative","1"],["true","positivie","1"],["https://t.co/ldhu5obrb9","positivie","1"],["https://t.co/RE3…","positivie","1"],["#personalisation","positivie","1"],["article","positivie","1"],["#BigData:","positivie","1"],["can,","negative","1"],["#bigdata","negative","1"],["flash?","positivie","1"],["system","positivie","1"],["like","positivie","1"],["#retail","positivie","1"],["https://t.co/dnB5JfXNVJ","positivie","1"],["deployed","negative","1"],["TFOCS","positivie","1"],["Sujit","negative","1"],["How","negative","1"],["Entrepreneurship","negative","1"],["might","positivie","1"],["@AWSstartups:","positivie","1"],["happened","positivie","1"],["leader","positivie","1"],["insight","positivie","1"],["Do","negative","1"],["#Atlanta","negative","1"],["https://t.co/0WklZxVX3V","positivie","1"],["#Administrator,","negative","1"],["shadow","positivie","1"],["https://t.co/PCBJGbHtZG","positivie","1"],["If","negative","1"],["@BigdataProfiles","negative","1"],["Visit","positivie","1"],["That's","positivie","1"],["Spark","positivie","1"],["analytics","positivie","1"],["howe…","negative","1"],["professionals.","positivie","1"],["@dr_morton:","negative","1"],["Canada","positivie","1"],["https://t.co/VYUqjLDrss"]]},"dateCreated":"2015-10-29T02:10:19+0000","dateStarted":"2015-11-03T01:56:52+0000","dateFinished":"2015-11-03T01:57:10+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:518"},{"text":"%sql\n\nselect minute, sentiment, count(1) as cnt from\n(\n select substr(from_unixtime(createdAt), 0, 16) as minute, screenName, sentiment(text) as sentiment, wordcount(text) as wordcount, text from tweets\n) sub1\ngroup by minute, sentiment\norder by minute","dateUpdated":"2015-11-03T01:57:33+0000","config":{"colWidth":12,"graph":{"mode":"multiBarChart","height":300,"optionOpen":false,"keys":[{"name":"minute","index":0,"aggr":"sum"}],"values":[{"name":"cnt","index":2,"aggr":"sum"}],"groups":[{"name":"sentiment","index":1,"aggr":"sum"}],"scatter":{"xAxis":{"name":"minute","index":0,"aggr":"sum"},"yAxis":{"name":"sentiment","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/sql","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446228759254_-339691493","id":"20151030-181239_1047952153","result":{"code":"SUCCESS","type":"TABLE","msg":"minute\tsentiment\tcnt\n2015-11-03 01:49\tneutral\t2\n2015-11-03 01:50\tneutral\t7\n2015-11-03 01:50\tpositivie\t6\n2015-11-03 01:51\tnegative\t2\n2015-11-03 01:51\tneutral\t2\n2015-11-03 01:51\tpositivie\t2\n2015-11-03 01:52\tpositivie\t1\n2015-11-03 01:52\tnegative\t2\n2015-11-03 01:52\tneutral\t2\n2015-11-03 01:53\tneutral\t9\n2015-11-03 01:53\tpositivie\t2\n2015-11-03 01:54\tpositivie\t3\n2015-11-03 01:54\tneutral\t2\n2015-11-03 01:55\tneutral\t4\n2015-11-03 01:55\tnegative\t1\n2015-11-03 01:55\tpositivie\t1\n2015-11-03 01:56\tpositivie\t3\n2015-11-03 01:56\tneutral\t7\n2015-11-03 01:56\tnegative\t2\n2015-11-03 01:57\tneutral\t5\n","comment":"","msgTable":[[{"key":"sentiment","value":"2015-11-03 01:49"},{"key":"sentiment","value":"neutral"},{"key":"sentiment","value":"2"}],[{"key":"cnt","value":"2015-11-03 01:50"},{"key":"cnt","value":"neutral"},{"key":"cnt","value":"7"}],[{"value":"2015-11-03 01:50"},{"value":"positivie"},{"value":"6"}],[{"value":"2015-11-03 01:51"},{"value":"negative"},{"value":"2"}],[{"value":"2015-11-03 01:51"},{"value":"neutral"},{"value":"2"}],[{"value":"2015-11-03 01:51"},{"value":"positivie"},{"value":"2"}],[{"value":"2015-11-03 01:52"},{"value":"positivie"},{"value":"1"}],[{"value":"2015-11-03 01:52"},{"value":"negative"},{"value":"2"}],[{"value":"2015-11-03 01:52"},{"value":"neutral"},{"value":"2"}],[{"value":"2015-11-03 01:53"},{"value":"neutral"},{"value":"9"}],[{"value":"2015-11-03 01:53"},{"value":"positivie"},{"value":"2"}],[{"value":"2015-11-03 01:54"},{"value":"positivie"},{"value":"3"}],[{"value":"2015-11-03 01:54"},{"value":"neutral"},{"value":"2"}],[{"value":"2015-11-03 01:55"},{"value":"neutral"},{"value":"4"}],[{"value":"2015-11-03 01:55"},{"value":"negative"},{"value":"1"}],[{"value":"2015-11-03 01:55"},{"value":"positivie"},{"value":"1"}],[{"value":"2015-11-03 01:56"},{"value":"positivie"},{"value":"3"}],[{"value":"2015-11-03 01:56"},{"value":"neutral"},{"value":"7"}],[{"value":"2015-11-03 01:56"},{"value":"negative"},{"value":"2"}],[{"value":"2015-11-03 01:57"},{"value":"neutral"},{"value":"5"}]],"columnNames":[{"name":"minute","index":0,"aggr":"sum"},{"name":"sentiment","index":1,"aggr":"sum"},{"name":"cnt","index":2,"aggr":"sum"}],"rows":[["2015-11-03 01:49","neutral","2"],["2015-11-03 01:50","neutral","7"],["2015-11-03 01:50","positivie","6"],["2015-11-03 01:51","negative","2"],["2015-11-03 01:51","neutral","2"],["2015-11-03 01:51","positivie","2"],["2015-11-03 01:52","positivie","1"],["2015-11-03 01:52","negative","2"],["2015-11-03 01:52","neutral","2"],["2015-11-03 01:53","neutral","9"],["2015-11-03 01:53","positivie","2"],["2015-11-03 01:54","positivie","3"],["2015-11-03 01:54","neutral","2"],["2015-11-03 01:55","neutral","4"],["2015-11-03 01:55","negative","1"],["2015-11-03 01:55","positivie","1"],["2015-11-03 01:56","positivie","3"],["2015-11-03 01:56","neutral","7"],["2015-11-03 01:56","negative","2"],["2015-11-03 01:57","neutral","5"]]},"dateCreated":"2015-10-30T06:12:39+0000","dateStarted":"2015-11-03T01:57:33+0000","dateFinished":"2015-11-03T01:58:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:519"},{"config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"enabled":true,"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1446514526595_-527149523","id":"20151103-013526_1121731942","dateCreated":"2015-11-03T01:35:26+0000","status":"READY","progressUpdateIntervalMs":500,"$$hashKey":"object:520"}],"name":"Demos / Spark / Streaming / Twitter","id":"2B522V3X8","angularObjects":{},"config":{"looknfeel":"default"},"info":{}}