You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by mf...@apache.org on 2014/06/23 20:22:05 UTC

[01/45] Datasift mapping to activity fixes and extensions

Repository: incubator-streams
Updated Branches:
  refs/heads/master bce1657d4 -> c7cbecdcd


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java b/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
index 187d2b0..218b9ba 100644
--- a/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
+++ b/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
@@ -71,6 +71,7 @@ public class RFC3339Utils {
     static {
         DateTimeParser[] parsers = new DateTimeParser[]{
                 DateTimeFormat.forPattern("EEE MMM dd HH:mm:ss Z yyyy").withZoneUTC().getParser(),
+                DateTimeFormat.forPattern("EEE, dd MMM yyyy HH:mm:ss Z").getParser(),
                 DateTimeFormat.forPattern("dd MMMM yyyy HH:mm:ss").withZoneUTC().getParser(),
                 DateTimeFormat.forPattern("yyyyMMdd").withZoneUTC().getParser(),
                 DateTimeFormat.forPattern("dd-MM-yyyy").withZoneUTC().getParser(),

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
index 28f297c..2337c39 100644
--- a/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
+++ b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
@@ -20,6 +20,6 @@ public class StreamsDateTimeDeserializer extends StdDeserializer<DateTime> imple
 
     @Override
     public DateTime deserialize(JsonParser jpar, DeserializationContext context) throws IOException {
-        return RFC3339Utils.getInstance().parseUTC(jpar.getValueAsString());
+        return RFC3339Utils.getInstance().parseToUTC(jpar.getValueAsString());
     }
 }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
----------------------------------------------------------------------
diff --git a/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java b/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
index ff72e1b..7ea82b6 100644
--- a/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
+++ b/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
@@ -130,8 +130,8 @@ public class StreamsProviderTask extends BaseStreamsTask implements DatumStatusC
                             }
                             flushResults(resultSet);
                             // the way this works needs to change...
-                            if(zeros > maxZeros)
-                                this.keepRunning.set(false);
+//                            if(zeros > maxZeros)
+//                                this.keepRunning.set(false);
                             Thread.sleep(DEFAULT_SLEEP_TIME_MS);
                         } catch (InterruptedException e) {
                             this.keepRunning.set(false);


[10/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
new file mode 100644
index 0000000..96f5174
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
@@ -0,0 +1,1547 @@
+{"amazon":{"anchor":"533193","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br />\n<br />\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\nI'm running a single instance PHP 5.5 environment.<br />\n<br />\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\n<br />\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br /
 >\n<br />\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\n<br />\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\n<br />\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\n<br />\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\n(SSLRequireSSL takes precedence over Auth.)<br />\n<br />\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https://\">https://</a> domain.<br />\n<br />\nI guess it has to do with the proxy setup?:<br />\n<pre class=\"jive-pre\"><code class=\"jive
 -code jive-java\">ProxyPass / http:<font color=\"darkgreen\">//localhost:80/ retry=0</font>\nProxyPassReverse / http:<font color=\"darkgreen\">//localhost:80/</font>\nProxyPreserveHost on\n</code></pre><br />\nIs there anyway I can get this to work?<br />\n<br />\nThanks!<br />\n<br />\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\n<br />\n\n                </div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","foru
 mid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193","links":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n          
       Hi there,<br />\n<br />\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\nI'm running a single instance PHP 5.5 environment.<br />\n<br />\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\n<br />\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\n<br />\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\n<br />\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authenticati
 on.<br />\n<br />\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\n<br />\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\n(SSLRequireSSL takes precedence over Auth.)<br />\n<br />\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https://\">https://</a> domain.<br />\n<br />\nI guess it has to do with the proxy setup?:<br />\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass / http:<font color=\"darkgreen\">//localhost:80/ retry=0</font>\nProxyPassReverse / http:<font color=\"darkgreen\">//localhost:80/</font>\nProxyPreserveHost on\n</code></pre><br />\nIs there anyway I can get this to work?<br />\n<br />\nThanks!<br />\n<br />\nps: I tried both the 2013.09 
 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\n<br />\n\n                </div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 0
 1 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text/html","text/html","text/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.Singl
 eInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+{"amazon":{"anchor":"533271","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/fo
 rum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL 
 directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+{"blog":{"atomversion":"1.0","author":{"name":"basyura"},"blog":{"link":"http://d.hatena.ne.jp/basyura/","title":"basyura's blog"},"blogid":"55821125","content":"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass /sample http://localhost:3000/sample\n  ProxyPassReverse /sample http://localhost:3000/sample\n</VirtualHost></pre><p>config/environments/development.rb</p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"</span><span class=\"synConstant\">/sample</span><span class=\"synSpecial\">\"</span>\n</pre><p>起動</p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \"/sample/assets/\"</code> と定義すればいいのかと思ってたけど違ったみ
 たい。こっちはどういう時に使うのかよく分からんかった。</p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","domain":"d.hatena.ne.jp","guid":"1e2c1f54e6c6548c4381b6e9a6361cea","id":"1e3b279c65cbac00e0729be4b09bfd5c","lang":"ja","link":"http://blog.basyura.org/entry/2014/03/23/195624","links":["http://localhost:3000","http://localhost/sample","http://localhost:3000/sample"],"parseddate":"Sun, 23 Mar 2014 15:32:03 +0000","postid":"1426a00d-f33f-4144-b396-5160bda65a31","title":"apache + rails をサブディレクトリで動かしたい","type":"post","updated":"Sun, 23 Mar 2014 10:56:24 +0000"},"interaction":{"author":{"name":"basyura"},"content":"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass /sample http://localhost:3000/sample\n  ProxyPassReverse /sample http://localhost:3000/sample\
 n</VirtualHost></pre><p>config/environments/development.rb</p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"</span><span class=\"synConstant\">/sample</span><span class=\"synSpecial\">\"</span>\n</pre><p>起動</p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \"/sample/assets/\"</code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","id":"1e3b279c65cbac00e0729be4b09bfd5c","link":"http://blog.basyura.org/entry/2014/03/23/195624","schema":{"version":3},"subtype":"post","title":"apache + rails をサブディレクトリで動かしたい","type":"blog"},"language":{"confidence":49,"tag":"ja","tag_extended":"ja"},"links":{"code":[40
 4],"created_at":["Sun, 23 Mar 2014 15:41:17 +0000"],"hops":[["http://localhost/sample"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["http://localhost/sample"]}}
+{"blog":{"author":{"name":"FunPonsel"},"blog":{"link":"http://funponsel.org/","title":"PonSeL Indonesia."},"blogid":"71176595","content":"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","domain":"funponsel.org","guid":"0633391e1e9c865bb976c4605ca9d22f","id":"1e3b2b3b5c93a780e072555ff59c6636","lang":"id","link":"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","parseddate":"Sun, 23 Mar 2014 19:07:40 +0000","postid":"df16f773-3ac0-4de5-9e15-2923aac2b119","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"author":{"name":"FunPonsel"},"content
 ":"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","id":"1e3b2b3b5c93a780e072555ff59c6636","link":"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","schema":{"version":3},"subtype":"post","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
+{"blog":{"author":{"name":"hh58"},"blog":{"link":"http://blog.sina.com.cn/hu263","title":"hh58"},"blogid":"73188486","content":"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源协议。<br />\n\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。<br />\n<br />\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\n\n但”为所欲为”的前提当�
 ��发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\n\n原来代码中的BSD协议。<br />\n3. 不可以用开源代码的作者/机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\n\nApache Licence 2.0(Apache License, Version 2.0、Apache
  License, Version 1.1、Apache License, Version 1.0)<br />\n\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\n\n1. 需要给代码的用户一份Apache Licence<br />\n2. 如果你修改了代码,需要再被修改的文件中说明。<br />\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\n标,专利声明和其他原来作者规定需要包含的说明。<br />\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\n\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\n\nApache Licence也是对商业应用友好的许可。使用者也可以在需要的时候修�
 �代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\n\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\n\nGPL协议的主要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问题,还可以享受免费的优势。<br />\n\n由于
 GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\n\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\n<br />\nLGPL(GNU Lesser General Public License)<br />\n\nLGPL是GPL的一个为主要为类库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需要开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\n\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因此LGPL协议的开源代码很适合作为第三方类库被商�
 �软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\n\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\n\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\n\n<br />\n<br />\nReference: 百度百科<br />\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\n\n<br /><br /><img src=\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\"> <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\" target=\"_bl
 ank\">青春就应该这样绽放</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\" target=\"_blank\">你不得不信的星座秘密</a><img src=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Mon, 24 Mar 2014 03:14:12 +0000","domain":"blog.sina.com.cn","guid":"672664163c8d436f36cd797e5134ac78","id":"1e3b3025f371aa00e072242f15612c08","lang":"zh-cn","link":"http://blog.sina.com.cn/s
 /blog_844c1d8b0101fv02.html","links":["http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD","http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"parseddate":"Fri, 28 Mar 2014 18:25:03 +0000","postid":"7fc3321c-ce75-43af-9b5a-24486d45df88","title":"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)","type":"post"},"interaction":{"author":{"name":"hh58"},"content":"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源协议。<br />\n\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。
 <br />\n<br />\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\n\n但”为所欲为”的前提当你发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\n\n原来代码中的BSD协议。<br />\n3. 不可以用开源代码的作者/机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代
 码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\n\nApache Licence 2.0(Apache License, Version 2.0、Apache License, Version 1.1、Apache License, Version 1.0)<br />\n\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\n\n1. 需要给代码的用户一份Apache Licence<br />\n2. 如果你修改了代码,需要再被修改的文件中说明。<br />\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\n标,专利声明和其他�
 �来作者规定需要包含的说明。<br />\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\n\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\n\nApache Licence也是对商业应用友好的许可。使用者也可以在需要的时候修改代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\n\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\n\nGPL协议的�
 �要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问题,还可以享受免费的优势。<br />\n\n由于GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\n\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\n<br />\nLGPL(GNU Lesser General Public License)<br />\n\nLGPL是GPL的一个为主要为类库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需�
 ��开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\n\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因此LGPL协议的开源代码很适合作为第三方类库被商业软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\n\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\n\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\n\n<br />\n<br />\nReference: 百度百科<br />\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4s
 zYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\n\n<br /><br /><img src=\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\"> <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\" target=\"_blank\">青春就应该这样绽放</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\" target=\"_blank\">你不得不信的星座秘密</a><img src=\"http://sina.allyes.com/main/adfclick?db=sina&bid=20472
 0,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Mon, 24 Mar 2014 03:14:12 +0000","id":"1e3b3025f371aa00e072242f15612c08","link":"http://blog.sina.com.cn/s/blog_844c1d8b0101fv02.html","schema":{"version":3},"subtype":"post","title":"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)","type":"blog"},"language":{"confidence":82,"tag":"zh","tag_extended":"zh-cn"},"links":{"code":[404,200],"created_at":["Fri, 28 Mar 2014 18:36:08 +0000","Fri, 28 Mar 2014 18:36:11 +0000"],"hops":[["http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD","http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD"],[]],"meta":{"charset":["","GB2312"],"content_type":["","text/html"],"description":["","在线互动式文档分享平台,在
 这里,您可以和千万网友分享自己手中的文档,全文阅读其他用户的文档,同时,也可以利用分享文档获取的积分下载文档"],"lang":["","unknown"]},"normalized_url":[null,"http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"retweet_count":[0,0],"title":["null","五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)_百度文库"],"url":["http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD","http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"]}}
+{"blog":{"author":{"name":"Reset"},"blog":{"link":"http://linux.org.ru/","title":"Linux.org.ru: Новости"},"blogid":"42212478","content":"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мегабайт записей в секунду.\n</li><li> Масштабируемость: кластер можно прозрачно расширять без простоя, потоки данных партицированы.\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в производительност
 и.\n</li></ul><p>Изменения в версии 0.8.1:\n</p><ul><li> Поддержка дедупликации логов.\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\n</li><li> Поддержка расширения числа партиций и удаления топиков.\n</li><li> Автоматическая балансировка лидеров партиций.\n</li><li> Багфиксы.\n</li></ul><p><a href=\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\">Новое в версии 0.8.1</a><br>\n<a href=\"http://kafka.apache.org/downloads.html\">Скачать</a>\n</p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i class=\"icon-tag\"></i> <a class=tag rel=tag href=\"/tag/apache\">apache</a>, <a class=tag rel=tag href=\"/tag/kafka\">kafka</a></p><img src=\"http://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\" height=\"1\" wid
 th=\"1\"/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","domain":"linux.org.ru","guid":"c8e402c6f69616765379b32b6edf23d6","id":"1e3b3148d255aa00e072d1c6eda76db0","lang":"ru","link":"http://www.linux.org.ru/news/opensource/10310499","parseddate":"Mon, 24 Mar 2014 07:36:23 +0000","postid":"ad06b468-00fd-4934-858a-758a5d1d80c9","title":"Вышла новая версия Apache Kafka","type":"post"},"interaction":{"author":{"name":"Reset"},"content":"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мегабайт записей в секунду.\n</li><li> Масштабируемость: кластер можно прозрачно ра�
 �ширять без простоя, потоки данных партицированы.\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в производительности.\n</li></ul><p>Изменения в версии 0.8.1:\n</p><ul><li> Поддержка дедупликации логов.\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\n</li><li> Поддержка расширения числа партиций и удаления топиков.\n</li><li> Автоматическая балансировка лидеров партиций.\n</li><li> Багфиксы.\n</li></ul><p><a href=\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\">Новое в версии 0.8.1</a><br>\n<a href=
 \"http://kafka.apache.org/downloads.html\">Скачать</a>\n</p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i class=\"icon-tag\"></i> <a class=tag rel=tag href=\"/tag/apache\">apache</a>, <a class=tag rel=tag href=\"/tag/kafka\">kafka</a></p><img src=\"http://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\" height=\"1\" width=\"1\"/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","id":"1e3b3148d255aa00e072d1c6eda76db0","link":"http://www.linux.org.ru/news/opensource/10310499","schema":{"version":3},"subtype":"post","title":"Вышла новая версия Apache Kafka","type":"blog"},"language":{"confidence":95,"tag":"ru","tag_extended":"ru"}}
+{"blog":{"author":{"name":"jay"},"blog":{"link":"http://gilamotor.com/","title":"Gilamotor Evalube"},"blogid":"56981296","category":"News,headline,Andry Berlianto,Round The Borneo,tvs apache rtr 180","content":"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17
 ,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di sep
 utaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\n\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 2\" /></a>\n<a href='http://gilamotor.com/2
 014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" /></a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","domain":"gilamotor.com","guid":"d61190c66d456eb1694e425f2f101864","id":"1e3b33725343ab00e0724a3022b9fdfe","lang":"id","link":"http://gilamotor.com/2014/0
 3/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/","parseddate":"Mon, 24 Mar 2014 09:50:09 +0000","postid":"eecec8d4-4a11-45b0-93d4-3cbfcecd5865","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"jay"},"content":"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalu
 i tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya
  nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\n\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"at
 tachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 2\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" /></a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","id":"1e3b33725343ab00e0724a3022b9fdfe","
 link":"http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/","received_at":4743640609237236502,"schema":{"version":3},"subtype":"post","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
+{"blog":{"author":{"name":"admin"},"blog":{"link":"http://www.joinebook.com/","title":"Join eBook, Free eBook Download"},"blogid":"72892858","content":"<div id=\"iframeContent\">\n<h3>Book Description</h3>\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\n<p><b>Overview</b></p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\n</ul>\n<p><b>In Detail</b></p>\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is built on top of Apache Hadoop, Zookeeper, a
 nd Thrift.</p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.</p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to sec
 ure your data.</p>\n<p><b>What you will learn from this book</b></p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\n<li>Monitor clusters – both performance and application logs</li>\n<li>Secure your data in Accumulo</li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\n<li>Integrate to various cloud platforms</li>\n<li>Use the Accumulo command-line shell</li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\n<li>Understand what tools are needed to optimize Accumulo performance</li>\n</ul>\n<p><b>Approach</b></p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\n<p><b>Who this book is written for</b></p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It’s assumed that you have a
 n understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\n<h3>Book Details</h3>\n<div>\n<ul>\n<li><b>Paperback:</b> 120 pages</li>\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\n<li><b>Language:</b> English</li>\n<li><b>ISBN-10:</b> 1783285990</li>\n<li><b>ISBN-13:</b> 978-1783285990</li>\n</ul>\n</div>\n</div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","domain":"www.joinebook.com","guid":"7e2ed225f2be5b7a8f3ee6d7defa89b3","id":"1e3b38071f03a400e072d82a1cb03a68","lang":"en","link":"http://www.joinebook.com/apache-accumulo-for-developers/","parseddate":"Tue, 25 Mar 2014 14:15:02 +0000","postid":"0b3e093d-4e84-42ca-bcb1-eb140b008ff6","title":"Apache Accumulo for Developers","type":"post"},"interaction":{"author":{"name":"admin"},"content":"<div id=\"iframeContent\">\n<h3>Book Description</h3>\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\n<p><b>Overview</b
 ></p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\n</ul>\n<p><b>In Detail</b></p>\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift.</p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by s
 tep guide in taking full advantage of this power.</p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data.</p>\n<p><b>What you will learn from this book</b></p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\n<li>Monitor clusters – both performance and application logs</li>\n<li>Secure your data in Accumulo</li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\n<li
 >Integrate to various cloud platforms</li>\n<li>Use the Accumulo command-line shell</li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\n<li>Understand what tools are needed to optimize Accumulo performance</li>\n</ul>\n<p><b>Approach</b></p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\n<p><b>Who this book is written for</b></p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It’s assumed that you have an understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\n<h3>Book Details</h3>\n<div>\n<ul>\n<li><b>Paperback:</b> 120 pages</li>\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\n<li><b>Language:</b> English</li>\n<li><b>ISB
 N-10:</b> 1783285990</li>\n<li><b>ISBN-13:</b> 978-1783285990</li>\n</ul>\n</div>\n</div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","id":"1e3b38071f03a400e072d82a1cb03a68","link":"http://www.joinebook.com/apache-accumulo-for-developers/","schema":{"version":3},"subtype":"post","title":"Apache Accumulo for Developers","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Apache Accumulo","sentiment":35,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"ZooKeeper","sentiment":22,"co
 nfident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"Windows","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes":["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust"]},{"name":"Linux","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes":["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical ex
 amples","value store","highly robust"]},{"name":"Amazon.com","sentiment":7,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","performance bottlenecks","cloud platforms","monitoring tools","cell-level security"]},{"name":"Google","sentiment":4,"confident":1,"label":"Company","evidence":5,"type":"Company","about":0,"themes":["real-time data storage","highly robust"]},{"name":"October 16, 2013","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0,"themes":["Book Details Paperback","prior knowledge"]}],"sentiment":2,"topics":[{"name":"Software and Internet","score":0.50457036495209,"additional":"Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them. You will also learn to trouble
 shoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data. What you will learn from this book Set up Hadoop, ZooKeeper, and Accumulo Monitor clusters – both performance and application logs Secure your data in Accumulo Optimize Hadoop, ZooKeeper, and Accumulo performance Integrate to various cloud platforms Use the Accumulo command-line shell Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs Understand what tools are needed to optimize Accumulo performance Approach The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.","hits":0}]},"title":{"sentiment":0,"topics":[{"name":"Software and Internet","score":0.55211216211319,"additional":"Apache Accumulo for Developers","hits":0}]}}}
+{"blog":{"blog":{"link":"http://ibm.ulitzer.com/","title":"Latest News from IBM News on Ulitzer"},"blogid":"71106617","content":"<p><span class=\"xn-location\">FOREST HILL, Md.</span>, <span class=\"xn-chron\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\"http://ibm.ulitzer.com/node/3026607\" target=\"_blank\">read more</a></p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","domain":"ibm.ulitzer.com","guid":"3032fcc90b1d53e13ec24b46bf6ad3a3","id":"1e3b41519b74a180e072fbcdee35ca7e","lang":"en","link":"http://ibm.ulitzer.com/node/3026607","parseddate":"Tue, 25 Mar 2014 14:51:38 +0000","postid":"6eeaec5e-861b-4640-8276-f7ab8b8a3523","title":"The Apache Software Foundation Announces Apache™ Cloud
 Stack™ v4.3","type":"post"},"interaction":{"content":"<p><span class=\"xn-location\">FOREST HILL, Md.</span>, <span class=\"xn-chron\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\"http://ibm.ulitzer.com/node/3026607\" target=\"_blank\">read more</a></p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","id":"1e3b41519b74a180e072fbcdee35ca7e","link":"http://ibm.ulitzer.com/node/3026607","schema":{"version":3},"subtype":"post","title":"The Apache Software Foundation Announces Apache™ CloudStack™ v4.3","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"FOREST HILL, Md.","sentiment":0,"confident":1,"label":"Place","evidence":4,
 "type":"Place","about":1,"themes":["latest feature release","all-volunteer developers"]},{"name":"March 25, 2014","sentiment":-1,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["latest feature release","all-volunteer developers"]}],"sentiment":-1},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"Apache"},"comment":{"id":"650dba80c6b04a2124e0075cff28af4b"},"content":"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la vérité<br />\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les sauver.</p>","contenttyp
 e":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","domain":"leblogdrzz.over-blog.com","id":"1e3b4580ed1da080e072338f47a54b24","lang":"fr","link":"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/","parseddate":"Tue, 25 Mar 2014 20:22:24 +0000","post":{"created_at":"Tue, 25 Mar 2014 09:46:53 +0000","guid":"287825f6c2bd7e5f1a5615286d028e56","link":"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/","title":"Salem Ben Ammar, auteur chez Dreuz, est menacé de mort par des islamistes tunisiens"},"source":{"crawled":"Tue, 25 Mar 2014 11:43:43 +0000","guid":"5c3074412dceeb8b550f4f8467bdce0d","id":"48710360","language":"fr","link":"leblogdrzz.over-blog.com","title":"Dreuz.info","type":"blogs"},"title":"Par : Apache","type":"comment"},"interaction":{"author":{"name":"Apache"},"content":"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la 
 vérité<br />\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les sauver.</p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","id":"1e3b4580ed1da080e072338f47a54b24","link":"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-m
 enace-de-mort-par-des-islamistes-tunisiens/","schema":{"version":3},"subtype":"comment","title":"Par : Apache","type":"blog"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
+{"blog":{"author":{"name":"Tip Meister"},"blog":{"link":"http://www.lamp-tips.com/","title":"Linux Apache MySQL PHP Tips"},"blogid":"71186799","content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","domain":"www.lamp-tips.com","guid":"eb93f438e4191fd92fc1664a71c30a83","id":"1e3b4799c71ea800e07243367e6972b4","lang":"en","link":"http://www.lamp-tips.com/apache/what-does-apache-camel-do/","parseddate":"Wed, 26 Mar 2014 00:16:44 +0000","postid":"33815629-a87b-488f-9ca5-98c7359733d1","title":"What does Apache Camel do?","type":"post"},"interaction":{"author":{"name":"Tip Meister"},"content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","id":"1e3b4799c71ea800e07243367e6972b4","link":"http://www.lamp-tips.com/apache/what-does-apache-camel-do/","received_at":4743641192805852774,"schema":{"version":3},"subtype":"post","title":"What does Apache Camel do?","type":"blog
 "},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"Svět knihy"},"blog":{"link":"http://ceske-knizky.cz/","title":"České knížky"},"blogid":"71098056","content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afghánistánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsmrtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez přestávky. Pokud jste přehléd
 l jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot v historii britského letectv
 a vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém knihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \n \nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordcentrála X (Cílek Roman)  Výbuch n
 ad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","domain":"ceske-knizky.cz","guid":"f6d6c4a76240a3d4ef20ea2a75f80893","id":"1e3b4809fbcaa200e072eade39a77334","lang":"cs","link":"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/","parseddate":"Wed, 26 Mar 2014 02:37:30 +0000","postid":"858cfa87-6b6a-49a8-aa1c-7bf5449976d8","title":"Pilotem Apache (Macy Ed)","type":"post"},"interaction":{"author":{"name":"Svět knihy"},"content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afghánistánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsm
 rtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez přestávky. Pokud jste přehlédl jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, 
 Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot v historii britského letectva vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém kn
 ihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \n \nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordcentrála X (Cílek Roman)  Výbuch nad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","id":"1e3b4809fbcaa200e072eade39a77334","link":"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/","schema":{"version":3},"subtype":"post","title":"Pilotem Apache (Macy Ed)","type":"blog"},"language":{"confidence":99,"t
 ag":"cs","tag_extended":"cs"}}
+{"blog":{"author":{"name":"Benjamin D. Thomas"},"blog":{"link":"http://lxer.com/","title":"LXer Linux News"},"blogid":"40458952","content":"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.","contenttype":"html","created_at":"Wed, 26 Mar 2014 02:36:43 +0000","domain":"lxer.com","guid":"ba43401e2c320b2c4d1fad73af1fe133","id":"1e3b48f77886af80e072c8aa90d223ec","lang":"en","link":"http://lxer.com/module/newswire/ext_link.php?rid=200184","parseddate":"Wed, 26 Mar 2014 03:04:54 +0000","postid":"14e1bba7-358e-480d-9d5a-7dd55d8293bc","title":"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"Benjamin D. Thomas"},"content":"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.","contenttype":"html","created_at":"Wed, 26 Mar 2014 02:36:43 +0000","id":"1e3b48f77886af80e072c8aa90d223ec","link":"http://lxer.com/module/newswire/ext_link.p
 hp?rid=200184","received_at":4743641234971543627,"schema":{"version":3},"subtype":"post","title":"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities","type":"blog"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"charmalloc"},"blog":{"link":"http://java.dzone.com/","title":"Javalobby - The heart of the Java developer community"},"blogid":"59183819","content":"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumulo provides a richer data model than simple key-value stores, but is not a fully relational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and the Value are represented a
 s byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated synchronization mechanism. As clients insert and query data, and as machines are added and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:30:00 +0000","domain":"j
 ava.dzone.com","guid":"210840f9a9d28bfbefe3d97dc7f4b05f","id":"1e3b4a7aca0bac00e07244d00bd5c3bc","lang":"en","link":"http://java.dzone.com/articles/big-data-apache-accumulo","parseddate":"Wed, 26 Mar 2014 06:35:35 +0000","postid":"c37ebe75-e2aa-4691-b548-68be0e8fc015","title":"Big Data with Apache Accumulo Preserving Security with Open Source","type":"post"},"interaction":{"author":{"name":"charmalloc"},"content":"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumulo provides a richer data model than simple key-value stores, but is not a fully r
 elational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and the Value are represented as byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated synchronization mechanism. As clients insert and query data, and as machines are a
 dded and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:30:00 +0000","id":"1e3b4a7aca0bac00e07244d00bd5c3bc","link":"http://java.dzone.com/articles/big-data-apache-accumulo","schema":{"version":3},"subtype":"post","title":"Big Data with Apache Accumulo Preserving Security with Open Source","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Adam Fuchs","sentiment":8,"confident":1,"label":"Person","evidence":7,"type":"Person","about":1,"themes":["cell level security","peta bytes"]}],"sentiment":1},"title":{"entities":[{"name":"Apache Accumulo Preserving Security","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
+{"blog":{"author":{"name":"紫贏"},"blog":{"link":"http://z-win.blogspot.com/","title":"紫贏的記事本"},"blogid":"58568180","content":"win7 上apache php 用com去開word 2013 時,字型沒換的問題\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\n但要用word另存pdf時,字型沒換,目前決解的方案是\n控制台>系統管理工具>元件服務 ,\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\n內容 > 識別身分 用 互動式使用者\n但使用時一定要有使用登入到桌面,無法在純service下進行","contenttype":"html","created_at":"Wed, 26 Mar 2014 06:31:11 +0000","domain":"z-win.blogspot.com","guid":"66ef237ea01acb41d588b4a45fca07d6","id":"1e3b4b038b6ea180e072c86f262afd10","lang":"zh-tw","link":"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html","parseddate":"Wed, 26 Mar 2014 06:32:47 +0000","postid":"550399d6-64b6-4541-930a-e4
 0b53eff547","title":"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題","type":"post"},"interaction":{"author":{"name":"紫贏"},"content":"win7 上apache php 用com去開word 2013 時,字型沒換的問題\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\n但要用word另存pdf時,字型沒換,目前決解的方案是\n控制台>系統管理工具>元件服務 ,\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\n內容 > 識別身分 用 互動式使用者\n但使用時一定要有使用登入到桌面,無法在純service下進行","contenttype":"html","created_at":"Wed, 26 Mar 2014 06:31:11 +0000","id":"1e3b4b038b6ea180e072c86f262afd10","link":"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html","schema":{"version":3},"subtype":"post","title":"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題","type":"blog"},"langu
 age":{"confidence":70,"tag":"zh","tag_extended":"zh-tw"}}
+{"blog":{"author":{"name":"Sean Michael Kerner"},"blog":{"link":"http://lxer.com/","title":"LXer Linux News"},"blogid":"40458952","content":"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform.\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4.2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written
  in C#, meaning native support written in a language that suits the platform best,\" Trippaers said. \"It also shows the possibilities of working with other languages in the CloudStack project.\"\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the best tool for the job, he said.\nDynamic Compute\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the new Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\n\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\" Trippaers said.\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand by the tenant.\n\"This means that instead of h
 aving to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\" Trippaers said.\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enables off-loading of SSL traffic to load balancers.\n\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\" Trippaers explained. \"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\"\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\nWhat's Next\nLooking forward, there are a number of different technologies and features under consideration for future releases of CloudStack. One of those
  technologies is the open-source Docker container virtualization technology.\n\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\" Trippaers said. \"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\"\nOther features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.\n\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\" Trippaers said. \"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and 
 users alike.\"\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:11:22 +0000","domain":"lxer.com","guid":"96eab9efacbe97941d0f03ffa2933164","id":"1e3b4d75cd9ea900e072ae686e3e344c","lang":"en","link":"http://www.eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html","parseddate":"Wed, 26 Mar 2014 11:15:22 +0000","postid":"65ca246b-c53d-4c41-8b8c-a2a5d868d195","title":"Apache CloudStack 4.3 Released","type":"post"},"demographic":{"gender":"mostly_male"},"interaction":{"author":{"name":"Sean Michael Kerner"},"content":"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform.\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4
 .2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\" Trippaers said. \"It also shows the possibilities of working with other languages in the CloudStack project.\"\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the best tool for the job, he said.\nDynamic Compute\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the ne
 w Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\n\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\" Trippaers said.\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand by the tenant.\n\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\" Trippaers said.\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enables off-loading of SSL traffic to load balancers.\n\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\" Trip
 paers explained. \"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\"\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\nWhat's Next\nLooking forward, there are a number of different technologies and features under consideration for future releases of CloudStack. One of those technologies is the open-source Docker container virtualization technology.\n\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\" Trippaers said. \"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\"\nOther features CloudStack developers are working on for future releases include networking across failure domains for
  increased resiliency and improving support for bare metal deployments.\n\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\" Trippaers said. \"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\"\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:11:22 +0000","id":"1e3b4d75cd9ea900e072ae686e3e344c","link":"http://www.eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html","schema":{"version":3},"subtype":"post","title":"Apache CloudStack 4.3 Released","type":"blog"},"language":{"confidence":99,"tag":"en","
 tag_extended":"en"},"salience":{"content":{"entities":[{"name":"CloudStack","sentiment":32,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["major update","next releases","bare metal deployments","future releases","code quality improvements","right answer","not-so-distant future","CloudStack developers","failure domains","improving support","huge number","functional tests","serious number","predictable behavior","open-source effort","flexible compute capability","compute offering","creating instances","different technologies","original technology"]},{"name":"Citrix","sentiment":3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":0,"themes":["Citrix Application Delivery Controller","significant performance improvements","major update","open-source effort","original technology","virtualization hypervisor","precious resources","virtual machines","dedicated devices"]},{"name":"Apache","sentiment":3,"confident":1,"label":"Company","evi
 dence":5,"type":"Company","about":0,"themes":["major update","open-source effort","original technology"]},{"name":"April 2012","sentiment":3,"confident":1,"label":"Date","evidence":5,"type":"Pattern","about":0,"themes":["major update","open-source effort","original technology"]},{"name":"Microsoft","sentiment":4,"confident":1,"label":"Company","evidence":3,"type":"Company","about":0,"themes":["original technology","virtualization hypervisor","supporting Hyper-V","vice president"]},{"name":"Hugo Trippaers","sentiment":60,"confident":1,"label":"Person","evidence":7,"type":"Person","about":1,"themes":["next releases","dynamic offerings","code quality improvements","future releases","compute offering","huge number","functional tests","different technologies","serious number","predictable behavior","key feature","right answer","not-so-distant future","significant performance improvements","native support","flexible compute capability","dedicated devices","precious resources","virtual mac
 hines","creating instances","bare metal deployments","CloudStack developers","failure domains","improving support","supporting Hyper-V","vice president","container virtualization technology"]},{"name":"vice president","sentiment":2,"confident":1,"label":"Job Title","evidence":3,"type":"Job Title","about":0,"themes":["virtualization hypervisor","supporting Hyper-V","vice president","native support"]},{"name":"Netscaler","sentiment":8,"confident":1,"label":"Company","evidence":7,"type":"Company","about":0,"themes":["significant performance improvements","precious resources","virtual machines","dedicated devices","different technologies","future releases"]},{"name":"Sean Michael Kerner","sentiment":3,"confident":1,"label":"Person","evidence":3,"type":"Person","about":0,"themes":["code quality improvements","next release","serious number","predictable behavior","senior editor"]},{"name":"senior editor","sentiment":3,"confident":1,"label":"Job Title","evidence":3,"type":"Job Title","abou
 t":0,"themes":["code quality improvements","next release","serious number","predictable behavior","senior editor"]},{"name":"\"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\"","sentiment":4,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["supporting Hyper-V","vice president","native support"]},{"name":"\"It also shows the possibilities of working with other languages in the CloudStack project.\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["native support"]},{"name":"\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\"","sentiment":3,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["Compute offering","creating instances"]},{"name":"\"This means that instead of having to maintain lists of fixed compute offerings c
 atering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\"","sentiment":4,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["fixed compute offerings catering","flexible compute capability","dynamic offerings"]},{"name":"\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\";\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\"","sentiment":2,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0,"themes":["Citrix Application Delivery Controller","precious resources","virtual machines"]},{"name":"\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\";\"I'm convinced that we will come up with the right answer in the not-so-distant future and release Doc
 ker support with one of the next releases.\"","sentiment":2,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0,"themes":["container virtualization technology","bare metal deployments","right answer","not-so-distant future","next releases","CloudStack developers","future releases","failure domains","improving support"]},{"name":"\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\";\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\"","sentiment":4,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0,"themes":["code quality improvements","bare metal deployments","huge number","functional tests","next release","seri
 ous number","predictable behavior","CloudStack developers","future releases","failure domains","improving support"]}],"sentiment":3,"topics":[{"name":"Software and Internet","score":0.591965675354,"additional":"The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform. \"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\" Other features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.","hits":0},{"name":"Mobile Devices","score":0.56688523292542,"additional":"The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform. According to Trippaers, dedicated devices like the Netscaler can also offer signif
 icant performance improvements in handling SSL traffic. Other features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.","hits":0},{"name":"Technology","score":0.56676977872849,"additional":"The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011. One of those technologies is the open-source Docker container virtualization technology. Other features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.","hits":0},{"name":"Hardware","score":0.49846687912941,"additional":"CloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor. With previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. \"Docker is more 
 than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\" Trippaers said.","hits":0}]},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"xenbast"},"blog":{"link":"http://olatsaba.blogspot.com/","title":"olatsaba"},"blogid":"70744341","content":"Θυμάμαι μικρός απολάμβανα να βγαίνω στην αυλή να βλέπω τα αεροπλάνα που πέρναγαν πάνω από τα κεφάλια μας τις μέρες παρέλασης... τώρα μεγάλωσα, άλλαξα σπίτι... και εξακολουθώ έχω τα ίδια χούγια...","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:36:20 +0000","domain":"olatsaba.blogspot.com","guid":"c8d1a117ba201f1b1d1f8550ee95a0d4","id":"1e3b4dad9ba9a200e072e848e2b4aa64","lang":"el","link":"http://olatsaba.blogspot.com/2014/03/apache.html","parseddate":"Wed, 26 Mar 2014 13:00:22 +0000","postid":"15335b4b-a4c9-4316-9e0c-50380fef0aea","title":"Apache πάνω από το Αιγάλεω","type":"post"},"interaction":{"author":{"name":"xenbast"},"content":"Θυμάμαι μικρός απολά�
 �βανα να βγαίνω στην αυλή να βλέπω τα αεροπλάνα που πέρναγαν πάνω από τα κεφάλια μας τις μέρες παρέλασης... τώρα μεγάλωσα, άλλαξα σπίτι... και εξακολουθώ έχω τα ίδια χούγια...","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:36:20 +0000","id":"1e3b4dad9ba9a200e072e848e2b4aa64","link":"http://olatsaba.blogspot.com/2014/03/apache.html","received_at":4743641386565354127,"schema":{"version":3},"subtype":"post","title":"Apache πάνω από το Αιγάλεω","type":"blog"},"language":{"confidence":100,"tag":"el","tag_extended":"el"}}
+{"blog":{"blog":{"link":"http://www.vmware.com/vmtn/planet/v12n/","title":"Planet V12n"},"blogid":"58694970","content":"The Apache Software Foundation which took over the developement of CloudStack platform from Citrix in April 2012 today released version 4.3 of Apache CloudStack. Apache CloudStack is open source...","contenttype":"html","created_at":"Wed, 26 Mar 2014 12:54:04 +0000","domain":"www.vmware.com","guid":"00cdf6340d990297bb9fe4f9173591a2","id":"1e3b4e5b5b07ae00e0722892428e5d58","lang":"en","link":"http://cloudcomputing.info/en/news/2014/03/the-apache-software-foundation-releases-cloudstack-4-3-0.html","parseddate":"Wed, 26 Mar 2014 16:33:23 +0000","postid":"fc060354-51a9-4758-ab71-b43c027a8903","title":"The Apache software foundation releases CloudStack 4.3.0 (virtualization.info)","type":"post"},"interaction":{"content":"The Apache Software Foundation which took over the developement of CloudStack platform from Citrix in April 2012 today released version 4.3 of Apache C
 loudStack. Apache CloudStack is open source...","contenttype":"html","created_at":"Wed, 26 Mar 2014 12:54:04 +0000","id":"1e3b4e5b5b07ae00e0722892428e5d58","link":"http://cloudcomputing.info/en/news/2014/03/the-apache-software-foundation-releases-cloudstack-4-3-0.html","schema":{"version":3},"subtype":"post","title":"The Apache software foundation releases CloudStack 4.3.0 (virtualization.info)","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Citrix","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1},{"name":"April 2012","sentiment":0,"confident

<TRUNCATED>

[36/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
index 426faef..9ffaa30 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
@@ -1,1547 +1,1547 @@
-"{\"amazon\":{\"anchor\":\"533193\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/el
 asticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it h
 as to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font color=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"
 US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193\",\"links\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"threadstarter\":1,\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":
 {\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be
  improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it has to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font co
 lor=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=149131&tstart=0#533193\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200,200,200],\"created_at\":[\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:12 +0000\"],\"hops\":[[],[],[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"]],\"meta\":{\"charset\":[\"CP1252\",\"CP1252\",\"CP1252\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.\",\"Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.\",\"AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, a
 nd Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy.\"],\"lang\":[\"unknown\",\"unknown\",\"unknown\"]},\"normalized_url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"],\"retweet_count\":[0,0,0],\"title\":[\"Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk\",\"SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk\",\"Supported Platforms - AWS Elastic Beanstalk\"],\"url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInst
 ance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":1,\"type\":\"Company\",\"about\":0}],\"sentiment\":-2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
-"{\"amazon\":{\"anchor\":\"533271\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"
 AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only g
 rants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
-"{\"blog\":{\"atomversion\":\"1.0\",\"author\":{\"name\":\"basyura\"},\"blog\":{\"link\":\"http://d.hatena.ne.jp/basyura/\",\"title\":\"basyura's blog\"},\"blogid\":\"55821125\",\"content\":\"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\\n<pre class=\\\"code\\\" data-unlink><VirtualHost *:80>\\n  ProxyPass /sample http://localhost:3000/sample\\n  ProxyPassReverse /sample http://localhost:3000/sample\\n</VirtualHost></pre><p>config/environments/development.rb</p>\\n<pre class=\\\"code\\\" data-unlink>config.relative_url_root = <span class=\\\"synSpecial\\\">\\\"</span><span class=\\\"synConstant\\\">/sample</span><span class=\\\"synSpecial\\\">\\\"</span>\\n</pre><p>起動</p>\\n<pre class=\\\"code\\\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \\\"/sample/assets/\\\"</
 code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:56:24 +0000\",\"domain\":\"d.hatena.ne.jp\",\"guid\":\"1e2c1f54e6c6548c4381b6e9a6361cea\",\"id\":\"1e3b279c65cbac00e0729be4b09bfd5c\",\"lang\":\"ja\",\"link\":\"http://blog.basyura.org/entry/2014/03/23/195624\",\"links\":[\"http://localhost:3000\",\"http://localhost/sample\",\"http://localhost:3000/sample\"],\"parseddate\":\"Sun, 23 Mar 2014 15:32:03 +0000\",\"postid\":\"1426a00d-f33f-4144-b396-5160bda65a31\",\"title\":\"apache + rails をサブディレクトリで動かしたい\",\"type\":\"post\",\"updated\":\"Sun, 23 Mar 2014 10:56:24 +0000\"},\"interaction\":{\"author\":{\"name\":\"basyura\"},\"content\":\"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\\n<pre class=\\\"code\
 \\" data-unlink><VirtualHost *:80>\\n  ProxyPass /sample http://localhost:3000/sample\\n  ProxyPassReverse /sample http://localhost:3000/sample\\n</VirtualHost></pre><p>config/environments/development.rb</p>\\n<pre class=\\\"code\\\" data-unlink>config.relative_url_root = <span class=\\\"synSpecial\\\">\\\"</span><span class=\\\"synConstant\\\">/sample</span><span class=\\\"synSpecial\\\">\\\"</span>\\n</pre><p>起動</p>\\n<pre class=\\\"code\\\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \\\"/sample/assets/\\\"</code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:56:24 +0000\",\"id\":\"1e3b279c65cbac00e0729be4b09bfd5c\",\"link\":\"http://blog.basyura.org/entry/2014/03/23/195624\",\"schema\":{
 \"version\":3},\"subtype\":\"post\",\"title\":\"apache + rails をサブディレクトリで動かしたい\",\"type\":\"blog\"},\"language\":{\"confidence\":49,\"tag\":\"ja\",\"tag_extended\":\"ja\"},\"links\":{\"code\":[404],\"created_at\":[\"Sun, 23 Mar 2014 15:41:17 +0000\"],\"hops\":[[\"http://localhost/sample\"]],\"normalized_url\":[null],\"retweet_count\":[0],\"title\":[\"null\"],\"url\":[\"http://localhost/sample\"]}}"
-"{\"blog\":{\"author\":{\"name\":\"FunPonsel\"},\"blog\":{\"link\":\"http://funponsel.org/\",\"title\":\"PonSeL Indonesia.\"},\"blogid\":\"71176595\",\"content\":\"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:51:07 +0000\",\"domain\":\"funponsel.org\",\"guid\":\"0633391e1e9c865bb976c4605ca9d22f\",\"id\":\"1e3b2b3b5c93a780e072555ff59c6636\",\"lang\":\"id\",\"link\":\"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html\",\"parseddate\":\"Sun, 23 Mar 2014 19:07:40 +0000\",\"postid\":\"df16f773-3ac0-4de5-9e15-2923aac2b119\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\
 "type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"FunPonsel\"},\"content\":\"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:51:07 +0000\",\"id\":\"1e3b2b3b5c93a780e072555ff59c6636\",\"link\":\"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"id\",\"tag_extended\":\"id\"}}"
-"{\"blog\":{\"author\":{\"name\":\"hh58\"},\"blog\":{\"link\":\"http://blog.sina.com.cn/hu263\",\"title\":\"hh58\"},\"blogid\":\"73188486\",\"content\":\"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源协议。<br />\\n\\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。<br />\\n<br />\\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\\n\\n�
 �”为所欲为”的前提当你发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\\n\\n原来代码中的BSD协议。<br />\\n3. 不可以用开源代码的作者/机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\\n\\nApache Licence 2.0(A
 pache License, Version 2.0、Apache License, Version 1.1、Apache License, Version 1.0)<br />\\n\\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\\n\\n1. 需要给代码的用户一份Apache Licence<br />\\n2. 如果你修改了代码,需要再被修改的文件中说明。<br />\\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\\n标,专利声明和其他原来作者规定需要包含的说明。<br />\\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\\n\\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\\n\\nApache Licence也是对商业应用友好的
 许可。使用者也可以在需要的时候修改代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\\n\\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\\n\\nGPL协议的主要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问�
 ��,还可以享受免费的优势。<br />\\n\\n由于GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\\n\\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\\n<br />\\nLGPL(GNU Lesser General Public License)<br />\\n\\nLGPL是GPL的一个为主要为类库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需要开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\\n\\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因�
 �LGPL协议的开源代码很适合作为第三方类库被商业软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\\n\\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\\n\\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\\n\\n<br />\\n<br />\\nReference: 百度百科<br />\\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\\n\\n<br /><br /><img src=\\\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\\\"> <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&s
 how=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\\\" target=\\\"_blank\\\">青春就应该这样绽放</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\\\" target=\\\"_blank\\\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\\\" target=\\\"_blank\\\">你不得不信的星座秘密</a><img src=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\\\">\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 03:14:12 +0000\",\"domain\":\"blog.sina.com.cn\",\"guid\":\
 "672664163c8d436f36cd797e5134ac78\",\"id\":\"1e3b3025f371aa00e072242f15612c08\",\"lang\":\"zh-cn\",\"link\":\"http://blog.sina.com.cn/s/blog_844c1d8b0101fv02.html\",\"links\":[\"http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD\",\"http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3\"],\"parseddate\":\"Fri, 28 Mar 2014 18:25:03 +0000\",\"postid\":\"7fc3321c-ce75-43af-9b5a-24486d45df88\",\"title\":\"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"hh58\"},\"content\":\"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源�
 ��议。<br />\\n\\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。<br />\\n<br />\\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\\n\\n但”为所欲为”的前提当你发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\\n\\n原来代码中的BSD协议。<br />\\n3. 不可以用开源代码的作者
 /机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\\n\\nApache Licence 2.0(Apache License, Version 2.0、Apache License, Version 1.1、Apache License, Version 1.0)<br />\\n\\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\\n\\n1. 需要给代码的用户一份Apache Licence<br />\\n2. 如果你修改了代码,需要再�
 ��修改的文件中说明。<br />\\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\\n标,专利声明和其他原来作者规定需要包含的说明。<br />\\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\\n\\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\\n\\nApache Licence也是对商业应用友好的许可。使用者也可以在需要的时候修改代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\\n\\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就
 是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\\n\\nGPL协议的主要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问题,还可以享受免费的优势。<br />\\n\\n由于GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\\n\\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\\n<br />\\nLGPL(GNU Lesser General Public License)<br />\\n\\nLGPL是GPL的一个为主要为�
 ��库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需要开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\\n\\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因此LGPL协议的开源代码很适合作为第三方类库被商业软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\\n\\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\\n\\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原
 许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\\n\\n<br />\\n<br />\\nReference: 百度百科<br />\\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\\n\\n<br /><br /><img src=\\\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\\\"> <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\\\" target=\\\"_blank\\\">青春就应该这样绽放</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\\\" target=\\\"_blank\\\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,4696
 46,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\\\" target=\\\"_blank\\\">你不得不信的星座秘密</a><img src=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\\\">\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 03:14:12 +0000\",\"id\":\"1e3b3025f371aa00e072242f15612c08\",\"link\":\"http://blog.sina.com.cn/s/blog_844c1d8b0101fv02.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)\",\"type\":\"blog\"},\"language\":{\"confidence\":82,\"tag\":\"zh\",\"tag_extended\":\"zh-cn\"},\"links\":{\"code\":[404,200],\"created_at\":[\"Fri, 28 Mar 2014 18:36:08 +0000\",\"Fri, 28 Mar 2014 18:36:11 +0000\"],\"hops\":[[\"http://www.opensource.org/licenses/alphabetical)。我们在常见的开�
 �协议如BSD\",\"http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD\"],[]],\"meta\":{\"charset\":[\"\",\"GB2312\"],\"content_type\":[\"\",\"text/html\"],\"description\":[\"\",\"在线互动式文档分享平台,在这里,您可以和千万网友分享自己手中的文档,全文阅读其他用户的文档,同时,也可以利用分享文档获取的积分下载文档\"],\"lang\":[\"\",\"unknown\"]},\"normalized_url\":[null,\"http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3\"],\"retweet_count\":[0,0],\"title\":[\"null\",\"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)_百度文库\"],\"url\":[\"http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD\",\"http://w
 enku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3\"]}}"
-"{\"blog\":{\"author\":{\"name\":\"Reset\"},\"blog\":{\"link\":\"http://linux.org.ru/\",\"title\":\"Linux.org.ru: Новости\"},\"blogid\":\"42212478\",\"content\":\"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мегабайт записей в секунду.\\n</li><li> Масштабируемость: кластер можно прозрачно расширять без простоя, потоки данных партицированы.\\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в пр�
 �изводительности.\\n</li></ul><p>Изменения в версии 0.8.1:\\n</p><ul><li> Поддержка дедупликации логов.\\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\\n</li><li> Поддержка расширения числа партиций и удаления топиков.\\n</li><li> Автоматическая балансировка лидеров партиций.\\n</li><li> Багфиксы.\\n</li></ul><p><a href=\\\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\\\">Новое в версии 0.8.1</a><br>\\n<a href=\\\"http://kafka.apache.org/downloads.html\\\">Скачать</a>\\n</p>\\n\\n  \\n\\n  \\n  \\n  \\n      <p class=\\\"tags\\\"><i class=\\\"icon-tag\\\"></i> <a class=tag rel=tag href=\\\"/tag/apache\\\">apache</a>, <a class=tag rel=tag href=\\\"/tag/kafka\\\">kafka</a></p><img src=\\\"h
 ttp://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\\\" height=\\\"1\\\" width=\\\"1\\\"/>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 05:24:20 +0000\",\"domain\":\"linux.org.ru\",\"guid\":\"c8e402c6f69616765379b32b6edf23d6\",\"id\":\"1e3b3148d255aa00e072d1c6eda76db0\",\"lang\":\"ru\",\"link\":\"http://www.linux.org.ru/news/opensource/10310499\",\"parseddate\":\"Mon, 24 Mar 2014 07:36:23 +0000\",\"postid\":\"ad06b468-00fd-4934-858a-758a5d1d80c9\",\"title\":\"Вышла новая версия Apache Kafka\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Reset\"},\"content\":\"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мега
 байт записей в секунду.\\n</li><li> Масштабируемость: кластер можно прозрачно расширять без простоя, потоки данных партицированы.\\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в производительности.\\n</li></ul><p>Изменения в версии 0.8.1:\\n</p><ul><li> Поддержка дедупликации логов.\\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\\n</li><li> Поддержка расширения числа партиций и удаления топиков.\\n</li><li> Автоматическая балансировка лидеров партиций.\\n</li><li> Багфиксы.
 \\n</li></ul><p><a href=\\\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\\\">Новое в версии 0.8.1</a><br>\\n<a href=\\\"http://kafka.apache.org/downloads.html\\\">Скачать</a>\\n</p>\\n\\n  \\n\\n  \\n  \\n  \\n      <p class=\\\"tags\\\"><i class=\\\"icon-tag\\\"></i> <a class=tag rel=tag href=\\\"/tag/apache\\\">apache</a>, <a class=tag rel=tag href=\\\"/tag/kafka\\\">kafka</a></p><img src=\\\"http://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\\\" height=\\\"1\\\" width=\\\"1\\\"/>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 05:24:20 +0000\",\"id\":\"1e3b3148d255aa00e072d1c6eda76db0\",\"link\":\"http://www.linux.org.ru/news/opensource/10310499\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Вышла новая версия Apache Kafka\",\"type\":\"blog\"},\"language\":{\"confidence\":95,\"tag\":\"ru\",\"tag_extended\":\"ru\"}}"
-"{\"blog\":{\"author\":{\"name\":\"jay\"},\"blog\":{\"link\":\"http://gilamotor.com/\",\"title\":\"Gilamotor Evalube\"},\"blogid\":\"56981296\",\"category\":\"News,headline,Andry Berlianto,Round The Borneo,tvs apache rtr 180\",\"content\":\"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya dik
 laim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi 
 TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\\n\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 1\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" 
 title=\\\"TVS Apache RTR Round The Borneo 2\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 3\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 4\\\" /></a>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 09:31:58 +0000\",\"domain
 \":\"gilamotor.com\",\"guid\":\"d61190c66d456eb1694e425f2f101864\",\"id\":\"1e3b33725343ab00e0724a3022b9fdfe\",\"lang\":\"id\",\"link\":\"http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/\",\"parseddate\":\"Mon, 24 Mar 2014 09:50:09 +0000\",\"postid\":\"eecec8d4-4a11-45b0-93d4-3cbfcecd5865\",\"title\":\"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache\",\"type\":\"post\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"name\":\"jay\"},\"content\":\"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru 
 menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\\n<p>Dengan menempuh jara
 k 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\\n\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 1\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs
 -apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 2\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 3\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http:
 //gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 4\\\" /></a>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 09:31:58 +0000\",\"id\":\"1e3b33725343ab00e0724a3022b9fdfe\",\"link\":\"http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/\",\"received_at\":4743640609237236502,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"id\",\"tag_extended\":\"id\"}}"
-"{\"blog\":{\"author\":{\"name\":\"admin\"},\"blog\":{\"link\":\"http://www.joinebook.com/\",\"title\":\"Join eBook, Free eBook Download\"},\"blogid\":\"72892858\",\"content\":\"<div id=\\\"iframeContent\\\">\\n<h3>Book Description</h3>\\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\\n<p><b>Overview</b></p>\\n<ul>\\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\\n</ul>\\n<p><b>In Detail</b></p>\\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is bui
 lt on top of Apache Hadoop, Zookeeper, and Thrift.</p>\\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.</p>\\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\\n<p>You will also learn to troubleshoot clusters with monitoring tools,
  and use Accumulo cell-level security to secure your data.</p>\\n<p><b>What you will learn from this book</b></p>\\n<ul>\\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\\n<li>Monitor clusters – both performance and application logs</li>\\n<li>Secure your data in Accumulo</li>\\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\\n<li>Integrate to various cloud platforms</li>\\n<li>Use the Accumulo command-line shell</li>\\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\\n<li>Understand what tools are needed to optimize Accumulo performance</li>\\n</ul>\\n<p><b>Approach</b></p>\\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\\n<p><b>Who this book is written for</b></p>\\n<p>This book is great for developers new to Accumulo, who are looking to get a good groun
 ding in how to use Accumulo. It’s assumed that you have an understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\\n<h3>Book Details</h3>\\n<div>\\n<ul>\\n<li><b>Paperback:</b> 120 pages</li>\\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\\n<li><b>Language:</b> English</li>\\n<li><b>ISBN-10:</b> 1783285990</li>\\n<li><b>ISBN-13:</b> 978-1783285990</li>\\n</ul>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 18:16:40 +0000\",\"domain\":\"www.joinebook.com\",\"guid\":\"7e2ed225f2be5b7a8f3ee6d7defa89b3\",\"id\":\"1e3b38071f03a400e072d82a1cb03a68\",\"lang\":\"en\",\"link\":\"http://www.joinebook.com/apache-accumulo-for-developers/\",\"parseddate\":\"Tue, 25 Mar 2014 14:15:02 +0000\",\"postid\":\"0b3e093d-4e84-42ca-bcb1-eb140b008ff6\",\"title\":\"Apache Accumulo for Developers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"admin\"},\"content\":\"<div id=\\\"iframeCon
 tent\\\">\\n<h3>Book Description</h3>\\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\\n<p><b>Overview</b></p>\\n<ul>\\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\\n</ul>\\n<p><b>In Detail</b></p>\\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift.</p>\\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud
 . Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.</p>\\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data.</p>\\n<p><b>What you will learn from this book</b></p>\\n<ul>\\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\\n<li>Monitor clusters – b
 oth performance and application logs</li>\\n<li>Secure your data in Accumulo</li>\\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\\n<li>Integrate to various cloud platforms</li>\\n<li>Use the Accumulo command-line shell</li>\\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\\n<li>Understand what tools are needed to optimize Accumulo performance</li>\\n</ul>\\n<p><b>Approach</b></p>\\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\\n<p><b>Who this book is written for</b></p>\\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It’s assumed that you have an understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\\n<h3>Book Details</h3>\\
 n<div>\\n<ul>\\n<li><b>Paperback:</b> 120 pages</li>\\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\\n<li><b>Language:</b> English</li>\\n<li><b>ISBN-10:</b> 1783285990</li>\\n<li><b>ISBN-13:</b> 978-1783285990</li>\\n</ul>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 18:16:40 +0000\",\"id\":\"1e3b38071f03a400e072d82a1cb03a68\",\"link\":\"http://www.joinebook.com/apache-accumulo-for-developers/\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Accumulo for Developers\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache Accumulo\",\"sentiment\":35,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"cell-level security\",\"tutorial-based approach\",\"command-line shell\",\"performance Approach\",\"real-time data storage\",\"real-time
  analyses\",\"full advantage\",\"step guide\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\",\"monitoring tools\",\"good grounding\",\"performance bottlenecks\"]},{\"name\":\"ZooKeeper\",\"sentiment\":22,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"cell-level security\",\"tutorial-based approach\",\"command-line shell\",\"performance Approach\",\"real-time data storage\",\"real-time analyses\",\"full advantage\",\"step guide\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\",\"monitoring tools\",\"good grounding\",\"performance bottlenecks\"]},{\"name\":\"Windows\",\"sentiment\":10,\"confident\":1,\"label\":\"Product\",\"evidence\":5,\"type\":\"Product\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"real-time data storage\",
 \"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\"]},{\"name\":\"Linux\",\"sentiment\":10,\"confident\":1,\"label\":\"Product\",\"evidence\":5,\"type\":\"Product\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"real-time data storage\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\"]},{\"name\":\"Amazon.com\",\"sentiment\":7,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"real-time data storage\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\",\"performance bottlenecks\",\"cloud platforms\",\"monitoring tools\",\"cell-level security\"]},{\"name\":\"Google\",\"sentiment\":4,\"confident\":1,\"label\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":0,\"themes\":[\"real-time data storag
 e\",\"highly robust\"]},{\"name\":\"October 16, 2013\",\"sentiment\":0,\"confident\":1,\"label\":\"Date\",\"evidence\":1,\"type\":\"Pattern\",\"about\":0,\"themes\":[\"Book Details Paperback\",\"prior knowledge\"]}],\"sentiment\":2,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.50457036495209,\"additional\":\"Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them. You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data. What you will learn from this book Set up Hadoop, ZooKeeper, and Accumulo Monitor clusters – both performance and application logs Secure your data in Accumulo Optimize Hadoop, ZooKeeper, and Accumulo performance Integrate to various cloud platforms Use the Accumulo command-line shell Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs Understand 
 what tools are needed to optimize Accumulo performance Approach The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.\",\"hits\":0}]},\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.55211216211319,\"additional\":\"Apache Accumulo for Developers\",\"hits\":0}]}}}"
-"{\"blog\":{\"blog\":{\"link\":\"http://ibm.ulitzer.com/\",\"title\":\"Latest News from IBM News on Ulitzer\"},\"blogid\":\"71106617\",\"content\":\"<p><span class=\\\"xn-location\\\">FOREST HILL, Md.</span>, <span class=\\\"xn-chron\\\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\\\"http://ibm.ulitzer.com/node/3026607\\\" target=\\\"_blank\\\">read more</a></p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 12:00:47 +0000\",\"domain\":\"ibm.ulitzer.com\",\"guid\":\"3032fcc90b1d53e13ec24b46bf6ad3a3\",\"id\":\"1e3b41519b74a180e072fbcdee35ca7e\",\"lang\":\"en\",\"link\":\"http://ibm.ulitzer.com/node/3026607\",\"parseddate\":\"Tue, 25 Mar 2014 14:51:38 +0000\",\"postid\":\"6eeaec5e-861b-4640-8276-f7ab8b8
 a3523\",\"title\":\"The Apache Software Foundation Announces Apache™ CloudStack™ v4.3\",\"type\":\"post\"},\"interaction\":{\"content\":\"<p><span class=\\\"xn-location\\\">FOREST HILL, Md.</span>, <span class=\\\"xn-chron\\\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\\\"http://ibm.ulitzer.com/node/3026607\\\" target=\\\"_blank\\\">read more</a></p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 12:00:47 +0000\",\"id\":\"1e3b41519b74a180e072fbcdee35ca7e\",\"link\":\"http://ibm.ulitzer.com/node/3026607\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"The Apache Software Foundation Announces Apache™ CloudStack™ v4.3\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en
 \",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"FOREST HILL, Md.\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":4,\"type\":\"Place\",\"about\":1,\"themes\":[\"latest feature release\",\"all-volunteer developers\"]},{\"name\":\"March 25, 2014\",\"sentiment\":-1,\"confident\":1,\"label\":\"Date\",\"evidence\":7,\"type\":\"Pattern\",\"about\":1,\"themes\":[\"latest feature release\",\"all-volunteer developers\"]}],\"sentiment\":-1},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"Apache\"},\"comment\":{\"id\":\"650dba80c6b04a2124e0075cff28af4b\"},\"content\":\"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la vérité<br />\\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les 
 sauver.</p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 20:00:05 +0000\",\"domain\":\"leblogdrzz.over-blog.com\",\"id\":\"1e3b4580ed1da080e072338f47a54b24\",\"lang\":\"fr\",\"link\":\"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/\",\"parseddate\":\"Tue, 25 Mar 2014 20:22:24 +0000\",\"post\":{\"created_at\":\"Tue, 25 Mar 2014 09:46:53 +0000\",\"guid\":\"287825f6c2bd7e5f1a5615286d028e56\",\"link\":\"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/\",\"title\":\"Salem Ben Ammar, auteur chez Dreuz, est menacé de mort par des islamistes tunisiens\"},\"source\":{\"crawled\":\"Tue, 25 Mar 2014 11:43:43 +0000\",\"guid\":\"5c3074412dceeb8b550f4f8467bdce0d\",\"id\":\"48710360\",\"language\":\"fr\",\"link\":\"leblogdrzz.over-blog.com\",\"title\":\"Dreuz.info\",\"type\":\"blogs\"},\"title\":\"Par : Apache\",\"type\":\"comment\"},\"interaction\":{\"
 author\":{\"name\":\"Apache\"},\"content\":\"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la vérité<br />\\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les sauver.</p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014
  20:00:05 +0000\",\"id\":\"1e3b4580ed1da080e072338f47a54b24\",\"link\":\"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Par : Apache\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"fr\",\"tag_extended\":\"fr\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"Tip Meister\"},\"blog\":{\"link\":\"http://www.lamp-tips.com/\",\"title\":\"Linux Apache MySQL PHP Tips\"},\"blogid\":\"71186799\",\"content\":\"please help! \\nexplain in SIMPLE terms\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:00:16 +0000\",\"domain\":\"www.lamp-tips.com\",\"guid\":\"eb93f438e4191fd92fc1664a71c30a83\",\"id\":\"1e3b4799c71ea800e07243367e6972b4\",\"lang\":\"en\",\"link\":\"http://www.lamp-tips.com/apache/what-does-apache-camel-do/\",\"parseddate\":\"Wed, 26 Mar 2014 00:16:44 +0000\",\"postid\":\"33815629-a87b-488f-9ca5-98c7359733d1\",\"title\":\"What does Apache Camel do?\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Tip Meister\"},\"content\":\"please help! \\nexplain in SIMPLE terms\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:00:16 +0000\",\"id\":\"1e3b4799c71ea800e07243367e6972b4\",\"link\":\"http://www.lamp-tips.com/apache/what-does-apache-camel-do/\",\"received_at\":474364
 1192805852774,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"What does Apache Camel do?\",\"type\":\"blog\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"Svět knihy\"},\"blog\":{\"link\":\"http://ceske-knizky.cz/\",\"title\":\"České knížky\"},\"blogid\":\"71098056\",\"content\":\"Pilotem Apache (Macy Ed) \\n \\nAnotace Pilotem Apache (Macy Ed): \\n \\nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afghánistánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsmrtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez př
 estávky. Pokud jste přehlédl jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot
  v historii britského letectva vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \\n \\nInformace o Pilotem Apache (Macy Ed): \\n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: CZE  EAN: 9788090523227   \\nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém knihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \\n \\nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordc
 entrála X (Cílek Roman)  Výbuch nad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:50:28 +0000\",\"domain\":\"ceske-knizky.cz\",\"guid\":\"f6d6c4a76240a3d4ef20ea2a75f80893\",\"id\":\"1e3b4809fbcaa200e072eade39a77334\",\"lang\":\"cs\",\"link\":\"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/\",\"parseddate\":\"Wed, 26 Mar 2014 02:37:30 +0000\",\"postid\":\"858cfa87-6b6a-49a8-aa1c-7bf5449976d8\",\"title\":\"Pilotem Apache (Macy Ed)\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Svět knihy\"},\"content\":\"Pilotem Apache (Macy Ed) \\n \\nAnotace Pilotem Apache (Macy Ed): \\n \\nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afgháni
 stánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsmrtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez přestávky. Pokud jste přehlédl jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi 
 nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot v historii britského letectva vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \\n \\nInformace o Pilotem Apache (Macy Ed): \\n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: C
 ZE  EAN: 9788090523227   \\nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém knihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \\n \\nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordcentrála X (Cílek Roman)  Výbuch nad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:50:28 +0000\",\"id\":\"1e3b4809fbcaa200e072eade39a77334\",\"link\":\"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/\",\
 "schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Pilotem Apache (Macy Ed)\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"cs\",\"tag_extended\":\"cs\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Benjamin D. Thomas\"},\"blog\":{\"link\":\"http://lxer.com/\",\"title\":\"LXer Linux News\"},\"blogid\":\"40458952\",\"content\":\"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 02:36:43 +0000\",\"domain\":\"lxer.com\",\"guid\":\"ba43401e2c320b2c4d1fad73af1fe133\",\"id\":\"1e3b48f77886af80e072c8aa90d223ec\",\"lang\":\"en\",\"link\":\"http://lxer.com/module/newswire/ext_link.php?rid=200184\",\"parseddate\":\"Wed, 26 Mar 2014 03:04:54 +0000\",\"postid\":\"14e1bba7-358e-480d-9d5a-7dd55d8293bc\",\"title\":\"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities\",\"type\":\"post\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"name\":\"Benjamin D. Thomas\"},\"content\":\"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 02:36:43 +
 0000\",\"id\":\"1e3b48f77886af80e072c8aa90d223ec\",\"link\":\"http://lxer.com/module/newswire/ext_link.php?rid=200184\",\"received_at\":4743641234971543627,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities\",\"type\":\"blog\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"charmalloc\"},\"blog\":{\"link\":\"http://java.dzone.com/\",\"title\":\"Javalobby - The heart of the Java developer community\"},\"blogid\":\"59183819\",\"content\":\"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumulo provides a richer data model than simple key-value stores, but is not a fully relational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and t
 he Value are represented as byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated synchronization mechanism. As clients insert and query data, and as machines are added and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Ma
 r 2014 05:30:00 +0000\",\"domain\":\"java.dzone.com\",\"guid\":\"210840f9a9d28bfbefe3d97dc7f4b05f\",\"id\":\"1e3b4a7aca0bac00e07244d00bd5c3bc\",\"lang\":\"en\",\"link\":\"http://java.dzone.com/articles/big-data-apache-accumulo\",\"parseddate\":\"Wed, 26 Mar 2014 06:35:35 +0000\",\"postid\":\"c37ebe75-e2aa-4691-b548-68be0e8fc015\",\"title\":\"Big Data with Apache Accumulo Preserving Security with Open Source\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"charmalloc\"},\"content\":\"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumu
 lo provides a richer data model than simple key-value stores, but is not a fully relational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and the Value are represented as byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated 
 synchronization mechanism. As clients insert and query data, and as machines are added and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 05:30:00 +0000\",\"id\":\"1e3b4a7aca0bac00e07244d00bd5c3bc\",\"link\":\"http://java.dzone.com/articles/big-data-apache-accumulo\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Big Data with Apache Accumulo Preserving Security with Open Source\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Adam Fuchs\",\"sentiment\":8,\"confident\":1,\"label\":\"Person\",\"evidence\":7,\"type\":\"Person\",\"about\":1,\"themes\":[\"cell level security\",\"peta bytes\"]}],\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache Accumulo Preserving Security\",\"sentiment\":0,\"confident\":
 1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"紫贏\"},\"blog\":{\"link\":\"http://z-win.blogspot.com/\",\"title\":\"紫贏的記事本\"},\"blogid\":\"58568180\",\"content\":\"win7 上apache php 用com去開word 2013 時,字型沒換的問題\\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\\n但要用word另存pdf時,字型沒換,目前決解的方案是\\n控制台>系統管理工具>元件服務 ,\\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\\n內容 > 識別身分 用 互動式使用者\\n但使用時一定要有使用登入到桌面,無法在純service下進行\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 06:31:11 +0000\",\"domain\":\"z-win.blogspot.com\",\"guid\":\"66ef237ea01acb41d588b4a45fca07d6\",\"id\":\"1e3b4b038b6ea180e072c86f262afd10\",\"lang\":\"zh-tw\",\"link\":\"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html\",\"parseddate\":\"Wed, 
 26 Mar 2014 06:32:47 +0000\",\"postid\":\"550399d6-64b6-4541-930a-e40b53eff547\",\"title\":\"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"紫贏\"},\"content\":\"win7 上apache php 用com去開word 2013 時,字型沒換的問題\\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\\n但要用word另存pdf時,字型沒換,目前決解的方案是\\n控制台>系統管理工具>元件服務 ,\\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\\n內容 > 識別身分 用 互動式使用者\\n但使用時一定要有使用登入到桌面,無法在純service下進行\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 06:31:11 +0000\",\"id\":\"1e3b4b038b6ea180e072c86f262afd10\",\"link\":\"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html\",\"schema\":{\"version\":3},\"subtyp
 e\":\"post\",\"title\":\"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題\",\"type\":\"blog\"},\"language\":{\"confidence\":70,\"tag\":\"zh\",\"tag_extended\":\"zh-tw\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Sean Michael Kerner\"},\"blog\":{\"link\":\"http://lxer.com/\",\"title\":\"LXer Linux News\"},\"blogid\":\"40458952\",\"content\":\"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform.\\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4.2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \\\"As part of the Hyper-V support, we are releasing a version 
 of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\\\" Trippaers said. \\\"It also shows the possibilities of working with other languages in the CloudStack project.\\\"\\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the best tool for the job, he said.\\nDynamic Compute\\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the new Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\\n\\\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\\\" Trippaers said.\\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand 
 by the tenant.\\n\\\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\\\" Trippaers said.\\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enables off-loading of SSL traffic to load balancers.\\n\\\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\\\" Trippaers explained. \\\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\\\"\\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\\nWhat's Next\\nLooking forward, there are a number of different technologies and features und
 er consideration for future releases of CloudStack. One of those technologies is the open-source Docker container virtualization technology.\\n\\\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\\\" Trippaers said. \\\"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\\\"\\nOther features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.\\n\\\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\\\" Trippaers said. \\\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements t
 hat should translate in an even more predictable behavior for administrators and users alike.\\\"\\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 11:11:22 +0000\",\"domain\":\"lxer.com\",\"guid\":\"96eab9efacbe97941d0f03ffa2933164\",\"id\":\"1e3b4d75cd9ea900e072ae686e3e344c\",\"lang\":\"en\",\"link\":\"http://www.eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html\",\"parseddate\":\"Wed, 26 Mar 2014 11:15:22 +0000\",\"postid\":\"65ca246b-c53d-4c41-8b8c-a2a5d868d195\",\"title\":\"Apache CloudStack 4.3 Released\",\"type\":\"post\"},\"demographic\":{\"gender\":\"mostly_male\"},\"interaction\":{\"author\":{\"name\":\"Sean Michael Kerner\"},\"content\":\"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, 
 providing new features to users of the open-source cloud platform.\\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4.2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \\\"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\\\" Trippaers said. \\\"It also shows the possibilities of working with other languages in the CloudStack project.\\\"\\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the be
 st tool for the job, he said.\\nDynamic Compute\\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the new Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\\n\\\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\\\" Trippaers said.\\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand by the tenant.\\n\\\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\\\" Trippaers said.\\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enab
 les off-loading of SSL traffic to load balancers.\\n\\\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\\\" Trippaers explained. \\\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\\\"\\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\\nWhat's Next\\nLooking forward, there are a number of different technologies and features under consideration for future releases of CloudStack. One of those technologies is the open-source Docker container virtualization technology.\\n\\\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\\\" Trippaers said. \\\"I'm convinced that we will come up with the right answer in the not-so-di
 stant future and release Docker support with one of the next releases.\\\"\\nOther features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.\\n\\\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\\\" Trippaers said. \\\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\\\"\\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 11:11:22 +0000\",\"id\":\"1e3b4d75cd9ea900e072ae686e3e344c\",\"link\":\"http://www
 .eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache CloudStack 4.3 Released\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"CloudStack\",\"sentiment\":32,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"major update\",\"next releases\",\"bare metal deployments\",\"future releases\",\"code quality improvements\",\"right answer\",\"not-so-distant future\",\"CloudStack developers\",\"failure domains\",\"improving support\",\"huge number\",\"functional tests\",\"serious number\",\"predictable behavior\",\"open-source effort\",\"flexible compute capability\",\"compute offering\",\"creating instances\",\"different technologies\",\"original technology\"]},{\"name\":\"Citrix\",\"sentiment\":3,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\
 "type\":\"Company\",\"about\":0,\"themes\":[\"Citrix Application Delivery Controller\",\"significant performance improvements\",\"major update\",\"open-source effort\",\"original technology\",\"virtualization hypervisor\",\"precious resources\",\"virtual machines\",\"dedicated devices\"]},{\"name\":\"Apache\",\"sentiment\":3,\"confident\":1,\"label\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":0,\"themes\":[\"major update\",\"open-source effort\",\"original technology\"]},{\"name\":\"April 2012\",\"sentiment\":3,\"confident\":1,\"label\":\"Date\",\"evidence\":5,\"type\":\"Pattern\",\"about\":0,\"themes\":[\"major update\",\"open-source effort\",\"original technology\"]},{\"name\":\"Microsoft\",\"sentiment\":4,\"confident\":1,\"label\":\"Company\",\"evidence\":3,\"type\":\"Company\",\"about\":0,\"themes\":[\"original technology\",\"virtualization hypervisor\",\"supporting Hyper-V\",\"vice president\"]},{\"name\":\"Hugo Trippaers\",\"sentiment\":60,\"confident\":1,\"labe
 l\":\"Person\",\"evidence\":7,\"type\":\"Person\",\"about\":1,\"themes\":[\"next releases\",\"dynamic offerings\",\"code quality improvements\",\"future releases\",\"compute offering\",\"huge number\",\"functional tests\",\"different technologies\",\"serious number\",\"predictable behavior\",\"key feature\",\"right answer\",\"not-so-distant future\",\"significant performance improvements\",\"native support\",\"flexible compute capability\",\"dedicated devices\",\"precious resources\",\"virtual machines\",\"creating instances\",\"bare metal deployments\",\"CloudStack developers\",\"failure domains\",\"improving support\",\"supporting Hyper-V\",\"vice president\",\"container virtualization technology\"]},{\"name\":\"vice president\",\"sentiment\":2,\"confident\":1,\"label\":\"Job Title\",\"evidence\":3,\"type\":\"Job Title\",\"about\":0,\"themes\":[\"virtualization hypervisor\",\"supporting Hyper-V\",\"vice president\",\"native support\"]},{\"name\":\"Netscaler\",\"sentiment\":8,\"con
 fident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":0,\"themes\":[\"significant performance improvements\",\"precious resources\",\"virtual machines\",\"dedicated devices\",\"different technologies\",\"future releases\"]},{\"name\":\"Sean Michael Kerner\",\"sentiment\":3,\"confident\":1,\"label\":\"Person\",\"evidence\":3,\"type\":\"Person\",\"about\":0,\"themes\":[\"code quality improvements\",\"next release\",\"serious number\",\"predictable behavior\",\"senior editor\"]},{\"name\":\"senior editor\",\"sentiment\":3,\"confident\":1,\"label\":\"Job Title\",\"evidence\":3,\"type\":\"Job Title\",\"about\":0,\"themes\":[\"code quality improvements\",\"next release\",\"serious number\",\"predictable behavior\",\"senior editor\"]},{\"name\":\"\\\"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\\\"\",\"sentiment\":4,\"confident\":1,\"label
 \":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"supporting Hyper-V\",\"vice president\",\"native support\"]},{\"name\":\"\\\"It also shows the possibilities of working with other languages in the CloudStack project.\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"native support\"]},{\"name\":\"\\\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\\\"\",\"sentiment\":3,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"Compute offering\",\"creating instances\"]},{\"name\":\"\\\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\\\"\",\"sentiment\":4,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[
 \"fixed compute offerings catering\",\"flexible compute capability\",\"dynamic offerings\"]},{\"name\":\"\\\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\\\";\\\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\\\"\",\"sentiment\":2,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0,\"themes\":[\"Citrix Application Delivery Controller\",\"precious resources\",\"virtual machines\"]},{\"name\":\"\\\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\\\";\\\"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\\\"\",\"sentiment\":2,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0,\"themes\":[\"container virtualizati
 on technology\",\"bare metal deployments\",\"right answer\",\"not-so-distant future\",\"next releases\",\"CloudStack developers\",\"future releases\",\"failure domains\",\"improving support\"]},{\"name\":\"\\\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\\\";\\\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\\\"\",\"sentiment\":4,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0,\"themes\":[\"code quality improvements\",\"bare metal deployments\",\"huge number\",\"functional tests\",\"next release\",\"serious number\",\"predictable behavior\",\"CloudStack developers\",\"future releases\",\"failure domains\"
 ,\"improving support\"]}],\"sentiment\":3,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.591965675354,\"additional\":\"The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform. \\\"This frees up precio

<TRUNCATED>

[14/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
new file mode 100644
index 0000000..c912f0c
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
@@ -0,0 +1,719 @@
+{"blog":{"author":{"name":"Stileex"},"blog":{"link":"http:\/\/laptop.toprealtime.net\/","title":"Laptop News"},"blogid":"71107731","content":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","domain":"laptop.toprealtime.net","guid":"8921b89d1faad3d22a6e2a7ed55765e1","id":"1e3b209dfc61af80e072ce1ee22bb088","lang":"en","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","parseddate":"Sun, 23 Mar 2014 00:21:59 +0000","postid":"ed8205a9-2812-4fa6-a730-692b75adc9d7","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"post"},"interaction":{"author":{"name":"Stileex"},"content":"If you are a
  gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","id":"1e3b209dfc61af80e072ce1ee22bb088","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","received_at":4743640105474628098,"schema":{"version":3},"subtype":"post","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["fast performance","great graphics","audio output","gaming freak","gaming laptop","lightweight laptop","stunning \u2026"]}],
 "sentiment":2,"topics":[{"name":"Video Games","score":0.64548820257187,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0},{"name":"Hardware","score":0.45651730895042,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0}]},"title":{"sentiment":6,"topics":[{"name":"Video Games","score":0.62834107875824,"additional":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","hits":0}]}}}
+{"blog":{"author":{"name":"Slick aka, Paul Everett"},"blog":{"link":"http:\/\/travelswithtwinkles.blogspot.com\/","title":"Travels with Twinkles"},"blogid":"70539695","content":"March 17 - 21, 2014: After picking up our mail at the Globe post office (our new South Dakota license plates and registration), it was Adios to Globe and onward on Rt 188 up over a steep pass to Roosevelt Lake. \u00A0 Roosevelt Lake is a huge recreational area, enormous, with eight developed campgrounds that contain 1,500 campsites and several boat ramps and marinas. This area is jointly operated by the National Forest Service and the US Department of Agriculture.\u00A0 It is all first come, first served campsites, nice size campsites with picnic tables, shade armadas, fire pits, Toilet\/Bath house, potable water, but no hookups or amenities.\u00A0 It is a really great boating and fishing area that attracts people from all over.\u00A0 They have a crazy camping system here, to camp you first need a Tonto Pass
  which you can only get at local merchants or the ranger station, but not at the Campground ?\u00A0 This pass is a card with scratch off boxes for the date and is good for only 24 hours. Since we are staying 5 days, we had to buy 5 cards, one for each day and we have to put a new card on the vehicle with the new date scratched off each day. Seems like a wasteful and inefficient method !\u00A0 Tonto Pass While I'm on a rant, another thing, they have about 1,500 campsites here, but no store of any kind where you can buy necessities such as water, ice, beer, snacks, etc and also only two part time dump stations.\u00A0 Also only one privately owned gas station\/store at the south end of the recreation area, that's it, otherwise you must drive 30 some miles to Globe or Payson for anything. The recreation area could be making considerable money with some kind of store here, I would think ? \u00A0 \u00A0 On Wednesday, we went to the Tonto National Monument practically across the road from 
 the campground.\u00A0 This is a Salado Indian cliff dwelling site that is remarkable. \u00A0There is a lower and a upper cliff dwelling, however the upper is only accessible by guided tours on weekends.\u00A0 The view from the cliff dwelling was really beautiful although todays lake in the distance did not exist back then.\u00A0 If it had the Salado might still be here.\u00A0 They were productive farmers who built irrigation canals from the river to water their crops and were also hunters and gathers.\u00A0 They developed a style of Polychrome pottery with intricate designs that became most popular.\u00A0 They disappeared sometime in the mid 1400's, it is speculated due to the harsh cycles of drought and flooding here. This also plagued the early US settlers, which led to building the Roosevelt Dam which in turn led to the development of the whole Phoenix metropolitan area. \u00A0Progress ?\u00A0 Tonto Cliff Dwellings Interior of Cliff Dwellings Interior view of cliff dwellings View
  from the cliff dwellings, Roosevelt lake in distance View of Roosevelt Dam on display at visitors center View of Roosevelt Bridge Another angle of the bridge View of Roosevelt Dam, the original Dam was all masonry block construction.\nThe Dam was modified latter to raise to a higher height and to strengthen. The pretty side of Roosevelt Dam Thursday I went off in search of adventure with a drive from Roosevelt Dam to Tortilla Flat on the Apache Trail.\u00A0 Twinkles declined as she is not fond of roads that have endless drop offs with minimal or no guard rails. It is 26 miles in length, 22 of which is dirt and not smooth dirt, but mostly a bumpy, corduroy surface.\u00A0 It is also narrow in places, sometimes one lane only, steep, curvy and dusty.\u00A0 The Jeep has a stiff suspension and rides very rough, had to keep the speed low so I wouldn't dribble over the edge in places. The scenery however is world class, especially the most scary parts near Fish Creek.\u00A0 I did have a mi
 nor accident off the road taking a photo, when I lost my balance, fell into a cactus, scrapped by leg and landed on an anthill. I broke my fall with the camera, but somehow did not seem to damage it.\u00A0 Overall not much damage, except for about an hour with needle and tweezers picking out cactus needles. View of Salt River from the Apache Trail Apache Trail view, nice Bridge Brittle bush are blooming everywhere Poppys all over too ! Something in Daisy family, should know View of Apache Lake from Apache Trail Interesting Saguaro's along trail Luscious green Cottonwood Trees along creek Taking a break from the brain rattling ride Headings down into Canyon area View in the Canyon Over the bridge then up the narrow ledge above\u00A0 It was worse than it looks here Coming back up from the other side, better on the inside of road Nice camp fire setting along trail In spite of my slip, I got the photo I wanted Another common flower in bloom everywhere Theodore Roosevelt, traveled on the
  Apache trail to the dedication of the Roosevelt Dam on March 18, 1911 and said the following about the trail in his speech; \"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\". \u00A0(He did have a way with words.) In that vein, I'm now hooked on Tony Hillerman books, who also has a way with words.\u00A0 I am now on my third book this month, might be a record.\u00A0 Twinkles, the original bookworm is very impressed.\u00A0 The books take place in the Navajo and Pima Indian country where we are headed.\u00A0 I'm trying think more like an indian these days We are taking short hops north with the next one on Friday to Payson, Arizona.\u00A0 We plan about 4-5 days there to recharge with a full hookup campsite.\u00A0 Lots to see and do in Payson, it's Zane Grey country. Keep on moving On, Twink
 les and Slick","contenttype":"html","created_at":"Sun, 23 Mar 2014 05:10:54 +0000","domain":"travelswithtwinkles.blogspot.com","guid":"b6d83791b3272825ea1f6e8f64a77de7","id":"1e3b2498251ca300e072258d0d14ada8","lang":"en","link":"http:\/\/travelswithtwinkles.blogspot.com\/2014\/03\/roosevelt-dam-and-apache-trail.html","parseddate":"Sun, 23 Mar 2014 05:13:20 +0000","postid":"cd66debe-de0c-4f34-8290-8d72e79cc040","title":"Roosevelt Dam and the Apache Trail","type":"post"},"demographic":{"gender":"unisex"},"interaction":{"author":{"name":"Slick aka, Paul Everett"},"content":"March 17 - 21, 2014: After picking up our mail at the Globe post office (our new South Dakota license plates and registration), it was Adios to Globe and onward on Rt 188 up over a steep pass to Roosevelt Lake. \u00A0 Roosevelt Lake is a huge recreational area, enormous, with eight developed campgrounds that contain 1,500 campsites and several boat ramps and marinas. This area is jointly operated by the National For
 est Service and the US Department of Agriculture.\u00A0 It is all first come, first served campsites, nice size campsites with picnic tables, shade armadas, fire pits, Toilet\/Bath house, potable water, but no hookups or amenities.\u00A0 It is a really great boating and fishing area that attracts people from all over.\u00A0 They have a crazy camping system here, to camp you first need a Tonto Pass which you can only get at local merchants or the ranger station, but not at the Campground ?\u00A0 This pass is a card with scratch off boxes for the date and is good for only 24 hours. Since we are staying 5 days, we had to buy 5 cards, one for each day and we have to put a new card on the vehicle with the new date scratched off each day. Seems like a wasteful and inefficient method !\u00A0 Tonto Pass While I'm on a rant, another thing, they have about 1,500 campsites here, but no store of any kind where you can buy necessities such as water, ice, beer, snacks, etc and also only two part 
 time dump stations.\u00A0 Also only one privately owned gas station\/store at the south end of the recreation area, that's it, otherwise you must drive 30 some miles to Globe or Payson for anything. The recreation area could be making considerable money with some kind of store here, I would think ? \u00A0 \u00A0 On Wednesday, we went to the Tonto National Monument practically across the road from the campground.\u00A0 This is a Salado Indian cliff dwelling site that is remarkable. \u00A0There is a lower and a upper cliff dwelling, however the upper is only accessible by guided tours on weekends.\u00A0 The view from the cliff dwelling was really beautiful although todays lake in the distance did not exist back then.\u00A0 If it had the Salado might still be here.\u00A0 They were productive farmers who built irrigation canals from the river to water their crops and were also hunters and gathers.\u00A0 They developed a style of Polychrome pottery with intricate designs that became most
  popular.\u00A0 They disappeared sometime in the mid 1400's, it is speculated due to the harsh cycles of drought and flooding here. This also plagued the early US settlers, which led to building the Roosevelt Dam which in turn led to the development of the whole Phoenix metropolitan area. \u00A0Progress ?\u00A0 Tonto Cliff Dwellings Interior of Cliff Dwellings Interior view of cliff dwellings View from the cliff dwellings, Roosevelt lake in distance View of Roosevelt Dam on display at visitors center View of Roosevelt Bridge Another angle of the bridge View of Roosevelt Dam, the original Dam was all masonry block construction.\nThe Dam was modified latter to raise to a higher height and to strengthen. The pretty side of Roosevelt Dam Thursday I went off in search of adventure with a drive from Roosevelt Dam to Tortilla Flat on the Apache Trail.\u00A0 Twinkles declined as she is not fond of roads that have endless drop offs with minimal or no guard rails. It is 26 miles in length, 22
  of which is dirt and not smooth dirt, but mostly a bumpy, corduroy surface.\u00A0 It is also narrow in places, sometimes one lane only, steep, curvy and dusty.\u00A0 The Jeep has a stiff suspension and rides very rough, had to keep the speed low so I wouldn't dribble over the edge in places. The scenery however is world class, especially the most scary parts near Fish Creek.\u00A0 I did have a minor accident off the road taking a photo, when I lost my balance, fell into a cactus, scrapped by leg and landed on an anthill. I broke my fall with the camera, but somehow did not seem to damage it.\u00A0 Overall not much damage, except for about an hour with needle and tweezers picking out cactus needles. View of Salt River from the Apache Trail Apache Trail view, nice Bridge Brittle bush are blooming everywhere Poppys all over too ! Something in Daisy family, should know View of Apache Lake from Apache Trail Interesting Saguaro's along trail Luscious green Cottonwood Trees along creek Ta
 king a break from the brain rattling ride Headings down into Canyon area View in the Canyon Over the bridge then up the narrow ledge above\u00A0 It was worse than it looks here Coming back up from the other side, better on the inside of road Nice camp fire setting along trail In spite of my slip, I got the photo I wanted Another common flower in bloom everywhere Theodore Roosevelt, traveled on the Apache trail to the dedication of the Roosevelt Dam on March 18, 1911 and said the following about the trail in his speech; \"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\". \u00A0(He did have a way with words.) In that vein, I'm now hooked on Tony Hillerman books, who also has a way with words.\u00A0 I am now on my third book this month, might be a record.\u00A0 Twinkles, the original bookwor
 m is very impressed.\u00A0 The books take place in the Navajo and Pima Indian country where we are headed.\u00A0 I'm trying think more like an indian these days We are taking short hops north with the next one on Friday to Payson, Arizona.\u00A0 We plan about 4-5 days there to recharge with a full hookup campsite.\u00A0 Lots to see and do in Payson, it's Zane Grey country. Keep on moving On, Twinkles and Slick","contenttype":"html","created_at":"Sun, 23 Mar 2014 05:10:54 +0000","id":"1e3b2498251ca300e072258d0d14ada8","link":"http:\/\/travelswithtwinkles.blogspot.com\/2014\/03\/roosevelt-dam-and-apache-trail.html","received_at":4743640177664376334,"schema":{"version":3},"subtype":"post","title":"Roosevelt Dam and the Apache Trail","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"March 17","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":1,"themes":["several boat ramps","steep pass","
 post office","license plates","recreational area","developed campgrounds"]},{"name":"Roosevelt Lake","sentiment":19,"confident":1,"label":"Person","evidence":7,"type":"Person","about":1,"themes":["cliff dwellings View","visitors center View","masonry block construction","camp fire setting","endless drop offs","distance View","bridge View","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful","guard rails","pretty side","several boat ramps","steep pass","post office","license plates","recreational area","developed campgrounds","View"]},{"name":"Bath house","sentiment":4,"confident":1,"label":"building","evidence":4,"type":"Place","about":0,"themes":["nice size campsites","potable water","served campsites","picnic tables","shade armadas","fire pits","great boating","fishing area"]},{"name":"Fish Creek","sentiment":-3,"confident":1,"label":"Place","evidence":3,"type":"Place","about":0,"themes":["stiff suspension","scary parts","world c
 lass","minor accident"]},{"name":"Daisy","sentiment":17,"confident":1,"label":"Person","evidence":7,"type":"Person","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful"]},{"name":"Theodore Roosevelt","sentiment":17,"confident":1,"label":"http:\/\/en.wikipedia.org\/wiki\/Theodore_Roosevelt","evidence":7,"type":"Person","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful","third book"]},{"name":"March 18, 1911","sentiment":17,"confident":1,"label":"Date","evidence":4,"type":"Pattern","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful"]},{"name":"Alps","sentiment":17,"confident":1,"label":"Place","evidence":4,"type":"Place","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","are
 a View","indefinable something","sublimely beautiful"]},{"name":"Tony Hillerman","sentiment":4,"confident":1,"label":"http:\/\/en.wikipedia.org\/wiki\/Tony_Hillerman","evidence":7,"type":"Person","about":0,"themes":["third book","original bookworm"]},{"name":"Payson, Arizona","sentiment":0,"confident":1,"label":"Place","evidence":2,"type":"Place","about":0,"themes":["full hookup campsite","short hops"]},{"name":"Zane Grey","sentiment":0,"confident":1,"label":"http:\/\/en.wikipedia.org\/wiki\/Zane_Grey","evidence":1,"type":"Person","about":0,"themes":["full hookup campsite"]},{"name":"\"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\"","sentiment":6,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling rid
 e","area View","indefinable something","sublimely beautiful"]}],"sentiment":1},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"\u6807\u51C6\u597D\u9752\u5E74"},"blog":{"link":"http:\/\/blog.sina.com.cn\/itbrick","title":"brick_\u5B66\u4E60\u7B14\u8BB0"},"blogid":"72924259","category":"\u6280\u672F\u5B66\u4E60\u7B14\u8BB0","content":"<p>\napache\u4E0Etomcat\u914D\u5408\u4F7F\u7528\uFF0C\u53EF\u4EE5\u5C06\u4E00\u4E9B\u9759\u6001\u5730\u5740\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u4EE5\u51CF\u5C11tomcat\u7684\u538B\u529B\uFF0C\u4E5F\u5C31\u662F\u8BF4\u6240\u6709\u7684\u8BF7\u6C42\u90FD\u662F\u5148\u7ECF\u8FC780\u7AEF\u53E3apache\uFF0Capache\u901A\u8FC7\u914D\u7F6Ehttpd\u6765\u5206\u53D1\u8BF7\u6C42\u7ED9tomcat\uFF0C\u4E2A\u4EBA\u662F\u8FD9\u6837\u7B80\u5355\u7406\u89E3\u7684\uFF0C\u5982\u679C\u4EC0\u4E48\u7406\u89E3\u9519\u8BEF\u8BF7\u5927\u5BB6\u6307\u6B63\u3002<\/P>\n<p>\n\u6211\u5728\u4E0E\u5404\u4E2A\u5E73\u53F0\u505A\u63A5\u53E3\u7684\u65F6\u5019\u9047\u5230\u4E86\u4E00\u4E2A\u95EE\u9898\uFF0Cservlet\u90E8\u7F72\u5B8C\u6BD5\u786E\u8BA4\u65E0\u8BEF\u4EE5\u540E\uFF0C\u53D1\u73B0\u65E
 0\u6CD5\u8BBF\u95EE\u5230servlet\uFF0C\u67E5\u770Btomcat\u7684access\u65E5\u5FD7\uFF0C\u53D1\u73B0tomcat\u6839\u672C\u5C31\u6CA1\u6709\u63A5\u6536\u5230\u8BF7\u6C42\u6B64servlet\u7684\u8BF7\u6C42\uFF0C\u4E5F\u5C31\u662F\u8BF4\uFF0Capache\u6839\u672C\u5C31\u6CA1\u6709\u5C06\u6B64\u8BF7\u6C42\u5206\u53D1\u7ED9tomcat.\u77E5\u9053\u95EE\u9898\u51FA\u5728\u54EA\u91CC\u5C31\u597D\u529E\u5566\u3002\n\u6253\u5F00apache\u7684\u914D\u7F6E\u6587\u4EF6httpd\uFF0C\u627E\u5230\u4F60\u914D\u7F6Eapache\u7684\u5206\u53D1\uFF0C\u586B\u5165\u201Cjkmount \/<font COLOR=\"#FD2200\">\u9879\u76EE\u76F8\u5BF9\u8DEF\u5F84<\/FONT>\/* <font COLOR=\"#FF0000\">XXX<\/FONT>\u201D\uFF0C\u8FD9\u6837\u5C31\u628A\u6B64\u9879\u76EE\u4E0B\u7684\u6240\u6709\u8BBF\u95EE\u90FD\u4F1A\u53D1\u653E\u7ED9tomcat\u53BB\u5904\u7406\u4E86\uFF0C\u6B64\u65F6\u6D4B\u8BD5servlet\u5DF2\u7ECF\u53EF\u4EE5\u6B63\u5E38\u8BBF\u95EE\u3002\u8FD9\u6837\u663E\u7136\u6709\u70B9\u4E0D\u592A\u5408\u7406\u54AF\uFF0C\u5C31\u5931\u53BB\u4E86\u505A\u8D
 1F\u8F7D\u7684\u610F\u4E49\u3002\u6240\u4EE5\u5177\u4F53\u4E86\u89E3\u4E00\u4E0Bjkmount\u7684\u914D\u7F6E\u5427\u3002\u770B\u4E0B\u9762\uFF1A<\/P>\n<p>\u00A0<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF1A\u90E8\u5206\u9759\u6001\u9875\u9762\u9700\u8981apache\u5904\u7406\uFF0C\u4E0D\u8F6C\u53D1\u7ED9\u540E\u7AEF\u7684tomcat<br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70);
  WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount\n\u00A0<wbr \/>\/* \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###\u9ED8\u8BA4\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u7ED9tomcat\u5904\u7406<br \/>\n<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount<\/SPAN><span>\u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\/*.php \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###php\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.htm \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###htm\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.html\n\u00A0<wbr \/>router<\/SPAN><span>\u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">###html\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomca
 t\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(0,0,0); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<font FACE=\"Verdana\"><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/css\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###css\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/js\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<w
 br \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>###js\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<\/SPAN><br \/>\n<\/FONT><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/>\/image\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###image\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor
 : rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u7B2C\u4E8C\u79CD\u60C5\u5F62\uFF1A\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u5230\u540E\u7AEFtomcat\u4E4B\u540E\uFF0C\u5C06\u4E0D\u540C\u8DEF\u5F84\u5B9A\u4F4D\u7ED9\u4E0D\u540C\u7684tomcat<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoW
 s: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoL
 or: rgb(255,0,0)\">JkMount \/login\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat1<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/shop\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat2<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -web
 kit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/buy\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust:
  auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u6CE8\u610F\uFF0C\u8FD9\u79CD\u60C5\u5F62\u4E0B\uFF0C\u5FC5\u987B\u8981\u6709\u8FD9\u6837\u7684\u5904\u7406\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.list=router,jkstatus,tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spA
 CinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u5982\u679C\u662F\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF0Ctomcat1,tomcat2,tomcat3\u662F\u4E0D\u9700\u8981\u5199\u5728\u4E0A\u9762\u8FD9\u4E2A\u5730\u65B9\u7684<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u800C\u662F\u5199\u5728\u4E0B\u9762\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; W
 HiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.router.balance_workers=tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u5B9E\u9645\u4F7F\u7528\u4E2D\uFF0C\u5E94\u8BE5\u662F\u4E0A\u8FF0\u4E24\u79CD\u60C5\u5F62\u76F8\u7ED3\u5408\u4F7F\u7528\u7684\u8F83\u591A\uFF0C\u5C06\u9759\u6001\u5185\u5BB9\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u7136\u540E\u5C06\u52A8\u6001\u5185\u5BB9\u5206\u5E03\u5230\u4E0D\u540C\u7684\u670D\u52A1\u5668\u4E0A\u3002
 <\/P><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA
 7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:24:03 +0000","domain":"blog.sina.com.cn","guid":"6a902f61d0de9b94802dd8639766aeca","id":"1e3b253ba5e0a380e07202fe08241ac4","lang":"zh-cn","link":"http:\/\/blog.sina.com.cn\/s\/blog_6813a1a70101ujw1.html","parseddate":"Sun, 23 Mar 2014 16:23:06 +0000","postid":"375538de-6d1d-4b89-93ea-7bbc815ea231","title":"apache\u4E0Etomcat\u00A0\u914D\u5408\u4F7F\u7528\uFF0C\u7B80\u5355\u4E86\u89E3\u4E00\u4E0Bjkmount","type":"post"},"interaction":{"author":{"name":"\u6807\u51C6\u597D\u9752\u5E74"},"content":"<p>\napache\u4E0Etomcat\u914D\u5408\u4F7F\u7528\uFF0C\u53EF\u4EE5\u5C06\u4E00\u4E9B\u9759\u6001\u5730\u5740\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u4EE5\u51CF\u5C11tomcat\u7684\u538B\u529B\uFF0C\u4E5F\u5C31\u66
 2F\u8BF4\u6240\u6709\u7684\u8BF7\u6C42\u90FD\u662F\u5148\u7ECF\u8FC780\u7AEF\u53E3apache\uFF0Capache\u901A\u8FC7\u914D\u7F6Ehttpd\u6765\u5206\u53D1\u8BF7\u6C42\u7ED9tomcat\uFF0C\u4E2A\u4EBA\u662F\u8FD9\u6837\u7B80\u5355\u7406\u89E3\u7684\uFF0C\u5982\u679C\u4EC0\u4E48\u7406\u89E3\u9519\u8BEF\u8BF7\u5927\u5BB6\u6307\u6B63\u3002<\/P>\n<p>\n\u6211\u5728\u4E0E\u5404\u4E2A\u5E73\u53F0\u505A\u63A5\u53E3\u7684\u65F6\u5019\u9047\u5230\u4E86\u4E00\u4E2A\u95EE\u9898\uFF0Cservlet\u90E8\u7F72\u5B8C\u6BD5\u786E\u8BA4\u65E0\u8BEF\u4EE5\u540E\uFF0C\u53D1\u73B0\u65E0\u6CD5\u8BBF\u95EE\u5230servlet\uFF0C\u67E5\u770Btomcat\u7684access\u65E5\u5FD7\uFF0C\u53D1\u73B0tomcat\u6839\u672C\u5C31\u6CA1\u6709\u63A5\u6536\u5230\u8BF7\u6C42\u6B64servlet\u7684\u8BF7\u6C42\uFF0C\u4E5F\u5C31\u662F\u8BF4\uFF0Capache\u6839\u672C\u5C31\u6CA1\u6709\u5C06\u6B64\u8BF7\u6C42\u5206\u53D1\u7ED9tomcat.\u77E5\u9053\u95EE\u9898\u51FA\u5728\u54EA\u91CC\u5C31\u597D\u529E\u5566\u3002\n\u6253\u5F00apache\u7684\u914D\u7F6E\u6587\u4E
 F6httpd\uFF0C\u627E\u5230\u4F60\u914D\u7F6Eapache\u7684\u5206\u53D1\uFF0C\u586B\u5165\u201Cjkmount \/<font COLOR=\"#FD2200\">\u9879\u76EE\u76F8\u5BF9\u8DEF\u5F84<\/FONT>\/* <font COLOR=\"#FF0000\">XXX<\/FONT>\u201D\uFF0C\u8FD9\u6837\u5C31\u628A\u6B64\u9879\u76EE\u4E0B\u7684\u6240\u6709\u8BBF\u95EE\u90FD\u4F1A\u53D1\u653E\u7ED9tomcat\u53BB\u5904\u7406\u4E86\uFF0C\u6B64\u65F6\u6D4B\u8BD5servlet\u5DF2\u7ECF\u53EF\u4EE5\u6B63\u5E38\u8BBF\u95EE\u3002\u8FD9\u6837\u663E\u7136\u6709\u70B9\u4E0D\u592A\u5408\u7406\u54AF\uFF0C\u5C31\u5931\u53BB\u4E86\u505A\u8D1F\u8F7D\u7684\u610F\u4E49\u3002\u6240\u4EE5\u5177\u4F53\u4E86\u89E3\u4E00\u4E0Bjkmount\u7684\u914D\u7F6E\u5427\u3002\u770B\u4E0B\u9762\uFF1A<\/P>\n<p>\u00A0<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70)
 ; WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF1A\u90E8\u5206\u9759\u6001\u9875\u9762\u9700\u8981apache\u5904\u7406\uFF0C\u4E0D\u8F6C\u53D1\u7ED9\u540E\u7AEF\u7684tomcat<br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount\n\u00A0<wbr \/>\/* \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###\u9ED8\u8BA4\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u7ED9tomcat\u5904\u7406<br \/>\n<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount<\/SPAN><span>\
 u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\/*.php \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###php\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.htm \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###htm\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.html\n\u00A0<wbr \/>router<\/SPAN><span>\u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">###html\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(0,0,0); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width:
  0px\">\n<font FACE=\"Verdana\"><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/css\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###css\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/js\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>###js\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<\/SPAN><br \/>\n<\/FONT><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-sp
 ACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/>\/image\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###image\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px;
  MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u7B2C\u4E8C\u79CD\u60C5\u5F62\uFF1A\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u5230\u540E\u7AEFtomcat\u4E4B\u540E\uFF0C\u5C06\u4E0D\u540C\u8DEF\u5F84\u5B9A\u4F4D\u7ED9\u4E0D\u540C\u7684tomcat<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \
 /><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/login\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat1<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDi
 nG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/shop\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat2<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/buy\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8
 B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u6CE8\u610F\uFF0C\u8FD9\u79CD\u60C5\u5F62\u4E0B\uFF0C\u5FC5\u987B\u8981\u6709\u8FD9\u6837\u7684\u5904\u7406\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAn
 s: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.list=router,jkstatus,tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u5982\u679C\u662F\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF0Ctomcat1,tomcat2,tomcat3\u662F\u4E0D\u9700\u8981\u5199\u5728\u4E0A\u9762\u8FD9\u4E2A\u5730\u65B9\u7684<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px;
  pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u800C\u662F\u5199\u5728\u4E0B\u9762\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.router.balance_workers=tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0
 px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u5B9E\u9645\u4F7F\u7528\u4E2D\uFF0C\u5E94\u8BE5\u662F\u4E0A\u8FF0\u4E24\u79CD\u60C5\u5F62\u76F8\u7ED3\u5408\u4F7F\u7528\u7684\u8F83\u591A\uFF0C\u5C06\u9759\u6001\u5185\u5BB9\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u7136\u540E\u5C06\u52A8\u6001\u5185\u5BB9\u5206\u5E03\u5230\u4E0D\u540C\u7684\u670D\u52A1\u5668\u4E0A\u3002<\/P><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina
 &bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:24:03 +0000","id":"1e3b253ba5e0a380e07202fe08241ac4","link":"http:\/\/blog.sina.com.cn\/s\/blog_6813a1a70101ujw1.html","schema":{"version":3},"subtype"
 :"post","title":"apache\u4E0Etomcat\u00A0\u914D\u5408\u4F7F\u7528\uFF0C\u7B80\u5355\u4E86\u89E3\u4E00\u4E0Bjkmount","type":"blog"},"language":{"confidence":62,"tag":"zh","tag_extended":"zh-cn"}}
+{"blog":{"author":{"name":"Linux"},"blog":{"link":"http:\/\/www.linuxidc.com\/","title":"Linux\u516C\u793E - Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9"},"blogid":"71099770","content":"Apache Camel 2.13.0 \u53D1\u5E03\u4E86\uFF0C\u53EF\u901A\u8FC7\u8FD9\u91CC \u4E0B\u8F7D \uFF0C\u8BE5\u7248\u672C\u7ECF\u8FC7\u4E86 6 \u4E2A\u6708\u7684\u5F00\u53D1\uFF0C\u5305\u542B\u4E00\u4E9B\u65B0\u7684\u7EC4\u4EF6\u7528\u6765\u96C6\u6210 Splunk\u3001Hadoop 2\u3001Infinispan\u3001JGroups \u7B49\u3002\u8BE6\u60C5\u8BF7\u770B release notes\nApache Camel \u662F\u4E00\u4E2A\u975E\u5E38\u5F3A\u5927\u7684\u57FA\u4E8E\u89C4\u5219\u7684\u8DEF\u7531\u4EE5\u53CA\u5A92\u4ECB\u5F15\u64CE\uFF0C\u8BE5\u5F15\u64CE\u63D0\u4F9B\u4E86\u4E00\u4E2A\u57FA\u4E8EPOJO\u7684 \u4F01\u4E1A\u5E94\u7528\u6A21\u5F0F(Enterprise Integration Patterns)\u7684\u5B9E\u73B0\uFF0C\u4F60\u53EF\u4EE5\u91C7\u7528\u5176\u5F02\u5E38\u5F3A\u5927\u4E14\u5341\u5206\u6613\u7528\u7684API (\u53EF\u4EE5\u8BF4\u662F\u4E00\u79CDJava\u7684\u9886\u57DF\
 u5B9A\u4E49\u8BED\u8A00 Domain Specific Language)\u6765\u914D\u7F6E\u5176\u8DEF\u7531\u6216\u8005\u4E2D\u4ECB\u7684\u89C4\u5219\u3002 \u901A\u8FC7\u8FD9\u79CD\u9886\u57DF\u5B9A\u4E49\u8BED\u8A00\uFF0C\u4F60\u53EF\u4EE5\u5728\u4F60\u7684IDE\u4E2D\u7528\u7B80\u5355\u7684Java Code\u5C31\u53EF\u4EE5\u5199\u51FA\u4E00\u4E2A\u7C7B\u578B\u5B89\u5168\u5E76\u5177\u6709\u4E00\u5B9A\u667A\u80FD\u7684\u89C4\u5219\u63CF\u8FF0\u6587\u4EF6\u3002\u8FD9\u4E0E\u90A3\u79CD\u590D\u6742\u7684XML\u914D\u7F6E\u76F8\u6BD4\u6781\u5927\u7B80\u5316\u4E86\u89C4\u5219\u5B9A\u4E49\u5F00\u53D1\u3002 \u5F53\u7136Apache Camel\u4E5F\u63D0\u4F9B\u4E86\u4E00\u4E2A\u5BF9Spring \u914D\u7F6E\u6587\u4EF6\u7684\u652F\u6301\u3002\nApache Camel \u7684\u8BE6\u7EC6\u4ECB\u7ECD\uFF1A\u8BF7\u70B9\u8FD9\u91CC\nApache Camel \u7684\u4E0B\u8F7D\u5730\u5740\uFF1A\u8BF7\u70B9\u8FD9\u91CC\n\u76F8\u5173\u9605\u8BFB\uFF1A\nApache Camel\u6846\u67B6\u96C6\u6210Spring http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm\nApache Camel\u6846\
 u67B6\u5165\u95E8\u793A\u4F8B http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm\nApache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54000.htm\nApache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:41:14 +0000","domain":"www.linuxidc.com","guid":"7a1732fd1f06963ea78e6e00626f5bdc","id":"1e3b25620e42a100e0726b93894e2256","lang":"zh-cn","link":"http:\/\/www.linuxidc.com\/Linux\/2014-03\/98702.htm","links":["http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54000.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm"],"parseddate":"Sun, 23 Mar 2014 06:45:16 +0000","postid":"2e863b15-7146-4143-905c-981eb64c6931","title":"Apache Camel 2.13.0 \u53D1\u5E03\uFF0C\u89C4\u5219\u5F15\u64CE","type":"post"},"interaction":{"author":{"name":"Lin
 ux"},"content":"Apache Camel 2.13.0 \u53D1\u5E03\u4E86\uFF0C\u53EF\u901A\u8FC7\u8FD9\u91CC \u4E0B\u8F7D \uFF0C\u8BE5\u7248\u672C\u7ECF\u8FC7\u4E86 6 \u4E2A\u6708\u7684\u5F00\u53D1\uFF0C\u5305\u542B\u4E00\u4E9B\u65B0\u7684\u7EC4\u4EF6\u7528\u6765\u96C6\u6210 Splunk\u3001Hadoop 2\u3001Infinispan\u3001JGroups \u7B49\u3002\u8BE6\u60C5\u8BF7\u770B release notes\nApache Camel \u662F\u4E00\u4E2A\u975E\u5E38\u5F3A\u5927\u7684\u57FA\u4E8E\u89C4\u5219\u7684\u8DEF\u7531\u4EE5\u53CA\u5A92\u4ECB\u5F15\u64CE\uFF0C\u8BE5\u5F15\u64CE\u63D0\u4F9B\u4E86\u4E00\u4E2A\u57FA\u4E8EPOJO\u7684 \u4F01\u4E1A\u5E94\u7528\u6A21\u5F0F(Enterprise Integration Patterns)\u7684\u5B9E\u73B0\uFF0C\u4F60\u53EF\u4EE5\u91C7\u7528\u5176\u5F02\u5E38\u5F3A\u5927\u4E14\u5341\u5206\u6613\u7528\u7684API (\u53EF\u4EE5\u8BF4\u662F\u4E00\u79CDJava\u7684\u9886\u57DF\u5B9A\u4E49\u8BED\u8A00 Domain Specific Language)\u6765\u914D\u7F6E\u5176\u8DEF\u7531\u6216\u8005\u4E2D\u4ECB\u7684\u89C4\u5219\u3002 \u901A\u8FC7\u8FD9\u79CD\u9886\u57
 DF\u5B9A\u4E49\u8BED\u8A00\uFF0C\u4F60\u53EF\u4EE5\u5728\u4F60\u7684IDE\u4E2D\u7528\u7B80\u5355\u7684Java Code\u5C31\u53EF\u4EE5\u5199\u51FA\u4E00\u4E2A\u7C7B\u578B\u5B89\u5168\u5E76\u5177\u6709\u4E00\u5B9A\u667A\u80FD\u7684\u89C4\u5219\u63CF\u8FF0\u6587\u4EF6\u3002\u8FD9\u4E0E\u90A3\u79CD\u590D\u6742\u7684XML\u914D\u7F6E\u76F8\u6BD4\u6781\u5927\u7B80\u5316\u4E86\u89C4\u5219\u5B9A\u4E49\u5F00\u53D1\u3002 \u5F53\u7136Apache Camel\u4E5F\u63D0\u4F9B\u4E86\u4E00\u4E2A\u5BF9Spring \u914D\u7F6E\u6587\u4EF6\u7684\u652F\u6301\u3002\nApache Camel \u7684\u8BE6\u7EC6\u4ECB\u7ECD\uFF1A\u8BF7\u70B9\u8FD9\u91CC\nApache Camel \u7684\u4E0B\u8F7D\u5730\u5740\uFF1A\u8BF7\u70B9\u8FD9\u91CC\n\u76F8\u5173\u9605\u8BFB\uFF1A\nApache Camel\u6846\u67B6\u96C6\u6210Spring http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm\nApache Camel\u6846\u67B6\u5165\u95E8\u793A\u4F8B http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm\nApache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236 http:\/\/www.linuxidc.com\/Li
 nux\/2012-02\/54000.htm\nApache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:41:14 +0000","id":"1e3b25620e42a100e0726b93894e2256","link":"http:\/\/www.linuxidc.com\/Linux\/2014-03\/98702.htm","received_at":4743640202461956381,"schema":{"version":3},"subtype":"post","title":"Apache Camel 2.13.0 \u53D1\u5E03\uFF0C\u89C4\u5219\u5F15\u64CE","type":"blog"},"language":{"confidence":66,"tag":"zh","tag_extended":"zh-cn"},"links":{"code":[200,200,200,200],"created_at":["Sun, 23 Mar 2014 06:59:54 +0000","Sun, 23 Mar 2014 06:59:55 +0000","Sun, 23 Mar 2014 06:59:57 +0000","Sun, 23 Mar 2014 06:59:59 +0000"],"meta":{"charset":["UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text\/html","text\/html","text\/html","text\/html"],"description":["Apache Camel\u63D0\u4F9B\u4E86\u548CSpring\u7684\u96C6\u6210,\u901A\u8FC7Spring\u5BB9\u5668(ApplicationContext)\u6765\u7BA1\u7406Camel\u7684CamelContext,\u
 8FD9\u6837\u7684\u8BDD,\u5C31\u4E0D\u9700\u8981\u5199\u4EE3\u7801\u6765\u63A7","Apache Camel\u662FApache\u57FA\u91D1\u4F1A\u4E0B\u7684\u4E00\u4E2A\u5F00\u6E90\u9879\u76EE,\u5B83\u662F\u4E00\u4E2A\u57FA\u4E8E\u89C4\u5219\u8DEF\u7531\u548C\u5904\u7406\u7684\u5F15\u64CE\uFF0C\u63D0\u4F9B\u4F01\u4E1A\u96C6\u6210\u6A21\u5F0F\u7684Java\u5BF9\u8C61\u7684\u5B9E\u73B0\uFF0C\u901A\u8FC7\u5E94\u7528\u7A0B","\u672C\u6587\u7B80\u5355\u4ECB\u7ECD\u4E00\u4E0BApache Camel\u5982\u4F55\u5BF9route\u8FDB\u884C\u4E8B\u52A1\u63A7\u5236,\u9996\u5148\u4ECB\u7ECD\u6574\u4E2Aroute\u53EA\u6D89\u53CA\u5230\u4E00\u4E2A\u4E8B\u52A1\u53C2\u4E0E\u8005\u7684\u60C5\u51B5,\u7136\u540E\u518D\u4ECB\u7ECDroute\u4E2D\u6D89\u53CA\u5230","\u7EE7\u4E0A\u6B21Camel\u5982\u4F55\u5728\u505A\u9879\u76EE\u96C6\u6210\u7C7B\u578B\u7684\u9879\u76EE\uFF08\u89C1 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54002.htm \uFF09\u4E2D\u7528\u4E8E\u4ECEFTP\u53D6\u6587\u4EF6\u548C\u4F20\u6587\u4EF6\u4E4B\u540E"],"keywords":[["Apache","Spring","
 Apache Camel","Camel","Apache Camel\u6846\u67B6\u96C6\u6210Spring","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"],["Apache","Apache Camel","Camel","Apache Camel\u6846\u67B6\u5165\u95E8\u793A\u4F8B","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"],["Apache","Apache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"],["Apache","Apache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"]],"lang":["zh","zh","zh","zh"]},"normalized_url":["http:\/\/linuxidc.com\/Linux\/2012-02\/53564.htm","http:\/\/lin
 uxidc.com\/Linux\/2012-02\/53565.htm","http:\/\/linuxidc.com\/Linux\/2012-02\/54000.htm","http:\/\/linuxidc.com\/Linux\/2012-02\/54001.htm"],"retweet_count":[0,0,0,0],"title":["Apache Camel\u6846\u67B6\u96C6\u6210Spring_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9","Apache Camel\u6846\u67B6\u5165\u95E8\u793A\u4F8B_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9","Apache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9","Apache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9"],"url":["http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54000.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm"]}}
+{"blog":{"atomversion":"1.0","author":{"link":"http:\/\/unix.stackexchange.com\/users\/63364","name":"user3422709"},"blog":{"link":"http:\/\/unix.stackexchange.com\/questions","title":"Recent Questions - Unix & Linux Stack Exchange"},"blogid":"70930296","content":"<p>I want to upgrade apache version from 2.2.15 to 2.4.4 in centos. is there need to download update file to a folder and update apache.is there any posibility? help me<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:12:01 +0000","domain":"unix.stackexchange.com","guid":"f63feb8825334de16e1dcd6def5759ad","id":"1e3b27393172ae80e072be788cb08176","lang":"en","link":"http:\/\/unix.stackexchange.com\/questions\/121001\/how-to-upgrade-apache-2-2-15-to-2-4-4-in-centos","parseddate":"Sun, 23 Mar 2014 10:49:20 +0000","postid":"488789d6-6eee-4247-b3d8-0cc8e11811f5","title":"how to upgrade apache 2.2.15 to 2.4.4 in centos","type":"post","updated":"Sun, 23 Mar 2014 10:12:01 +0000"},"interaction":{"author":{"link":"http:\/
 \/unix.stackexchange.com\/users\/63364","name":"user3422709"},"content":"<p>I want to upgrade apache version from 2.2.15 to 2.4.4 in centos. is there need to download update file to a folder and update apache.is there any posibility? help me<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:12:01 +0000","id":"1e3b27393172ae80e072be788cb08176","link":"http:\/\/unix.stackexchange.com\/questions\/121001\/how-to-upgrade-apache-2-2-15-to-2-4-4-in-centos","received_at":4743640262723317531,"schema":{"version":3},"subtype":"post","title":"how to upgrade apache 2.2.15 to 2.4.4 in centos","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":6},"title":{"sentiment":6}}}
+{"blog":{"blog":{"link":"http:\/\/oto.detik.com\/","title":"oto.detik"},"blogid":"58741660","content":"<img src=\"http:\/\/images.detik.com\/content\/2014\/03\/23\/647\/covertvs.jpg\" align=\"left\" hspace=\"7\" width=\"100\" \/>4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu.<img width='1' height='1' src='http:\/\/detik.feedsportal.com\/c\/33613\/f\/656103\/s\/38817599\/mf.gif' border='0'\/><br clear='all'\/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href=\"http:\/\/share.feedsportal.com\/share\/twitter\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/twitter.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsport
 al.com\/share\/facebook\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/facebook.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/linkedin\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/linkedin.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/gplus\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/googleplus.png\" border=\"0\" \/><\/a>\u00A0
 <a href=\"http:\/\/share.feedsportal.com\/share\/email\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/email.png\" border=\"0\" \/><\/a><\/td><td valign='middle'><\/td><\/tr><\/table><\/div><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f
 \/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.img\" border=\"0\"\/><\/a><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.htm\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.img\" border=\"0\"\/><\/a><img width=\"1\" height=\"1\" src=\"http:\/\/pi.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2t.img\" border=\"0\"\/>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:20:27 +0000","domain":"oto.detik.com","enclosure":{"length":"10240","type":"image\/jpg","url":"http:\/\/detik.feedsportal.com\/c\/33613\/f\/656103\/e\/1\/s\/38817599\/l\/0Limages0Bdetik0N0Ccontent0C20A140C0A30C230C6470Ccovertvs0Bjpg\/covertvs.jpg"},"guid":"93b3473955afddad63f7b3114649900e","id":"1e3b274c0b0aa780e072d88bd3090e90","lang":"ms","link":"
 http:\/\/oto.detik.com\/readfoto\/2014\/03\/23\/172027\/2534055\/647\/1\/tvs-apache-taklukkan-ganasnya-kalimantan","parseddate":"Sun, 23 Mar 2014 12:50:31 +0000","postid":"2b77192b-e580-48d9-b13c-1b39e02c6db1","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"content":"<img src=\"http:\/\/images.detik.com\/content\/2014\/03\/23\/647\/covertvs.jpg\" align=\"left\" hspace=\"7\" width=\"100\" \/>4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu.<img width='1' height='1' src='http:\/\/detik.feedsportal.com\/c\/33613\/f\/656103\/s\/38817599\/mf.gif' border='0'\/><br clear='all'\/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href=\"http:\/\/share.feedsportal.com\/share\/twitter\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-
 kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/twitter.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/facebook\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/facebook.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/linkedin\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/linkedin.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/gplus\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2
 Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/googleplus.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/email\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/email.png\" border=\"0\" \/><\/a><\/td><td valign='middle'><\/td><\/tr><\/table><\/div><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.htm\" rel=\"nofollow\"><im
 g src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.img\" border=\"0\"\/><\/a><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.htm\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.img\" border=\"0\"\/><\/a><img width=\"1\" height=\"1\" src=\"http:\/\/pi.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2t.img\" border=\"0\"\/>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:20:27 +0000","id":"1e3b274c0b0aa780e072d88bd3090e90","link":"http:\/\/oto.detik.com\/readfoto\/2014\/03\/23\/172027\/2534055\/647\/1\/tvs-apache-taklukk
 an-ganasnya-kalimantan","schema":{"version":3},"subtype":"post","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
+{"blog":{"atomversion":"1.0","author":{"name":"basyura"},"blog":{"link":"http:\/\/d.hatena.ne.jp\/basyura\/","title":"basyura's blog"},"blogid":"55821125","content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> 
 \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","domain":"d.hatena.ne.jp","guid":"1e2c1f54e6c6548c4381b6e9a6361cea","id":"1e3b279c65cbac00e0729be4b09bfd5c","lang":"ja","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","links":["http:\/\/localhost:3000","http:\/\/localhost\/sample","http:\/\/localhost:3000\/sample"],"parseddate":"Sun, 23 Mar 2014 15:32:03 +0000","postid":"1426a00d-f33f-4144-b396-5160bda65a31","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"post","updated":"Sun, 23 Mar 2014 10:56:24 +0000"},"interaction":
 {"author":{"name":"basyura"},"content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304
 B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","id":"1e3b279c65cbac00e0729be4b09bfd5c","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","schema":{"version":3},"subtype":"post","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"blog"},"language":{"confidence":49,"tag":"ja","tag_extended":"ja"},"links":{"code":[404],"created_at":["Sun, 23 Mar 2014 15:41:17 +0000"],"hops":[["http:\/\/localhost\/sample"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["http:\/\/localhost\/sample"]}}
+{"blog":{"author":{"name":"Vincenzo Avallone"},"blog":{"link":"http:\/\/www.maidirecalcio.com\/","title":"Mai Dire Calcio"},"blogid":"71333736","content":"<p>Il messaggio recapitato al commissario tecnico della Nazionale argentina \u00E8 forte e chiaro: gli argentini vogliono Carlitos Tevez ai Mondiali. Nel Barrio di Ciudadela infatti, periferia di Buenos Aires non lontano dal quartiere di origine dell\u2019 Apache, un muro \u00E8 stato colorato di albiceleste, come fosse la schiena di un giocatore immaginario che veste la [\u2026]<\/p><p>The post <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\">Tevez, Fuerte Apache si mobilita per portarlo al Mondiale<\/a> appeared first on <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\">Mai Dire Calcio<\/a>.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:15:06 +0000","domain":"www.maidirecalcio.com","guid":"e9bc0c5da4bbccea8531762935b3d
 759","id":"1e3b27c63205a900e072218749574b36","lang":"it","link":"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html","parseddate":"Sun, 23 Mar 2014 11:53:33 +0000","postid":"8c831eeb-c75b-4c15-9bd8-7ffe0c2d1aaa","title":"Tevez, Fuerte Apache si mobilita per portarlo al Mondiale","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"Vincenzo Avallone"},"content":"<p>Il messaggio recapitato al commissario tecnico della Nazionale argentina \u00E8 forte e chiaro: gli argentini vogliono Carlitos Tevez ai Mondiali. Nel Barrio di Ciudadela infatti, periferia di Buenos Aires non lontano dal quartiere di origine dell\u2019 Apache, un muro \u00E8 stato colorato di albiceleste, come fosse la schiena di un giocatore immaginario che veste la [\u2026]<\/p><p>The post <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\">Tevez, Fuerte Apac
 he si mobilita per portarlo al Mondiale<\/a> appeared first on <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\">Mai Dire Calcio<\/a>.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:15:06 +0000","id":"1e3b27c63205a900e072218749574b36","link":"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html","schema":{"version":3},"subtype":"post","title":"Tevez, Fuerte Apache si mobilita per portarlo al Mondiale","type":"blog"},"language":{"confidence":92,"tag":"it","tag_extended":"it"}}
+{"blog":{"author":{"name":"Jose Manuel Ib\u00E1\u00F1ez Argos"},"blog":{"link":"http:\/\/informaticayseguridad.blogspot.com\/","title":"Blog de Inform\u00E1tica y Seguridad en Internet"},"blogid":"54303941","content":"Se han anunciado dos vulnerabilidades en el servidor web Apache que\u00A0 podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. \u00A0Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Detalle e Impacto de las las vulnerabilidades \u00A0El primero de los problemas (con CVE-2014-0098) reside en mod_log_config al tratar cookies truncadas. Por otra parte, un problema (con CVE-2013-6438) en el tratamiento de XML en mod_dav al calcular de forma incorrecta el final de una cadena al eliminar espacios iniciales y situar un car\u00E1ct
 er NUL fuera del b\u00FAfer.\u00A0 Recomendaci\u00F3n\nApache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n\nApache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html Changes with Apache 2.4.9 http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9 Fuente: Hispasec","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:18:25 +0000","domain":"informaticayseguridad.blogspot.com","guid":"588afa42e7391ab3061d8032a1be10a6","id":"1e3b27cd9bd5a680e072f29ae72e07b6","lang":"es","link":"http:\/\/informaticayseguridad.blogspot.com\/2014\/03\/servidor-web-dos-vulnerabilidades-en-el.html","links":["http:\/\/httpd.apache.org\/download.cgi","http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9"],"parseddate":"Sun, 23 Mar 2014 11:39:50 +0000","postid":"cad3d44a-c491-42d8-8a72-3aa6e6d2c
 1e1","title":"SERVIDOR WEB.  Dos vulnerabilidades en el Apache","type":"post"},"demographic":{"gender":"mostly_male"},"interaction":{"author":{"name":"Jose Manuel Ib\u00E1\u00F1ez Argos"},"content":"Se han anunciado dos vulnerabilidades en el servidor web Apache que\u00A0 podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. \u00A0Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Detalle e Impacto de las las vulnerabilidades \u00A0El primero de los problemas (con CVE-2014-0098) reside en mod_log_config al tratar cookies truncadas. Por otra parte, un problema (con CVE-2013-6438) en el tratamiento de XML en mod_dav al calcular de forma incorrecta el final de una cadena al eliminar espacios iniciales y situar un car\u00E1cter NUL fuera del b\
 u00FAfer.\u00A0 Recomendaci\u00F3n\nApache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n\nApache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html Changes with Apache 2.4.9 http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9 Fuente: Hispasec","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:18:25 +0000","id":"1e3b27cd9bd5a680e072f29ae72e07b6","link":"http:\/\/informaticayseguridad.blogspot.com\/2014\/03\/servidor-web-dos-vulnerabilidades-en-el.html","received_at":4743640275696469253,"schema":{"version":3},"subtype":"post","title":"SERVIDOR WEB.  Dos vulnerabilidades en el Apache","type":"blog"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"links":{"code":[200,200,200],"created_at":["Sat, 22 Mar 2014 23:19:50 +0000","Sun, 23 Mar 2014 11:51:11 +0000","Sun, 23 Mar 2014 11:51:12 +0000"],"meta":{"charset":["UTF
 -8","UTF-8",""],"content_type":["text\/html","text\/html",""],"lang":["unknown","unknown",""]},"normalized_url":["http:\/\/httpd.apache.org\/download.cgi","http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9"],"retweet_count":[0,0,0],"title":["Download - The Apache HTTP Server Project","httpd 2.4 vulnerabilities - The Apache HTTP Server Project","null"],"url":["http:\/\/httpd.apache.org\/download.cgi","http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":-7,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["final de una cadena","condiciones de denegaci\u00F3n","incluyendo diversas implementaciones","popular del mundo","infinidad de plataformas","situar un car\u00E1cter","tratamiento de XML","dos vulnerabilidades","servidor web","atacante remoto","sitios web","otr
 a parte","forma incorrecta","espacios iniciales","vulnerabilities http"]},{"name":"Microsoft","sentiment":13,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["condiciones de denegaci\u00F3n","incluyendo diversas implementaciones","popular del mundo","infinidad de plataformas","dos vulnerabilidades","servidor web","atacante remoto","sitios web"]}],"sentiment":-2,"topics":[{"name":"Software e Internet","score":0.63400012254715,"additional":"Se han anunciado dos vulnerabilidades en el servidor web Apache que podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Recomendaci\u00F3n Apache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, qu
 e puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n Apache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","hits":0},{"name":"Tecnolog\u00EDa","score":0.50564223527908,"additional":"Se han anunciado dos vulnerabilidades en el servidor web Apache que podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Recomendaci\u00F3n Apache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n Apache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","hits":0},{"name":"Medios
  de Comunicaci\u00F3n Social","score":0.46225720643997,"additional":"Se han anunciado dos vulnerabilidades en el servidor web Apache que podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Recomendaci\u00F3n Apache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n Apache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","hits":0}]},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"FunPonsel"},"blog":{"link":"http:\/\/funponsel.org\/","title":"PonSeL Indonesia."},"blogid":"71176595","content":"TVS Apache Taklukkan Ganasnya Kalimantan Pool \u2013 detikOto Minggu, 23\/03\/2014 17:20 WIB \u00A0- 4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu melintasi rute khas wilayah Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kal-Sel. Istimewa\/TVS. Komentar (0 Komentar) Urutkan berdasar : Share|","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:03:00 +0000","domain":"funponsel.org","guid":"9cc4cab8a6376d8cafcbeaa80f0d3282","id":"1e3b28b75ee5aa00e072a0c0d1521cc2","lang":"ms","link":"http:\/\/funponsel.org\/33178\/tvs-apache-taklukkan-ganasnya-kalimantan.html","parseddate":"Sun, 23 Mar 2014 13
 :07:27 +0000","postid":"648d8f04-5dd8-4cfc-b400-e53f10e862c3","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"author":{"name":"FunPonsel"},"content":"TVS Apache Taklukkan Ganasnya Kalimantan Pool \u2013 detikOto Minggu, 23\/03\/2014 17:20 WIB \u00A0- 4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu melintasi rute khas wilayah Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kal-Sel. Istimewa\/TVS. Komentar (0 Komentar) Urutkan berdasar : Share|","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:03:00 +0000","id":"1e3b28b75ee5aa00e072a0c0d1521cc2","link":"http:\/\/funponsel.org\/33178\/tvs-apache-taklukkan-ganasnya-kalimantan.html","received_at":4743640296833951570,"schema":{"version":3},"subtype":"p
 ost","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
+{"blog":{"author":{"name":"Archive"},"blog":{"link":"http:\/\/www.devheads.net\/","title":"DevHeads.net - Developer Notes"},"blogid":"56002132","category":"User","content":"<p>Here is the example of what I am trying to do.<\/p>\n<p>JBoss Webserver Private IP : 192.168.10.100<\/p>\n<p>JBoss Webserver Public IP 172.x.x.x<\/p>\n<p>Server connected to Jboss: 192.168.10.101 & 192.168.10.102<\/p>\n<p>If I am on the Jboss machine I can access 192.168.10.101\\abc\\test.html<\/p>\n<p>If I am outside the network its not possible to access URL<br \/>\n192.168.10.101\\abc\\test.html<\/p>\n<p>To solve the problem I have PAC file as a proxy for my browser which<br \/>\nredirect all request for 192.168.10.101 address to apache httpd proxy<br \/>\nserver which sits inside the (192.168.x.x) network.<\/p>\n<p>Upto this point everything works OK.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 14:34:15 +0000","domain":"www.devheads.net","guid":"41571cd1022a2d8c8489c7a5ff5de4db","id":"1e3b298
 35490ad80e072e841574845c2","lang":"en","link":"http:\/\/www.devheads.net\/server\/apache\/user\/apache-httpd-proxy-configuration.htm","parseddate":"Sun, 23 Mar 2014 14:48:42 +0000","postid":"c2729127-a37c-4999-abc0-64b574c1bab5","title":"[users@httpd] apache httpd proxy configuration","type":"post"},"interaction":{"author":{"name":"Archive"},"content":"<p>Here is the example of what I am trying to do.<\/p>\n<p>JBoss Webserver Private IP : 192.168.10.100<\/p>\n<p>JBoss Webserver Public IP 172.x.x.x<\/p>\n<p>Server connected to Jboss: 192.168.10.101 & 192.168.10.102<\/p>\n<p>If I am on the Jboss machine I can access 192.168.10.101\\abc\\test.html<\/p>\n<p>If I am outside the network its not possible to access URL<br \/>\n192.168.10.101\\abc\\test.html<\/p>\n<p>To solve the problem I have PAC file as a proxy for my browser which<br \/>\nredirect all request for 192.168.10.101 address to apache httpd proxy<br \/>\nserver which sits inside the (192.168.x.x) network.<\/p>\n<p>Upto this po
 int everything works OK.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 14:34:15 +0000","id":"1e3b29835490ad80e072e841574845c2","link":"http:\/\/www.devheads.net\/server\/apache\/user\/apache-httpd-proxy-configuration.htm","received_at":4743640321305275164,"schema":{"version":3},"subtype":"post","title":"[users@httpd] apache httpd proxy configuration","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Jboss","sentiment":-4,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["httpd proxy server"]}],"sentiment":0,"topics":[{"name":"Software and Internet","score":0.50918489694595,"additional":"Here is the example of what I am trying to do. Server connected to Jboss: 192.168.10.101 & 192.168.10.102 If I am on the Jboss machine I can access 192.168.10.101\\abc\\test.html If I am outside the network its not possible to access URL 192.168.10.101\\abc\\test.html To solve the problem 
 I have PAC file as a proxy for my browser which redirect all request for 192.168.10.101 address to apache httpd proxy server which sits inside the (192.168.x.x) network.","hits":0}]},"title":{"sentiment":0,"topics":[{"name":"Software and Internet","score":0.50268775224686,"additional":"[users@httpd] apache httpd proxy configuration","hits":0}]}}}
+{"blog":{"author":{"name":"Pablo Villalobos"},"blog":{"link":"http:\/\/cinematerapia.blogspot.com\/","title":"S\u00F3lo Cine"},"blogid":"35825511","content":"Esto viene a ser como Rambo, nadam\u00E1s que con un indio apache acabando con todo el regimiento militar norteamericano.\nY es de las que deben haber visto Tarantino y Rodr\u00EDguez porque la m\u00FAsica cambia abruptamente, y hay cortes justito antes de las malas palabras. S\u00ED, cortes con el ruido que hace una edici\u00F3n con sierra el\u00E9ctrica.\nCorr\u00EDa el a\u00F1o de 1866 y resulta que los soldados de la confederaci\u00F3n ya estaban por irse a sus casas y nada, que Sam Glass acepta quedarse horas extras porque la paga ser\u00E1 buena y quiere comprarse un pedacito de tierra para vivir tranquilamente con Martha, su mujer. Y le escribe una carta explic\u00E1ndole su demora y le env\u00EDa una cajita musical para que se entretenga en lo que \u00E9l llega. Y ac\u00E1 anda el indio ''camisa amarilla'' mate y mate s
 oldados y en cortes vemos a\u00A0Martha cantando una canci\u00F3n mientras o lava la ropa en agua hirviendo afuera en el patio o prepara mantequilla, no entend\u00ED, el caso es que ella, en sus d\u00EDas de ocio y hast\u00EDo, compuso la letra para la m\u00FAsica de la cajita y ahora con ella pasa el tiempo m\u00E1s musicalmente en espera de su esposo.\nSi he sabido que al final durante los cr\u00E9ditos me cantar\u00EDan la canci\u00F3n con la trama no habr\u00EDa puesto tanta atenci\u00F3n. Al final te cuenta toda la historia, y dice:\nBajo el cielo azul que cubre desiertos, valles y monta\u00F1as, hab\u00EDa un indio muy pac\u00EDfico que se cans\u00F3 de ver morir a su pueblo. Por ser como era la tribu mezcaleros lo eligi\u00F3 como jefe y se puso la camisa amarilla. Hasta fum\u00F3 la pipa de la paz con el hombre blanco, quienes lo llamaban ''ella''.\nPero un d\u00EDa alguien rompi\u00F3 la promesa y con todo el dolor de su coraz\u00F3n, este indio tuvo que pelear para protege
 r su tierra y a su gente.\u00A0\nQu\u00E9 bueno que eran de los tranquilos!","contenttype":"html","created_at":"Sun, 23 Mar 2014 15:12:00 +0000","domain":"cinematerapia.blogspot.com","guid":"2617ab4c64af2bd63264a5ed826a3a73","id":"1e3b29d7b54aa000e072875ee6772ff6","lang":"es","link":"http:\/\/cinematerapia.blogspot.com\/2014\/03\/apache-blood-1975.html","parseddate":"Su

<TRUNCATED>

[42/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
index 0a66560..1bc4e16 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
@@ -1,10 +1,10 @@
-"{\"amazon\":{\"anchor\":\"531918\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"c
 ontenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 26 Mar 2014 03:04:38 +0000\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b3ae08871aa00e072922735bfd03a\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#531918\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25\",\"threadid\":\"148679\",\"threadstarter\":1,\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n  
               Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"id\":\"1e3b3ae08871aa00e072922735bfd03a\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#531918\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\
 "en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
-"{\"amazon\":{\"anchor\":\"531918\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"c
 ontenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b3ae08871aa00e072ec7f008f23d8\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#531918\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"threadstarter\":1,\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n
                 Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"id\":\"1e3b3ae08871aa00e072ec7f008f23d8\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#531918\",\"received_at\":4743642501859712487,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"
 language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
-"{\"amazon\":{\"anchor\":\"532139\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b45ca802ea600e07231b5509f040a\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=148679&tstart=100#532139\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"id\":\"1e3b45ca802ea600e07231b5509f040a\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532139\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"languag
 e\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-6},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
-"{\"amazon\":{\"anchor\":\"532139\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 26 Mar 2014 03:04:38 +0000\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b45ca802ea600e0724270bd005ab0\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=148679&tstart=25#532139\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"id\":\"1e3b45ca802ea600e0724270bd005ab0\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#532139\",\"received_at\":4743641321202510935,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache is under DOS attack
 \",\"type\":\"amazon\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-6},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
-"{\"amazon\":{\"anchor\":\"532169\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Will somepne from amazon respond to this...???<br />\\n<br />\\nDo they have something at their end to prevent these half opened http requests...???\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Wed, 26 Mar 2014 01:13:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b483c5977a600e072fa2485801888\",\"language\":\"English\",\"link\":\"https://forums.aws.
 amazon.com/thread.jspa?threadID=148679&tstart=100#532169\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Will somepne from amazon respond to this...???<br />\\n<br />\\nDo they have something at their end to prevent these half opened http requests...???\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 01:13:00 +0000\",\"id\":\"1e3b483c5977a600e072fa2485801888\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532169\",\"received_at\":4743642502084954161,\"schema\":{\"version\":3},\"su
 btype\":\"post\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
-"{\"amazon\":{\"anchor\":\"532280\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293234\",\"name\":\"hardeepb\",\"username\":\"hardeepb\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hey,<br />\\n<br />\\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br />\\nQuick search provide couple of useful link to being.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\\\">http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\\\">http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount</a><br />\\n<br />\\
 nOR<br />\\n<br />\\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\\\">https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\\\">https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf</a><br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Wed, 26 Mar 2014 04:38:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b4a068f68a400e072b065ee85dcba\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.
 com/thread.jspa?threadID=148679&tstart=100#532280\",\"links\":[\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\",\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\",\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\",\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293234\",\"name\":\"hardeepb\",\"username\":\"hardeepb\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hey,<br />\\n<br />\\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br />\\nQuick search provide couple
  of useful link to being.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\\\">http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\\\">http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount</a><br />\\n<br />\\nOR<br />\\n<br />\\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\\\">https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\\\">https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf</a><br />\\n<br />\\nThanks\\n                </div>\",
 \"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 04:38:00 +0000\",\"id\":\"1e3b4a068f68a400e072b065ee85dcba\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532280\",\"received_at\":4743642502085381141,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200,200,200,200],\"created_at\":[\"Sat, 29 Mar 2014 15:17:47 +0000\",\"Sat, 29 Mar 2014 15:17:47 +0000\",\"Sat, 29 Mar 2014 15:17:48 +0000\",\"Sat, 29 Mar 2014 15:17:48 +0000\"],\"hops\":[[\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\"],[],[],[]],\"meta\":{\"charset\":[\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"\",\"(1 reply) Hello, up to CentOS 5.3 it was possible, to control new ip connections by \\\"recent\\\", \
 \\"seconds\\\" and \\\"hitcount\\\" -A INPUT -m state --state NEW -m recent --set -p tcp --dport 80 -A INPUT -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -p tcp --dport 80 -j LOG --log-prefix \\\"FW DROP IP Flood: \\\" -A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT so that -\",\"aiProtect identifies and mitigates DDoS attacks, while tracking the source and method of the attack. aiProtect works like a reverse proxy server and is placed in between your origin server and the web.\",\"Complementing traditional network security solutions, DenyAll's Protect family of Web Application Firewalls (WAF) and Web Services Firewalls (WSF) rely on a HTTP/HTTPS reverse proxy architecture and provide\"],\"keywords\":[[],[],[\"aiProtect Denial of Service Protection\",\"Security\",\"Network Infrastructure\",\"DOS DDOS Firewall SYN flood Free Trial\",\
 "Monitoring\",\"Server Software\",\"AWS\",\"EC2\"],[\"DenyAll Protect - Web Application & Service Firewalls\",\"Security\",\"Network Infrastructure\",\"security waf reverse proxy\",\"Monitoring\",\"Server Software\",\"AWS\",\"EC2\"]],\"lang\":[\"unknown\",\"unknown\",\"unknown\",\"unknown\"]},\"normalized_url\":[\"http://sysextra.blogspot.co.uk/2010/11/using-mighty-iptables-to-prevent-https.html\",\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\",\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\",\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\"],\"retweet_count\":[0,0,0,0],\"title\":[\"The Sysadmin Extravaganza: Using the Mighty IPTables to Prevent an HTTP(s) DoS Attack\",\"[CentOS] iptables: hitcount - Grokbase\",\"aiProtect Denial of Service Protection on AWS Marketplace\",\"DenyAll Protect - Web Application & Service Firewalls on AWS Marketplace\"],\"url\":[\"http://sysextra.blogspot.co.uk/2010/11/using-mighty-iptables-to-prevent-https.h
 tml\",\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\",\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\",\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\"]},\"salience\":{\"content\":{\"sentiment\":2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
-"{\"amazon\":{\"anchor\":\"532553\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=157781\",\"name\":\"ashokkumarkashnia\",\"username\":\"ashokkumarkashnia\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Team,<br />\\n<br />\\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br />\\n<br />\\nI want to use s3 bucket for it.<br />\\n<br />\\nPlease help<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:35:16 +0000\",\"created_at\":\"Thu, 27 Mar 2014 03:54:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"
 id\":\"1e3b5636dd03ac00e0720ed85ed96cc0\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75#532553\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75\",\"threadid\":\"148890\",\"threadstarter\":1,\"title\":\"Centerlized apache logs manage\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=157781\",\"name\":\"ashokkumarkashnia\",\"username\":\"ashokkumarkashnia\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Team,<br />\\n<br />\\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br />\\n<br />\\nI want to use s3 bucket for it.<br />\\n<br />\\nPlease help<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014
  03:54:00 +0000\",\"id\":\"1e3b5636dd03ac00e0720ed85ed96cc0\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75#532553\",\"received_at\":4743642503378266122,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Centerlized apache logs manage\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"amazon\":{\"anchor\":\"532637\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=151961\",\"name\":\"soundstrue-phil\",\"username\":\"soundstrue-phil\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer/cluster)<br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/shop/\\\">http://example.com/shop/</a><br />\\n  ProxyPass /shop <a class=\\\"jive-link-external\\\" href=\\\"http://app01.example-util.com\\\">http://app01.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/blog/\\\">http://example.co
 m/blog/</a><br />\\n  ProxyPass /blog <a class=\\\"jive-link-external\\\" href=\\\"http://app02.example-util.com\\\">http://app02.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/store/\\\">http://example.com/store/</a><br />\\n   ProxyPass /store  storeapp-env.elasticbeanstalk.com<br />\\n<br />\\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br />\\n<br />\\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 27 Mar 2014 
 13:54:12 +0000\",\"created_at\":\"Thu, 27 Mar 2014 10:10:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b597f49f0ac00e072700816848226\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0#532637\",\"links\":[\"http://example.com/shop/\",\"http://app01.example-util.com\",\"http://example.com/blog/\",\"http://app02.example-util.com\",\"http://example.com/store/\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0\",\"threadid\":\"148928\",\"threadstarter\":1,\"title\":\"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?\",\"topics\":\"Computers\",\"type\":\"thread\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=151961\",\"name\":\"s
 oundstrue-phil\",\"username\":\"soundstrue-phil\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer/cluster)<br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/shop/\\\">http://example.com/shop/</a><br />\\n  ProxyPass /shop <a class=\\\"jive-link-external\\\" href=\\\"http://app01.example-util.com\\\">http://app01.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/blog/\\\">http://example.com/blog/</a><br />\\n  ProxyPass /blog <a class=\\\"jive-link-external\\\" href=\\\"http://app02.example-util.com\\\">http://app02.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"htt
 p://example.com/store/\\\">http://example.com/store/</a><br />\\n   ProxyPass /store  storeapp-env.elasticbeanstalk.com<br />\\n<br />\\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br />\\n<br />\\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014 10:10:00 +0000\",\"id\":\"1e3b597f49f0ac00e072700816848226\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0#532637\",\"received_at\":4743641818705321945,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"
 title\":\"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[404,500,404,500,404],\"created_at\":[\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\"],\"hops\":[[\"http://example.com/shop/\"],[\"http://app01.example-util.com\"],[\"http://example.com/blog/\"],[\"http://app02.example-util.com\"],[\"http://example.com/store/\"]],\"normalized_url\":[null,null,null,null,null],\"retweet_count\":[0,0,0,0,0],\"title\":[\"null\",\"null\",\"null\",\"null\",\"null\"],\"url\":[\"http://example.com/shop/\",\"http://app01.example-util.com\",\"http://example.com/blog/\",\"http://app02.example-util.com\",\"http://example.com/store/\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Amazon.com\",\"sentiment\":-1,\"confident\":1,\"labe
 l\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":1,\"themes\":[\"elastic beanstalk load balancer\",\"single apache host\",\"dns name\",\"complicated configuration\",\"perhaps elasticbeanstalk\"]},{\"name\":\"VPC\",\"sentiment\":-1,\"confident\":1,\"label\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":1,\"themes\":[\"elastic beanstalk load balancer\",\"single apache host\",\"dns name\",\"complicated configuration\",\"perhaps elasticbeanstalk\"]}],\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"amazon\":{\"anchor\":\"533193\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/el
 asticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it h
 as to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font color=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"
 US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193\",\"links\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"threadstarter\":1,\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":
 {\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be
  improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it has to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font co
 lor=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=149131&tstart=0#533193\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200,200,200],\"created_at\":[\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:12 +0000\"],\"hops\":[[],[],[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"]],\"meta\":{\"charset\":[\"CP1252\",\"CP1252\",\"CP1252\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.\",\"Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.\",\"AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, a
 nd Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy.\"],\"lang\":[\"unknown\",\"unknown\",\"unknown\"]},\"normalized_url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"],\"retweet_count\":[0,0,0],\"title\":[\"Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk\",\"SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk\",\"Supported Platforms - AWS Elastic Beanstalk\"],\"url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInst
 ance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":1,\"type\":\"Company\",\"about\":0}],\"sentiment\":-2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
-"{\"amazon\":{\"anchor\":\"533271\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"
 AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only g
 rants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
+{"amazon":{"anchor":"531918","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br />\nI have a apache webserver running infront of tomcat...<br />\nI see millions of requests in my apache access log..<br />\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\n<br />\nI am not a security expert...But after googling <br />\n<br />\nI have installed mod_security and mod_evasive...<br />\n<br />\nPlease help me if this is the only thing I can do...<br />\n<br />\nOr is there anything else provided by Amazon...<br />\n<br />\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\n<br />\nThanks\n                </div>","contenttype":"html","countrycode":"US","crawled":"Wed, 2
 6 Mar 2014 03:04:38 +0000","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b3ae08871aa00e072922735bfd03a","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#531918","siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25","threadid":"148679","threadstarter":1,"title":"Apache is under DOS attack","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br />\nI have a apache webserver running infront of tomcat...<br />\nI see millions of requests in my apache access log..<br />\nF
 rom some IP's there are more than 1 lakhs of requests daily...<br />\n<br />\nI am not a security expert...But after googling <br />\n<br />\nI have installed mod_security and mod_evasive...<br />\n<br />\nPlease help me if this is the only thing I can do...<br />\n<br />\nOr is there anything else provided by Amazon...<br />\n<br />\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\n<br />\nThanks\n                </div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","id":"1e3b3ae08871aa00e072922735bfd03a","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#531918","schema":{"version":3},"subtype":"thread","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-
 6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"531918","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br />\nI have a apache webserver running infront of tomcat...<br />\nI see millions of requests in my apache access log..<br />\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\n<br />\nI am not a security expert...But after googling <br />\n<br />\nI have installed mod_security and mod_evasive...<br />\n<br />\nPlease help me if this is the only thing I can do...<br />\n<br />\nOr is there anything else provided by Amazon...<br />\n<br />\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\n<br />\nThanks\n                </div>","contenttype":"html","countrycode":"US","crawled":"Sat, 2
 9 Mar 2014 10:48:38 +0000","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b3ae08871aa00e072ec7f008f23d8","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#531918","siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100","threadid":"148679","threadstarter":1,"title":"Apache is under DOS attack","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br />\nI have a apache webserver running infront of tomcat...<br />\nI see millions of requests in my apache access log..<br />\
 nFrom some IP's there are more than 1 lakhs of requests daily...<br />\n<br />\nI am not a security expert...But after googling <br />\n<br />\nI have installed mod_security and mod_evasive...<br />\n<br />\nPlease help me if this is the only thing I can do...<br />\n<br />\nOr is there anything else provided by Amazon...<br />\n<br />\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\n<br />\nThanks\n                </div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","id":"1e3b3ae08871aa00e072ec7f008f23d8","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#531918","received_at":4743642501859712487,"schema":{"version":3},"subtype":"thread","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type
 ":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532139","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br />\n<br />\nIt looks like it's type of syn flood attack...<br />\n<br />\nthanks...\n                </div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b45ca802ea600e07231b5509f040a","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532139","siteid":"4fb31966d4","thread":"https://forums.aws.ama
 zon.com/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br />\n<br />\nIt looks like it's type of syn flood attack...<br />\n<br />\nthanks...\n                </div>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","id":"1e3b45ca802ea600e07231b5509f040a","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532139","schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company
 ","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532139","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br />\n<br />\nIt looks like it's type of syn flood attack...<br />\n<br />\nthanks...\n                </div>","contenttype":"html","countrycode":"US","crawled":"Wed, 26 Mar 2014 03:04:38 +0000","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b45ca802ea600e0724270bd005ab0","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#532139","siteid":"4fb31966d4","thread":"https://forums.aws.amaz
 on.com/thread.jspa?threadID=148679&tstart=25","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br />\n<br />\nIt looks like it's type of syn flood attack...<br />\n<br />\nthanks...\n                </div>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","id":"1e3b45ca802ea600e0724270bd005ab0","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#532139","received_at":4743641321202510935,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Apache","sentiment":-6
 ,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532169","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Will somepne from amazon respond to this...???<br />\n<br />\nDo they have something at their end to prevent these half opened http requests...???\n                </div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Wed, 26 Mar 2014 01:13:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b483c5977a600e072fa2485801888","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532169","siteid":"4fb31966d4","thr
 ead":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Will somepne from amazon respond to this...???<br />\n<br />\nDo they have something at their end to prevent these half opened http requests...???\n                </div>","contenttype":"html","created_at":"Wed, 26 Mar 2014 01:13:00 +0000","id":"1e3b483c5977a600e072fa2485801888","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532169","received_at":4743642502084954161,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentimen
 t":0},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532280","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293234","name":"hardeepb","username":"hardeepb"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hey,<br />\n<br />\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br />\nQuick search provide couple of useful link to being.<br />\n<a class=\"jive-link-external\" href=\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\">http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html</a><br />\n<a class=\"jive-link-external\" href=\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\">http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount</a><br />\n<br />\nOR<br />\n<br />\nYou can search in marketplace for AMIs, h
 owever this might require topology change, for example check links below.<br />\n<a class=\"jive-link-external\" href=\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\">https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5</a><br />\n<a class=\"jive-link-external\" href=\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\">https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf</a><br />\n<br />\nThanks\n                </div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Wed, 26 Mar 2014 04:38:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b4a068f68a400e072b065ee85dcba","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532280","links":["http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prev
 ent-https.html","http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount","https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5","https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf"],"siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293234","name":"hardeepb","username":"hardeepb"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hey,<br />\n<br />\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br />\nQuick search provide couple of useful link to being.<br />\n<a class=\"jive-link-external\" href=\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\">http://sysextra.blogspot.com/2010/
 11/using-mighty-iptables-to-prevent-https.html</a><br />\n<a class=\"jive-link-external\" href=\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\">http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount</a><br />\n<br />\nOR<br />\n<br />\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br />\n<a class=\"jive-link-external\" href=\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\">https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5</a><br />\n<a class=\"jive-link-external\" href=\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\">https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf</a><br />\n<br />\nThanks\n                </div>","contenttype":"html","created_at":"Wed, 26 Mar 2014 04:38:00 +0000","id":"1e3b4a068f68a400e072b065ee85dcba","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532280","received_at":4743642502085381141,"schem
 a":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200,200],"created_at":["Sat, 29 Mar 2014 15:17:47 +0000","Sat, 29 Mar 2014 15:17:47 +0000","Sat, 29 Mar 2014 15:17:48 +0000","Sat, 29 Mar 2014 15:17:48 +0000"],"hops":[["http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html"],[],[],[]],"meta":{"charset":["UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text/html","text/html","text/html","text/html"],"description":["","(1 reply) Hello, up to CentOS 5.3 it was possible, to control new ip connections by \"recent\", \"seconds\" and \"hitcount\" -A INPUT -m state --state NEW -m recent --set -p tcp --dport 80 -A INPUT -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -p tcp --dport 80 -j LOG --log-prefix \"FW DROP IP Flood: \" -A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -m recent --update --seconds 60 --hitcount
  1000 -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT so that -","aiProtect identifies and mitigates DDoS attacks, while tracking the source and method of the attack. aiProtect works like a reverse proxy server and is placed in between your origin server and the web.","Complementing traditional network security solutions, DenyAll's Protect family of Web Application Firewalls (WAF) and Web Services Firewalls (WSF) rely on a HTTP/HTTPS reverse proxy architecture and provide"],"keywords":[[],[],["aiProtect Denial of Service Protection","Security","Network Infrastructure","DOS DDOS Firewall SYN flood Free Trial","Monitoring","Server Software","AWS","EC2"],["DenyAll Protect - Web Application & Service Firewalls","Security","Network Infrastructure","security waf reverse proxy","Monitoring","Server Software","AWS","EC2"]],"lang":["unknown","unknown","unknown","unknown"]},"normalized_url":["http://sysextra.blogspot.co.uk/2010/11/using-mighty-iptables-to-prevent-http
 s.html","http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount","https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5","https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf"],"retweet_count":[0,0,0,0],"title":["The Sysadmin Extravaganza: Using the Mighty IPTables to Prevent an HTTP(s) DoS Attack","[CentOS] iptables: hitcount - Grokbase","aiProtect Denial of Service Protection on AWS Marketplace","DenyAll Protect - Web Application & Service Firewalls on AWS Marketplace"],"url":["http://sysextra.blogspot.co.uk/2010/11/using-mighty-iptables-to-prevent-https.html","http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount","https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5","https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf"]},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.533636
 62958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532553","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=157781","name":"ashokkumarkashnia","username":"ashokkumarkashnia"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Team,<br />\n<br />\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br />\n<br />\nI want to use s3 bucket for it.<br />\n<br />\nPlease help<br />\n<br />\nThanks\n                </div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:35:16 +0000","created_at":"Thu, 27 Mar 2014 03:54:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=30","id":"1e3b5636dd03ac00e0720ed85ed96cc0","language":"English","link":"https://foru
 ms.aws.amazon.com/thread.jspa?threadID=148890&tstart=75#532553","siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75","threadid":"148890","threadstarter":1,"title":"Centerlized apache logs manage","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=157781","name":"ashokkumarkashnia","username":"ashokkumarkashnia"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Team,<br />\n<br />\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br />\n<br />\nI want to use s3 bucket for it.<br />\n<br />\nPlease help<br />\n<br />\nThanks\n                </div>","contenttype":"html","created_at":"Thu, 27 Mar 2014 03:54:00 +0000","id":"1e3b5636dd03ac00e0720ed85ed96cc0","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75#532553","received_at":474
 3642503378266122,"schema":{"version":3},"subtype":"thread","title":"Centerlized apache logs manage","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"amazon":{"anchor":"532637","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=151961","name":"soundstrue-phil","username":"soundstrue-phil"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer/cluster)<br />\n<br />\n<a class=\"jive-link-external\" href=\"http://example.com/shop/\">http://example.com/shop/</a><br />\n  ProxyPass /shop <a class=\"jive-link-external\" href=\"http://app01.example-util.com\">http://app01.example-util.com</a><br />\n<br />\n<a class=\"jive-link-external\" href=\"http://example.com/blog/\">http://example.com/blog/</a><br />\n  ProxyPass /blog <a class=\"jive-link-external
 \" href=\"http://app02.example-util.com\">http://app02.example-util.com</a><br />\n<br />\n<a class=\"jive-link-external\" href=\"http://example.com/store/\">http://example.com/store/</a><br />\n   ProxyPass /store  storeapp-env.elasticbeanstalk.com<br />\n<br />\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br />\n<br />\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\n                </div>","contenttype":"html","countrycode":"US","crawled":"Thu, 27 Mar 2014 13:54:12 +0000","created_at":"Thu, 27 Mar 2014 10:10:00 +0000","domain":"aws.amazon.com","forumid":"4fb
 3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=86","id":"1e3b597f49f0ac00e072700816848226","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0#532637","links":["http://example.com/shop/","http://app01.example-util.com","http://example.com/blog/","http://app02.example-util.com","http://example.com/store/"],"siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0","threadid":"148928","threadstarter":1,"title":"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?","topics":"Computers","type":"thread"},"demographic":{"gender":"male"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=151961","name":"soundstrue-phil","username":"soundstrue-phil"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Greetings to all! I am curious if anyone is 
 currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer/cluster)<br />\n<br />\n<a class=\"jive-link-external\" href=\"http://example.com/shop/\">http://example.com/shop/</a><br />\n  ProxyPass /shop <a class=\"jive-link-external\" href=\"http://app01.example-util.com\">http://app01.example-util.com</a><br />\n<br />\n<a class=\"jive-link-external\" href=\"http://example.com/blog/\">http://example.com/blog/</a><br />\n  ProxyPass /blog <a class=\"jive-link-external\" href=\"http://app02.example-util.com\">http://app02.example-util.com</a><br />\n<br />\n<a class=\"jive-link-external\" href=\"http://example.com/store/\">http://example.com/store/</a><br />\n   ProxyPass /store  storeapp-env.elasticbeanstalk.com<br />\n<br />\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am 
 entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br />\n<br />\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\n                </div>","contenttype":"html","created_at":"Thu, 27 Mar 2014 10:10:00 +0000","id":"1e3b597f49f0ac00e072700816848226","link":"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0#532637","received_at":4743641818705321945,"schema":{"version":3},"subtype":"thread","title":"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404,500,404,500,404],"created_at":["Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 
 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000"],"hops":[["http://example.com/shop/"],["http://app01.example-util.com"],["http://example.com/blog/"],["http://app02.example-util.com"],["http://example.com/store/"]],"normalized_url":[null,null,null,null,null],"retweet_count":[0,0,0,0,0],"title":["null","null","null","null","null"],"url":["http://example.com/shop/","http://app01.example-util.com","http://example.com/blog/","http://app02.example-util.com","http://example.com/store/"]},"salience":{"content":{"entities":[{"name":"Amazon.com","sentiment":-1,"confident":1,"label":"Company","evidence":5,"type":"Company","about":1,"themes":["elastic beanstalk load balancer","single apache host","dns name","complicated configuration","perhaps elasticbeanstalk"]},{"name":"VPC","sentiment":-1,"confident":1,"label":"Company","evidence":5,"type":"Company","about":1,"themes":["elastic beanstalk load balancer","single apache host","dns name","complicated 
 configuration","perhaps elasticbeanstalk"]}],"sentiment":0},"title":{"sentiment":0}}}
+{"amazon":{"anchor":"533193","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br />\n<br />\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\nI'm running a single instance PHP 5.5 environment.<br />\n<br />\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\n<br />\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br /
 >\n<br />\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\n<br />\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\n<br />\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\n<br />\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\n(SSLRequireSSL takes precedence over Auth.)<br />\n<br />\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https://\">https://</a> domain.<br />\n<br />\nI guess it has to do with the proxy setup?:<br />\n<pre class=\"jive-pre\"><code class=\"jive
 -code jive-java\">ProxyPass / http:<font color=\"darkgreen\">//localhost:80/ retry=0</font>\nProxyPassReverse / http:<font color=\"darkgreen\">//localhost:80/</font>\nProxyPreserveHost on\n</code></pre><br />\nIs there anyway I can get this to work?<br />\n<br />\nThanks!<br />\n<br />\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\n<br />\n\n                </div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","foru
 mid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193","links":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n          
       Hi there,<br />\n<br />\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\nI'm running a single instance PHP 5.5 environment.<br />\n<br />\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\n<br />\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\n<br />\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\n<br />\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authenticati
 on.<br />\n<br />\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\n<br />\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\n(SSLRequireSSL takes precedence over Auth.)<br />\n<br />\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https://\">https://</a> domain.<br />\n<br />\nI guess it has to do with the proxy setup?:<br />\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass / http:<font color=\"darkgreen\">//localhost:80/ retry=0</font>\nProxyPassReverse / http:<font color=\"darkgreen\">//localhost:80/</font>\nProxyPreserveHost on\n</code></pre><br />\nIs there anyway I can get this to work?<br />\n<br />\nThanks!<br />\n<br />\nps: I tried both the 2013.09 
 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\n<br />\n\n                </div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 0
 1 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text/html","text/html","text/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.Singl
 eInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+{"amazon":{"anchor":"533271","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/fo
 rum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL 
 directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}


[06/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
new file mode 100644
index 0000000..ced67e4
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
@@ -0,0 +1,243 @@
+{"interaction":{"author":{"link":"http:\/\/en.wikipedia.org\/wiki\/Special:Contributions\/98.250.65.246","username":"98.250.65.246"},"content":"<table class=\"infobox vevent\" cellspacing=\"3\" style=\"border-spacing:3px;width:22em;font-size: 90%;;\">\n<tr>\n<th colspan=\"2\" class=\"summary\" style=\"text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;\">Fort Apache: The Bronx<\/th>\n<\/tr>\n<tr>\n<td colspan=\"2\" style=\"text-align:center;\"><a href=\"\/wiki\/File:Fort_apache_the_bronx.jpg\" class=\"image\"><img alt=\"Fort apache the bronx.jpg\" src=\"\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/9\/9d\/Fort_apache_the_bronx.jpg\/220px-Fort_apache_the_bronx.jpg\" width=\"220\" height=\"337\" class=\"thumbborder\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 1.5x, \/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 2x\" \/><\/a><br \/>\n<div style=\"font-size: 95%; line-height: 1.5em;\"
 >Movie poster for <i>Fort Apache, The Bronx<\/i><\/div>\n<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Directed by<\/th>\n<td><a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Produced by<\/th>\n<td>Thomas Fiorello<br \/>\n<a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a><br \/>\nCompanies:<br \/>\nProducers Circle<br \/>\nTime-Life Television<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Written by<\/th>\n<td>Heywood Gould<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Starring<\/th>\n<td><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a><br \/>\n<a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a><br \/>\n<a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a>
 <br \/>\n<a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a><br \/>\n<a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a><br \/>\n<a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a><br \/>\n<a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a><br \/>\n<a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a><br \/>\n<a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Music by<\/th>\n<td><a href=\"\/wiki\/Jonathan_Tunick\" title=\"Jonathan Tunick\">Jonathan Tunick<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Cinematography<\/th>\n<td><a href=\"\/wiki\/John_Alcott\" title=\"John Alcott\">John Alcott<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Editing by<\/
 th>\n<td>Rita Roland<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Distributed by<\/th>\n<td><a href=\"\/wiki\/20th_Century_Fox\" title=\"20th Century Fox\">20th Century Fox<\/a><br \/>\n<a href=\"\/wiki\/HBO\" title=\"HBO\">HBO<\/a> (DVD)<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Release dates<\/th>\n<td>February 6, 1981<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Running time<\/th>\n<td>125 minutes<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Language<\/th>\n<td><a href=\"\/wiki\/English_language\" title=\"English language\">English<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Budget<\/th>\n<td>$4,000,000<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Box office<\/th>\n<td>Total US Gross: <a href=\"\/wiki\/USD\" title=\"USD\" c
 lass=\"mw-redirect\">$<\/a>29,200,000 (US)<br \/>\nInternational Gross: $36,000,000<br \/>\nWorldwide Gross: $65,200,000<sup id=\"cite_ref-1\" class=\"reference\"><a href=\"#cite_note-1\"><span>[<\/span>1<span>]<\/span><\/a><\/sup><\/td>\n<\/tr>\n<\/table>\n<div class=\"thumb tright\">\n<div class=\"thumbinner\" style=\"width:222px;\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"image\"><img alt=\"\" src=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/220px-Fort_Apache_Police_Precinct%2C_2007.JPG\" width=\"220\" height=\"165\" class=\"thumbimage\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/330px-Fort_Apache_Police_Precinct%2C_2007.JPG 1.5x, \/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/440px-Fort_Apache_Police_Precinct%2C_2007.JPG 2x\" \/><\/a>\n<div class=\"thumbcaption\">\n<div cla
 ss=\"magnify\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"internal\" title=\"Enlarge\"><img src=\"\/\/bits.wikimedia.org\/static-1.23wmf18\/skins\/common\/images\/magnify-clip.png\" width=\"15\" height=\"11\" alt=\"\" \/><\/a><\/div>\nThe real \"Fort Apache\" in the summer of 2007\u20141086 Simpson Street in the Bronx, formerly the New York Police Department's 41st Precinct Station. <span class=\"plainlinks nourlexpansion\"><a class=\"external text\" href=\"\/\/tools.wmflabs.org\/geohack\/geohack.php?pagename=Fort_Apache%2C_The_Bronx&amp;params=40_49_32.07_N_73_53_33.72_W_scale:2000\"><span class=\"geo-default\"><span class=\"geo-dms\" title=\"Maps, aerial photos, and other data for this location\"><span class=\"latitude\">40\u00B049\u203232.07\u2033N<\/span> <span class=\"longitude\">73\u00B053\u203233.72\u2033W<\/span><\/span><\/span><span class=\"geo-multi-punct\">\uFEFF \/ \uFEFF<\/span><span class=\"geo-nondefault\"><span class=\"geo-dec\" title=\"Ma
 ps, aerial photos, and other data for this location\">40.8255750\u00B0N 73.8927000\u00B0W<\/span><span style=\"display:none\">\uFEFF \/ <span class=\"geo\">40.8255750; -73.8927000<\/span><\/span><\/span><\/a><\/span><\/div>\n<\/div>\n<\/div>\n<p><i><b>Fort Apache: The Bronx<\/b><\/i> is a 1981 <a href=\"\/wiki\/Crime_film\" title=\"Crime film\">crime<\/a> <a href=\"\/wiki\/Drama_film\" title=\"Drama film\">drama film<\/a> made by Producers Circle, Time-Life Television Productions Inc., and distributed by <a href=\"\/wiki\/Twentieth_Century-Fox_Film_Corporation\" title=\"Twentieth Century-Fox Film Corporation\" class=\"mw-redirect\">Twentieth Century-Fox Film Corporation<\/a>. It was directed by <a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a> and produced by <a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a>, Thomas Fiorello, with <a href=\"\/wiki\/David_Susskind\" title=\"David Susskind\">David Susski
 nd<\/a> as executive producer. It stars <a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a>, <a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a>, <a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a>, <a href=\"\/wiki\/Edward_Asner\" title=\"Edward Asner\" class=\"mw-redirect\">Edward Asner<\/a>, <a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a>, <a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a>, <a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a>, <a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> and <a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a>.<\/p>\n<p>Filmed on locations in the Bronx, New York City, New York, it is widely believed that the film was based on the book <i>Fort Apache<\/i> by Tom Walker, but the studio, Time-Life Television Films (owner of the script), disputes this. 
 The result was lengthy court litigation.<\/p>\n<p><\/p>\n<div id=\"toc\" class=\"toc\">\n<div id=\"toctitle\">\n<h2>Contents<\/h2>\n<\/div>\n<ul>\n<li class=\"toclevel-1 tocsection-1\"><a href=\"#Plot\"><span class=\"tocnumber\">1<\/span> <span class=\"toctext\">Plot<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-2\"><a href=\"#Cast\"><span class=\"tocnumber\">2<\/span> <span class=\"toctext\">Cast<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-3\"><a href=\"#Reception\"><span class=\"tocnumber\">3<\/span> <span class=\"toctext\">Reception<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-4\"><a href=\"#Legal_issues\"><span class=\"tocnumber\">4<\/span> <span class=\"toctext\">Legal issues<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-5\"><a href=\"#See_also\"><span class=\"tocnumber\">5<\/span> <span class=\"toctext\">See also<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-6\"><a href=\"#References\"><span class=\"tocnumber\">6<\/span> <span class=\
 "toctext\">References<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-7\"><a href=\"#External_links\"><span class=\"tocnumber\">7<\/span> <span class=\"toctext\">External links<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<p><\/p>\n<h2><span class=\"mw-headline\" id=\"Plot\">Plot<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=1\" title=\"Edit section: Plot\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>Police officers face many challenges in the decayed <a href=\"\/wiki\/South_Bronx\" title=\"South Bronx\">South Bronx<\/a> region of <a href=\"\/wiki\/New_York_City\" title=\"New York City\">New York City<\/a>. Among them are <a href=\"\/wiki\/NYPD\" title=\"NYPD\" class=\"mw-redirect\">NYPD<\/a> officers Murphy (Newman) and Corelli (Wahl), who work out of the 41st precinct, nicknamed \"Fort Apache\" because to those who work there, it f
 eels like an army outpost in foreign territory (an <a href=\"\/wiki\/Allusion\" title=\"Allusion\">allusion<\/a> to <a href=\"\/wiki\/Fort_Apache\" title=\"Fort Apache\">Fort Apache<\/a> out of the <a href=\"\/wiki\/Old_West\" title=\"Old West\" class=\"mw-redirect\">Old West<\/a>).<\/p>\n<p>The precinct itself is one of the worst and most dilapidated in the entire department, approaching demolition and staffed mostly by officers who are unwanted by and have been transferred out of other precincts. Additionally, the precinct is of little use to the large <a href=\"\/wiki\/Puerto_Rican_people\" title=\"Puerto Rican people\">Puerto Rican<\/a> community, as only 4% of the officers are <a href=\"\/wiki\/Hispanic\" title=\"Hispanic\">Hispanic<\/a> in the largest non-English speaking section of the Bronx, according to retiring precinct captain Dugan.<\/p>\n<p>Corelli and Murphy attempt to maintain law and order but have conflicts with corrupt fellow officers, as well as with a newly appoi
 nted police captain, rioting due to police brutality, and issues related to the deaths of two rookie cops at the film's beginning.<\/p>\n<p>Illustrating the hopeless futility of the work done at the precinct, the killer is later found as an anonymous body, dumped in the roadside trash. With nothing to link her to the deaths of the rookie officers, the police remain ignorant of the fact that she was the killer and will never be caught.<\/p>\n<h2><span class=\"mw-headline\" id=\"Cast\">Cast<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=2\" title=\"Edit section: Cast\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a> as Murphy<\/li>\n<li><a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a> as Connolly<\/li>\n<li><a href=\"\/wiki\/Ken_Wahl\" title=\"Ken W
 ahl\">Ken Wahl<\/a> as Corelli<\/li>\n<li><a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a> as Morgan<\/li>\n<li><a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a> as Isabella<\/li>\n<li><a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a> as Charlotte<\/li>\n<li><a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a> as Theresa<\/li>\n<li><a href=\"\/wiki\/Tito_Goya\" title=\"Tito Goya\">Tito Goya<\/a> as Jumper \/ Detective<\/li>\n<li><a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a> as Hernando<\/li>\n<li>Jaime Tirelli as Jose<\/li>\n<li>Lance Guecia as Track star<\/li>\n<li>Rony Clanton as agent for hookers<\/li>\n<li><a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> as Dacey<\/li>\n<li><a href=\"\/wiki\/Sully_Boyar\" title=\"Sully Boyar\">Sully Boyar<\/a> as Dugan<\/li>\n<li><a href=\"\/wiki\/Michael_Higgins_(actor)\
 " title=\"Michael Higgins (actor)\">Michael Higgins<\/a> as Heffernan<\/li>\n<li>Rik Colitti as Pantuzzi<\/li>\n<li>Irving Metzman as Applebaum<\/li>\n<li>Frank Adu as Clendennon<\/li>\n<li>John Aquino as Finley<\/li>\n<li>Norman Matlock as Lincoln<\/li>\n<li>John Ring as Donohue<\/li>\n<li>Tony DiBenedetto as Moran<\/li>\n<li>Terence Brady as Cop at bar<\/li>\n<li>Randy Jurgensen as Cop at bar<\/li>\n<li>Marvin Cohen as Cop at bar<\/li>\n<li><a href=\"\/wiki\/Paul_Gleason\" title=\"Paul Gleason\">Paul Gleason<\/a> as Detective<\/li>\n<li>Reynaldo Medina as Detective<\/li>\n<li>Daryl Edwards as Black rookie<\/li>\n<li><a href=\"\/wiki\/Donald_Petrie\" title=\"Donald Petrie\">Donald Petrie<\/a> as White rookie<\/li>\n<li>Thomas A. Carlin as Man with flat tire<\/li>\n<li>Frederick Allen as Corelli's brother<\/li>\n<li><a href=\"\/wiki\/Dominic_Chianese\" title=\"Dominic Chianese\">Dominic Chianese<\/a> as Corelli's father<\/li>\n<li>Mike Cicchetti as Wild-eyed man<\/li>\n<li>Apu Gueci
 a as Stabbed boy<\/li>\n<li>Kim Delgado as Suspect #1<\/li>\n<li>Reyno as Suspect #2<\/li>\n<li>Dadi Pinero as Suspect #3<\/li>\n<li><a href=\"\/wiki\/Cleavant_Derricks_(actor)\" title=\"Cleavant Derricks (actor)\">Cleavant Derricks<\/a> as Suspect #4<\/li>\n<li>Dolores Hern\u00E1ndez as Pregnant girl<\/li>\n<li>Santos Morales as Girl's father<\/li>\n<li>Ruth Last as Girl's mother<\/li>\n<li>Jos\u00E9 Rabelo as Girl's uncle<\/li>\n<li><a href=\"\/wiki\/Gilbert_Lewis_(actor)\" title=\"Gilbert Lewis (actor)\">Gilbert Lewis<\/a> as Mob leader<\/li>\n<li><a href=\"\/wiki\/Lisa_Loomer\" title=\"Lisa Loomer\">Lisa Loomer<\/a> as Hooker #1<\/li>\n<li>Sandi Franklin as Hooker #2<\/li>\n<li>Eric Mourino as Boy on roof<\/li>\n<li>Jessica Costello as Girl on roof<\/li>\n<li>Gloria Irizarry as Drug dealer<\/li>\n<li>Manuel E. Santiago as Intern<\/li>\n<li>Joaquin La Habana as Transvestite<\/li>\n<li>Fred Strothers as Hospital buyer<\/li>\n<li>Sylvia Kuumba Williams as Bartender<\/li>\n<li>Patri
 cia Dratel as Hostage<\/li>\n<li>Thomas Fiorello as Fence<\/li>\n<li>M.J. Quinn as Cop<\/li>\n<li>Bernie Rachelle as Wedgie Patrol<\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Reception\">Reception<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=3\" title=\"Edit section: Reception\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>The film was successful, grossing over $65 million worldwide at its time of release in 1981. Paul Newman was largely praised for his performance, but the movie itself received more negative reviews.<\/p>\n<ul>\n<li><a href=\"\/wiki\/Richard_Schickel\" title=\"Richard Schickel\">Richard Schickel<\/a>, in <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>, called it: \"more like a made-for-TV movie\". He also added: \"The film is not quite up to its star\".; \"...somewhere betwe
 en <a href=\"\/wiki\/Barney_Miller\" title=\"Barney Miller\">Barney Miller<\/a> and the works of <a href=\"\/wiki\/Joseph_Wambaugh\" title=\"Joseph Wambaugh\">Joseph Wambaugh<\/a>\".; and: \"But mainly it is Newman, now 56, who gives Fort Apache its modest distinction\".<sup id=\"cite_ref-2\" class=\"reference\"><a href=\"#cite_note-2\"><span>[<\/span>2<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Roger_Ebert\" title=\"Roger Ebert\">Roger Ebert<\/a>, <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>, said: \"...the most complete collection of cop-movie clich\u00E9s since John Wayne played a Chicago cop in <i>McQ<\/i>\". (Ebert got this incorrect, in <i><a href=\"\/wiki\/McQ\" title=\"McQ\">McQ<\/a><\/i> Wayne played a Seattle policeman, he played a Chicago policeman in <a href=\"\/wiki\/Brannigan_(film)\" title=\"Brannigan (film)\"><i>Brannigan<\/i><\/a>.) \"There are too many scenes that are necessary t
 o the plot but not to the movie, scenes where the life of the movie stops so story details can be filled in\". \"The movie has several story threads that lead nowhere\". But, says about Newman, \"He's good in his role,...\" But, also calls this more of a TV show.<sup id=\"cite_ref-3\" class=\"reference\"><a href=\"#cite_note-3\"><span>[<\/span>3<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a> labeled the film: \"... a very patchy picture, strong on dialog and acting and exceedingly weak on story\", and criticizes it for its lack of depth.<sup id=\"cite_ref-Variety-Review-FATB_4-0\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/span>4<span>]<\/span><\/a><\/sup><\/li>\n<li>Nick Sambides, Jr. at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a> calls it \"...flinty but otherwise forgettable character study\".<sup id=\"cite_ref-5\" class=\"reference\"><a href=\"#cite_n
 ote-5\"><span>[<\/span>5<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li>The <i><a href=\"\/wiki\/New_York_Post\" title=\"New York Post\">New York Post<\/a><\/i> published a photo of Newman on the set with a caption that he stated was inaccurate<sup class=\"noprint Inline-Template\" style=\"white-space:nowrap;\">[<i><a href=\"\/wiki\/Wikipedia:Please_clarify\" title=\"Wikipedia:Please clarify\"><span title=\"The text near this tag may need clarification or removal of jargon. (December 2011)\">clarification needed<\/span><\/a><\/i>]<\/sup>, calling the paper \"a garbage can\". Because of the dispute the <i>Post<\/i> banned him from its pages, even removing his name from movies in the TV listings.<sup id=\"cite_ref-digiacomo200412_6-0\" class=\"reference\"><a href=\"#cite_note-digiacomo200412-6\"><span>[<\/span>6<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Legal_issues\">Legal issues<\/span><span class=\"mw-editsection\"><span class=\"mw-editsect
 ion-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=4\" title=\"Edit section: Legal issues\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li>Local community groups threatened to file suit against the producers because of the way it depicted their neighborhood in the Bronx and for the depiction of ethnic minorities (Blacks and Puerto Ricans). Because of this pressure some changes were made to the script and a note was added to the title card at the beginning of the film.<sup id=\"cite_ref-Variety-Review-FATB_4-1\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/span>4<span>]<\/span><\/a><\/sup><sup id=\"cite_ref-7\" class=\"reference\"><a href=\"#cite_note-7\"><span>[<\/span>7<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li><i>Walker v. Time Life Films, Inc.<\/i>, 784 F.2d 44 (<a href=\"\/wiki\/United_States_Court_of_Appeals_for_the_Second_Circuit\" title=\"United St
 ates Court of Appeals for the Second Circuit\">2d Cir<\/a>. 1986)<\/li>\n<\/ul>\n<dl>\n<dd>\n<dl>\n<dd>After the release of the film, an author, Tom Walker, filed a lawsuit against one of the production companies, Time-Life Television Films (legal owner of the script), claiming that the producers infringed on his book <i>Fort Apache<\/i> (New York: Crowell, 1976. <a href=\"\/wiki\/Special:BookSources\/0690010478\" class=\"internal mw-magiclink-isbn\">ISBN 0-690-01047-8<\/a>). Among other things, Walker, the plaintiff, argued that: \"both the book and the film begin with the murder of a black and a white policeman with a handgun at close range; both depict cockfights, drunks, stripped cars, prostitutes and rats; both feature as central characters third- or fourth-generation Irish policemen who live in Queens and frequently drink; both show disgruntled, demoralized police officers and unsuccessful foot chases of fleeing criminals\". But the <a href=\"\/wiki\/United_States_Court_of_App
 eals_for_the_Second_Circuit\" title=\"United States Court of Appeals for the Second Circuit\">United States Court of Appeals for the Second Circuit<\/a> ruled that these are stereo-typical ideas, so called <i>\"<a href=\"\/wiki\/Scenes_%C3%A0_faire\" title=\"Scenes \u00E0 faire\" class=\"mw-redirect\">sc\u00E8nes \u00E0 faire<\/a>\"<\/i> (French for \"scenes that must be done\"), and that the <a href=\"\/wiki\/United_States_copyright_law\" title=\"United States copyright law\" class=\"mw-redirect\">United States copyright law<\/a> does not protect concepts or ideas. The court ruling stated: \"the book <i>Fort Apache<\/i> and the film <i>Fort Apache: The Bronx<\/i> were not substantially similar beyond [the] level of generalized or otherwise nonprotectible ideas, and thus [the] latter did not infringe copyright of [the] former\".<sup id=\"cite_ref-MargolickD-NYT_8-0\" class=\"reference\"><a href=\"#cite_note-MargolickD-NYT-8\"><span>[<\/span>8<span>]<\/span><\/a><\/sup><sup id=\"cite
 _ref-9\" class=\"reference\"><a href=\"#cite_note-9\"><span>[<\/span>9<span>]<\/span><\/a><\/sup><\/dd>\n<\/dl>\n<\/dd>\n<\/dl>\n<p><br \/><\/p>\n<h2><span class=\"mw-headline\" id=\"See_also\">See also<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=5\" title=\"Edit section: See also\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/List_of_American_films_of_1981\" title=\"List of American films of 1981\">List of American films of 1981<\/a><\/li>\n<li><a href=\"\/wiki\/Fort_Apache_(hostile_place)\" title=\"Fort Apache (hostile place)\">Fort Apache<\/a><\/li>\n<li><a href=\"\/wiki\/Fort_Apache_(film)\" title=\"Fort Apache (film)\"><i>Fort Apache<\/i> (film)<\/a><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"References\">References<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">
 [<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=6\" title=\"Edit section: References\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<div class=\"reflist\" style=\"list-style-type: decimal;\">\n<ol class=\"references\">\n<li id=\"cite_note-1\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-1\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php\"><i>Fort Apache, The Bronx<\/i><\/a>. \u2013 The Numbers<\/span><\/li>\n<li id=\"cite_note-2\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-2\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#\">\"Conscience in a Rough Precinct\"<\/a>. \u2013 <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>. \u2013 February 
 16, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-3\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-3\">^<\/a><\/b><\/span> <span class=\"reference-text\">Ebert, Roger. \u2013 <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/rogerebert.suntimes.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>. \u2013 January 1, 1981 \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-Variety-Review-FATB-4\"><span class=\"mw-cite-backlink\">^ <a href=\"#cite_ref-Variety-Review-FATB_4-0\"><sup><i><b>a<\/b><\/i><\/sup><\/a> <a href=\"#cite_ref-Variety-Review-FATB_4-1\"><sup><i><b>b<\/b><\/i><\/sup><\/a><\/span> <span class=\"reference-text\">Film: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.variety.com\/index.asp?layout=print_review&amp;reviewid=VE11
 17791034&amp;categoryid=31\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a>. \u2013 January 1, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-5\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-5\">^<\/a><\/b><\/span> <span class=\"reference-text\">Sambides, Nick, Jr. \u2013 Review: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&amp;sql=1:18269~T1\"><i>Fort Apache, the Bronx\"<\/i><\/a>. \u2013 <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a>. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-digiacomo200412-6\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-digiacomo200412_6-0\">^<\/a><\/b><\/span> <span class=\"reference-text\"><span class=\"citation news\">DiGiaomo, Frank (December 2004). <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.vanityfair.com\/culture\/features\/2
 004\/12\/pagesix200412.print\">\"The Gossip Behind the Gossip\"<\/a>. <i>Vanity Fair<\/i><span class=\"reference-accessdate\">. Retrieved September 13, 2011<\/span>.<\/span><span title=\"ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AFort+Apache%2C+The+Bronx&amp;rft.atitle=The+Gossip+Behind+the+Gossip&amp;rft.au=DiGiaomo%2C+Frank&amp;rft.aulast=DiGiaomo%2C+Frank&amp;rft.date=December+2004&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.vanityfair.com%2Fculture%2Ffeatures%2F2004%2F12%2Fpagesix200412.print&amp;rft.jtitle=Vanity+Fair&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal\" class=\"Z3988\"><span style=\"display:none;\">&#160;<\/span><\/span><\/span><\/li>\n<li id=\"cite_note-7\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-7\">^<\/a><\/b><\/span> <span class=\"reference-text\">Cultural Desk: \"'Apache' Film's Debut Protested\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i
 >. \u2013 February 7, 1981<\/span><\/li>\n<li id=\"cite_note-MargolickD-NYT-8\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-MargolickD-NYT_8-0\">^<\/a><\/b><\/span> <span class=\"reference-text\">Margolick, David. \u2013 Legal Notes: \"Writer Told 'Ft. Apache' isn't Just His\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i>. \u2013 August 25, 1985<\/span><\/li>\n<li id=\"cite_note-9\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-9\">^<\/a><\/b><\/span> <span class=\"reference-text\">Beeber, Jessie, and Maura Wogan. \u2013 \"Is Sc\u00E8nes \u00E0 Faire Really 'Necessary'?\". \u2013 <i>Entertainment, Arts and Sports Law Journal<\/i>. \u2013 Spring 2004. \u2013 Vol. 15, No. 1<\/span><\/li>\n<\/ol>\n<\/div>\n<h2><span class=\"mw-headline\" id=\"External_links\">External links<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort
 _Apache,_The_Bronx&amp;action=edit&amp;section=7\" title=\"Edit section: External links\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.imdb.com\/title\/tt0082402\/\"><i>Fort Apache, The Bronx<\/i><\/a> at the <a href=\"\/wiki\/Internet_Movie_Database\" title=\"Internet Movie Database\">Internet Movie Database<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/movie\/v18269\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">allmovie<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Rotten_Tomatoes\" title=\"Rotten Tomatoes\">Rotten Tomatoes<\/a><\/li>\n<\/ul>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<tabl
 e cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Daniel_Petrie\" title=\"Template:Daniel Petrie\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Daniel_Petrie\" title=\"Template talk:Daniel Petrie\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Daniel_Petrie&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\">Films d
 irected by <a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1960s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/The_Bramble_Bush\" title=\"The Bramble Bush\">The Bramble Bush<\/a><\/i> (1960)<\/li>\n<li><i><a href=\"\/wiki\/A_Raisin_in_the_Sun_(1961_film)\" title=\"A Raisin in the Sun (1961 film)\">A Raisin in the Sun<\/a><\/i> (1961)<\/li>\n<li><i><a href=\"\/wiki\/The_Main_Attraction_(film)\" title=\"The Main Attraction (film)\">The Main Attraction<\/a><\/i> (1962)<\/li>\n<li><i><a href=\"\/wiki\/Stolen_Hours\" title=\"Stolen Hours\">Stolen Hours<\/a><\/i> (1963)<\/li>\n<li><i><a href=\"\/wiki\/The_Idol_(film)\" title=\"The Idol (film)\">The Idol<\/a><\/i>
  (1966)<\/li>\n<li><i><a href=\"\/wiki\/The_Spy_with_a_Cold_Nose\" title=\"The Spy with a Cold Nose\">The Spy with a Cold Nose<\/a><\/i> (1966)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1970s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Moon_of_the_Wolf\" title=\"Moon of the Wolf\">Moon of the Wolf<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki\/The_Neptune_Factor\" title=\"The Neptune Factor\">The Neptune Factor<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki\/The_Gun_and_the_Pulpit\" title=\"The Gun and the Pulpit\">The Gun and the Pulpit<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Buster_and_Billie\" title=\"Buster and Billie\">Buster and Billie<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Eleano
 r_and_Franklin\" title=\"Eleanor and Franklin\">Eleanor and Franklin<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Lifeguard_(film)\" title=\"Lifeguard (film)\">Lifeguard<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Sybil_(1976_film)\" title=\"Sybil (1976 film)\">Sybil<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Eleanor_and_Franklin:_The_White_House_Years\" title=\"Eleanor and Franklin: The White House Years\">Eleanor and Franklin: The White House Years<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Betsy\" title=\"The Betsy\">The Betsy<\/a><\/i> (1978)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1980s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Resurrection_(1980_film)\" title=\"Resurrection 
 (1980 film)\">Resurrection<\/a><\/i> (1980)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Six_Pack_(film)\" title=\"Six Pack (film)\">Six Pack<\/a><\/i> (1982)<\/li>\n<li><i><a href=\"\/wiki\/The_Dollmaker\" title=\"The Dollmaker\">The Dollmaker<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/The_Bay_Boy\" title=\"The Bay Boy\">The Bay Boy<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/Square_Dance_(film)\" title=\"Square Dance (film)\">Square Dance<\/a><\/i> (1987)<\/li>\n<li><i><a href=\"\/wiki\/Rocket_Gibraltar\" title=\"Rocket Gibraltar\">Rocket Gibraltar<\/a><\/i> (1988)<\/li>\n<li><i><a href=\"\/wiki\/Cocoon:_The_Return\" title=\"Cocoon: The Return\">Cocoon: The Return<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1990s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-al
 ign:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Lassie_(1994_film)\" title=\"Lassie (1994 film)\">Lassie<\/a><\/i> (1994)<\/li>\n<li><i><a href=\"\/wiki\/The_Assistant_(1998_film)\" title=\"The Assistant (1998 film)\">The Assistant<\/a><\/i> (1998)<\/li>\n<li><i><a href=\"\/wiki\/Inherit_the_Wind_(1999_film)\" title=\"Inherit the Wind (1999 film)\">Inherit the Wind<\/a><\/i> (1999)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">2000s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Wild_Iris_(film)\" title=\"Wild Iris (film)\">Wild Iris<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>
 \n<\/table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Heywood_Gould\" title=\"Template:Heywood Gould\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Heywood_Gould\" title=\"Template talk:Heywood Gould\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Heywood_Gould&amp;action=edit\"><span title=\"Edit this template\" style=
 \";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\"><a href=\"\/wiki\/Heywood_Gould\" title=\"Heywood Gould\">Heywood Gould<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Films<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/One_Good_Cop\" title=\"One Good Cop\">One Good Cop<\/a><\/i> (1991)<\/li>\n<li><i><a href=\"\/wiki\/Trial_by_Jury_(film)\" title=\"Trial by Jury (film)\">Trial by Jury<\/a><\/i> (1994)<\/li>\n<li><i><a href=\"\/wiki\/Mistrial_(1996_film)\" title=\"Mistrial (1996 film)\">Mistrial<\/a><\/i> (1996)<\/li>\n<li><i><a href=\"\/wiki\/Double_Bang\" title=\"Double Bang\">Double Bang<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"h
 eight:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Screenplays<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Rolling_Thunder_(film)\" title=\"Rolling Thunder (film)\">Rolling Thunder<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Boys_from_Brazil_(film)\" title=\"The Boys from Brazil (film)\">The Boys from Brazil<\/a><\/i> (1978)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Streets_of_Gold_(film)\" title=\"Streets of Gold (film)\">Streets of Gold<\/a><\/i> (1986)<\/li>\n<li><i><a href=\"\/wiki\/Cocktail_(1988_film)\" title=\"Cocktail (1988 film)\">Cocktail<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n\n\n<!-- \nNewPP limit report\nParsed by mw1
 206\nCPU time usage: 0.536 seconds\nReal time usage: 0.615 seconds\nPreprocessor visited node count: 873\/1000000\nPreprocessor generated node count: 4510\/1500000\nPost\u2010expand include size: 28730\/2048000 bytes\nTemplate argument size: 1418\/2048000 bytes\nHighest expansion depth: 11\/40\nExpensive parser function count: 5\/500\nLua time usage: 0.068\/10.000 seconds\nLua memory usage: 1.57 MB\/50 MB\n-->\n\n<!-- Saved in parser cache with key enwiki:pcache:idhash:8009696-0!*!0!!en!4!* and timestamp 20140323010622\n -->\n","created_at":"Sun, 23 Mar 2014 01:06:21 +0000","id":"1e3b2275887aa480e0771b13a8f59744","link":"http:\/\/en.wikipedia.org\/wiki\/Fort_Apache%2C_The_Bronx","schema":{"version":3},"title":"Fort Apache, The Bronx","type":"wikipedia"},"language":{"tag":"en"},"links":{"code":[200,404,200,200,200,200,200,200,200],"created_at":["Sun, 23 Mar 2014 01:06:23 +0000","Sun, 23 Mar 2014 01:06:24 +0000","Sun, 23 Mar 2014 01:06:30 +0000","Sun, 23 Mar 2014 01:06:33 +0000","Sun,
  23 Mar 2014 00:20:48 +0000","Sun, 23 Mar 2014 01:06:35 +0000","Sun, 23 Mar 2014 01:06:36 +0000","Sun, 23 Mar 2014 01:06:37 +0000","Sun, 23 Mar 2014 01:06:38 +0000"],"hops":[[],["http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#","http:\/\/time.com\/time\/printout\/0,8816,954681,00.html","http:\/\/content.time.com\/time\/printout\/0%2C8816%2C954681%2C00.html"],["http:\/\/rogerebert.suntimes.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023","http:\/\/www.rogerebert.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023"],["http:\/\/www.variety.com\/index.asp?layout=print_review&reviewid=VE1117791034&categoryid=31","http:\/\/www.variety.com\/article\/VE1117791034?layout=print_review&reviewid=VE1117791034&categoryid=31","http:\/\/variety.com\/article\/VE1117791034?layout=print_review&reviewid=VE1117791034&categoryid=31"],["http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&sql=1:18269~T1"],[],[],[],[]],"meta":{"charset":["CP1252","","UTF-8","UT
 F-8","UTF-8","UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text\/html","","text\/html","text\/html","text\/html","text\/html","text\/html","text\/html","text\/html"],"description":["Domestic Release Date: January 1, 1981Domestic Box Office: $29,200,000Worldwide Box Office: $65,200,000","","","","The best, most complete site to help you find movie trailers, synopsis, movie reviews as well as complete celebrity & movie cast details\u2026","From world affairs to entertainment, business to fashion, crime to society, Vanity Fair is a cultural catalyst that drives the popular dialogue globally.","Directed by Daniel Petrie. With Paul Newman, Edward Asner, Ken Wahl, Danny Aiello. From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tuff cynic, but in truth he's
  a moralist with a sense for justice.","Find trailers, reviews, synopsis, showtimes and cast information for Fort Apache, the Bronx on AllMovie - 1981 - Paul Newman stars as an essentially decent cop &hellip;","Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as the Bronx,..."],"keywords":[["movies","box office","The Numbers","Numbers","daily box office","weekly box office","movie stars","dvd sales","Blu-ray sales","release schedule"],[],[],[],["allmovie.com","movies","movie","movie recommendations","movie reviews","actors","actors bios","actor biography","now available","movie new releases","dvd","movie trailers","movie search"],[],["Reviews","Showtimes","DVDs","Photos","Message Boards","User Ratings","Synopsis","Trailers","Credits"],["Fort Apache","the Bronx","Daniel Petrie","Trailers","Reviews","Summary","Synopsis","Cast","Showtimes","Rent","Buy","Photos","Movie Stills","Awards"],[]],"lang":["u
 nknown","","en","en","unknown","en","en-gb","unknown","en-us"],"opengraph":[{},{},{},{"site_name":"Variety","type":"article","description":"Birth","url":"http:\/\/variety.com\/2000\/scene\/people-news\/robert-emerson-langlois-ulrich-1117791034\/","title":"Robert Emerson Langlois-Ulrich","image":"http:\/\/0.gravatar.com\/blavatar\/8181b523e3c891bc770494a0bbbe8244?s=200","facebook_author":"http:\/\/variety.com\/author\/varietystaff\/"},{"description":"The best, most complete site to help you find movie trailers, synopsis, movie reviews as well as complete celebrity & movie cast details\u2026","url":"http:\/\/www.allmovie.com\/","image":"http:\/\/www.allmovie.com\/images\/allmovie-logo-share.png","title":"AllMovie - Movies and Films Database - Movie Search, Guide, Recommendations, and Reviews"},{"site_name":"Vanity Fair","description":"From world affairs to entertainment, business to fashion, crime to society, Vanity Fair is a cultural catalyst that drives the popular dialogue globally
 .","type":"article","url":"http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print","image":"http:\/\/subscribe.condenet.com\/images_covers\/cover_vanityfair_80.jpg","title":"Frank DiGiacomo: a dishy oral history of America"},{"site_name":"IMDb","type":"video.movie","description":"Directed by Daniel Petrie. With Paul Newman, Edward Asner, Ken Wahl, Danny Aiello. From the sight of a police officer this movie depicts the life in New York","url":"http:\/\/www.imdb.com\/title\/tt0082402\/","image":"http:\/\/ia.media-imdb.com\/images\/M\/MV5BMTQ0NDA1MzA0NF5BMl5BanBnXkFtZTcwMzQ5NDQyMQ@@._V1_SY475_SX262_.jpg","title":"Fort Apache the Bronx (1981)"},{"site_name":"AllMovie","type":"movie","image":"http:\/\/cps-static.rovicorp.com\/1\/avg\/cov75\/drv300\/v328\/v32888fjfsd.jpg?partner=allrovi.com"},{"type":"video.movie","description":"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as 
 the Bronx, but known to its denizens as","url":"http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/","title":"Fort Apache, the Bronx","image":"http:\/\/content6.flixster.com\/movie\/10\/95\/34\/10953460_800.jpg"}],"twitter":[{},{},{},{"card":"summary","creator":"@Variety","site":"@variety","image":"http:\/\/0.gravatar.com\/blavatar\/8181b523e3c891bc770494a0bbbe8244?s=240"},{},{},{},{},{"description":"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as the Bronx, but known to its denizens as","card":"product","site":"@rottentomatoes","title":"Fort Apache, the Bronx"}]},"normalized_url":["http:\/\/the-numbers.com\/movies\/1981\/0FABR.php",null,"http:\/\/rogerebert.com\/reviews\/fort-apache-the-bronx-1981","http:\/\/variety.com\/2000\/scene\/people-news\/robert-emerson-langlois-ulrich-1117791034","http:\/\/allmovie.com","http:\/\/vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.prin
 t","http:\/\/imdb.com\/title\/tt0082402","http:\/\/allmovie.com\/movie\/v18269","http:\/\/rottentomatoes.com\/m\/fort_apache_the_bronx"],"retweet_count":[0,0,0,0,0,0,0,0,0],"title":["Fort Apache, The Bronx - Box Office Data, DVD Sales, Movie News, Cast Information - The Numbers","null","Fort Apache, The Bronx Movie Review (1981) | Roger Ebert","Robert Emerson Langlois-Ulrich | Variety","AllMovie - Movies and Films Database - Movie Search, Guide, Recommendations, and Reviews","The Gossip Behind the Gossip | Vanity Fair","Fort Apache the Bronx (1981) - IMDb","Fort Apache, the Bronx (1981) - Trailers, Reviews, Synopsis, Showtimes and Cast - AllMovie","Fort Apache, the Bronx - Rotten Tomatoes"],"url":["http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php","http:\/\/content.time.com\/time\/printout\/0%2C8816%2C954681%2C00.html","http:\/\/www.rogerebert.com\/reviews\/fort-apache-the-bronx-1981","http:\/\/variety.com\/2000\/scene\/people-news\/robert-emerson-langlois-ulrich-1117791034\/",
 "http:\/\/www.allmovie.com","http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print","http:\/\/www.imdb.com\/title\/tt0082402\/","http:\/\/www.allmovie.com\/movie\/v18269","http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/"]},"wikipedia":{"author":{"link":"http:\/\/en.wikipedia.org\/wiki\/Special:Contributions\/98.250.65.246","username":"98.250.65.246"},"body":"<table class=\"infobox vevent\" cellspacing=\"3\" style=\"border-spacing:3px;width:22em;font-size: 90%;;\">\n<tr>\n<th colspan=\"2\" class=\"summary\" style=\"text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;\">Fort Apache: The Bronx<\/th>\n<\/tr>\n<tr>\n<td colspan=\"2\" style=\"text-align:center;\"><a href=\"\/wiki\/File:Fort_apache_the_bronx.jpg\" class=\"image\"><img alt=\"Fort apache the bronx.jpg\" src=\"\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/9\/9d\/Fort_apache_the_bronx.jpg\/220px-Fort_apache_the_bronx.jpg\" width=\"220\" height=\"337\" clas
 s=\"thumbborder\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 1.5x, \/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 2x\" \/><\/a><br \/>\n<div style=\"font-size: 95%; line-height: 1.5em;\">Movie poster for <i>Fort Apache, The Bronx<\/i><\/div>\n<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Directed by<\/th>\n<td><a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Produced by<\/th>\n<td>Thomas Fiorello<br \/>\n<a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a><br \/>\nCompanies:<br \/>\nProducers Circle<br \/>\nTime-Life Television<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Written by<\/th>\n<td>Heywood Gould<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;w
 hite-space: nowrap;;\">Starring<\/th>\n<td><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a><br \/>\n<a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a><br \/>\n<a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a><br \/>\n<a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a><br \/>\n<a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a><br \/>\n<a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a><br \/>\n<a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a><br \/>\n<a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a><br \/>\n<a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Music by<\/th>\n<td><a href=\"\/wiki\/Jonathan_Tunick\" title=\"Jonathan Tunick\">Jonathan Tunick<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=
 \"row\" style=\"text-align:left;white-space: nowrap;;\">Cinematography<\/th>\n<td><a href=\"\/wiki\/John_Alcott\" title=\"John Alcott\">John Alcott<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Editing by<\/th>\n<td>Rita Roland<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Distributed by<\/th>\n<td><a href=\"\/wiki\/20th_Century_Fox\" title=\"20th Century Fox\">20th Century Fox<\/a><br \/>\n<a href=\"\/wiki\/HBO\" title=\"HBO\">HBO<\/a> (DVD)<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Release dates<\/th>\n<td>February 6, 1981<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Running time<\/th>\n<td>125 minutes<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Language<\/th>\n<td><a href=\"\/wiki\/English_language\" title=\"English language\">English<\/a><\/td>\n<\/tr>\n<tr>\n<th sc
 ope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Budget<\/th>\n<td>$4,000,000<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Box office<\/th>\n<td>Total US Gross: <a href=\"\/wiki\/USD\" title=\"USD\" class=\"mw-redirect\">$<\/a>29,200,000 (US)<br \/>\nInternational Gross: $36,000,000<br \/>\nWorldwide Gross: $65,200,000<sup id=\"cite_ref-1\" class=\"reference\"><a href=\"#cite_note-1\"><span>[<\/span>1<span>]<\/span><\/a><\/sup><\/td>\n<\/tr>\n<\/table>\n<div class=\"thumb tright\">\n<div class=\"thumbinner\" style=\"width:222px;\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"image\"><img alt=\"\" src=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/220px-Fort_Apache_Police_Precinct%2C_2007.JPG\" width=\"220\" height=\"165\" class=\"thumbimage\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\
 /330px-Fort_Apache_Police_Precinct%2C_2007.JPG 1.5x, \/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/440px-Fort_Apache_Police_Precinct%2C_2007.JPG 2x\" \/><\/a>\n<div class=\"thumbcaption\">\n<div class=\"magnify\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"internal\" title=\"Enlarge\"><img src=\"\/\/bits.wikimedia.org\/static-1.23wmf18\/skins\/common\/images\/magnify-clip.png\" width=\"15\" height=\"11\" alt=\"\" \/><\/a><\/div>\nThe real \"Fort Apache\" in the summer of 2007\u20141086 Simpson Street in the Bronx, formerly the New York Police Department's 41st Precinct Station. <span class=\"plainlinks nourlexpansion\"><a class=\"external text\" href=\"\/\/tools.wmflabs.org\/geohack\/geohack.php?pagename=Fort_Apache%2C_The_Bronx&amp;params=40_49_32.07_N_73_53_33.72_W_scale:2000\"><span class=\"geo-default\"><span class=\"geo-dms\" title=\"Maps, aerial photos, and other data for this location\"><span cl
 ass=\"latitude\">40\u00B049\u203232.07\u2033N<\/span> <span class=\"longitude\">73\u00B053\u203233.72\u2033W<\/span><\/span><\/span><span class=\"geo-multi-punct\">\uFEFF \/ \uFEFF<\/span><span class=\"geo-nondefault\"><span class=\"geo-dec\" title=\"Maps, aerial photos, and other data for this location\">40.8255750\u00B0N 73.8927000\u00B0W<\/span><span style=\"display:none\">\uFEFF \/ <span class=\"geo\">40.8255750; -73.8927000<\/span><\/span><\/span><\/a><\/span><\/div>\n<\/div>\n<\/div>\n<p><i><b>Fort Apache: The Bronx<\/b><\/i> is a 1981 <a href=\"\/wiki\/Crime_film\" title=\"Crime film\">crime<\/a> <a href=\"\/wiki\/Drama_film\" title=\"Drama film\">drama film<\/a> made by Producers Circle, Time-Life Television Productions Inc., and distributed by <a href=\"\/wiki\/Twentieth_Century-Fox_Film_Corporation\" title=\"Twentieth Century-Fox Film Corporation\" class=\"mw-redirect\">Twentieth Century-Fox Film Corporation<\/a>. It was directed by <a href=\"\/wiki\/Daniel_Petrie\" title=
 \"Daniel Petrie\">Daniel Petrie<\/a> and produced by <a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a>, Thomas Fiorello, with <a href=\"\/wiki\/David_Susskind\" title=\"David Susskind\">David Susskind<\/a> as executive producer. It stars <a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a>, <a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a>, <a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a>, <a href=\"\/wiki\/Edward_Asner\" title=\"Edward Asner\" class=\"mw-redirect\">Edward Asner<\/a>, <a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a>, <a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a>, <a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a>, <a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> and <a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F
 1ero<\/a>.<\/p>\n<p>Filmed on locations in the Bronx, New York City, New York, it is widely believed that the film was based on the book <i>Fort Apache<\/i> by Tom Walker, but the studio, Time-Life Television Films (owner of the script), disputes this. The result was lengthy court litigation.<\/p>\n<p><\/p>\n<div id=\"toc\" class=\"toc\">\n<div id=\"toctitle\">\n<h2>Contents<\/h2>\n<\/div>\n<ul>\n<li class=\"toclevel-1 tocsection-1\"><a href=\"#Plot\"><span class=\"tocnumber\">1<\/span> <span class=\"toctext\">Plot<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-2\"><a href=\"#Cast\"><span class=\"tocnumber\">2<\/span> <span class=\"toctext\">Cast<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-3\"><a href=\"#Reception\"><span class=\"tocnumber\">3<\/span> <span class=\"toctext\">Reception<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-4\"><a href=\"#Legal_issues\"><span class=\"tocnumber\">4<\/span> <span class=\"toctext\">Legal issues<\/span><\/a><\/li>\n<li cla
 ss=\"toclevel-1 tocsection-5\"><a href=\"#See_also\"><span class=\"tocnumber\">5<\/span> <span class=\"toctext\">See also<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-6\"><a href=\"#References\"><span class=\"tocnumber\">6<\/span> <span class=\"toctext\">References<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-7\"><a href=\"#External_links\"><span class=\"tocnumber\">7<\/span> <span class=\"toctext\">External links<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<p><\/p>\n<h2><span class=\"mw-headline\" id=\"Plot\">Plot<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=1\" title=\"Edit section: Plot\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>Police officers face many challenges in the decayed <a href=\"\/wiki\/South_Bronx\" title=\"South Bronx\">South Bronx<\/a> region of <a href=\"\/wiki\/New_York_City\" title=\"New York City
 \">New York City<\/a>. Among them are <a href=\"\/wiki\/NYPD\" title=\"NYPD\" class=\"mw-redirect\">NYPD<\/a> officers Murphy (Newman) and Corelli (Wahl), who work out of the 41st precinct, nicknamed \"Fort Apache\" because to those who work there, it feels like an army outpost in foreign territory (an <a href=\"\/wiki\/Allusion\" title=\"Allusion\">allusion<\/a> to <a href=\"\/wiki\/Fort_Apache\" title=\"Fort Apache\">Fort Apache<\/a> out of the <a href=\"\/wiki\/Old_West\" title=\"Old West\" class=\"mw-redirect\">Old West<\/a>).<\/p>\n<p>The precinct itself is one of the worst and most dilapidated in the entire department, approaching demolition and staffed mostly by officers who are unwanted by and have been transferred out of other precincts. Additionally, the precinct is of little use to the large <a href=\"\/wiki\/Puerto_Rican_people\" title=\"Puerto Rican people\">Puerto Rican<\/a> community, as only 4% of the officers are <a href=\"\/wiki\/Hispanic\" title=\"Hispanic\">Hispa
 nic<\/a> in the largest non-English speaking section of the Bronx, according to retiring precinct captain Dugan.<\/p>\n<p>Corelli and Murphy attempt to maintain law and order but have conflicts with corrupt fellow officers, as well as with a newly appointed police captain, rioting due to police brutality, and issues related to the deaths of two rookie cops at the film's beginning.<\/p>\n<p>Illustrating the hopeless futility of the work done at the precinct, the killer is later found as an anonymous body, dumped in the roadside trash. With nothing to link her to the deaths of the rookie officers, the police remain ignorant of the fact that she was the killer and will never be caught.<\/p>\n<h2><span class=\"mw-headline\" id=\"Cast\">Cast<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=2\" title=\"Edit section: Cast\">edit<\/a><span class=\"mw-editsection-bracket\">]
 <\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a> as Murphy<\/li>\n<li><a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a> as Connolly<\/li>\n<li><a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a> as Corelli<\/li>\n<li><a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a> as Morgan<\/li>\n<li><a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a> as Isabella<\/li>\n<li><a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a> as Charlotte<\/li>\n<li><a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a> as Theresa<\/li>\n<li><a href=\"\/wiki\/Tito_Goya\" title=\"Tito Goya\">Tito Goya<\/a> as Jumper \/ Detective<\/li>\n<li><a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a> as Hernando<\/li>\n<li>Jaime Tirelli as Jose<\/li>\n<li>Lance Guecia as Track star<\/li>\n<li>Rony Clanton as agent for
  hookers<\/li>\n<li><a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> as Dacey<\/li>\n<li><a href=\"\/wiki\/Sully_Boyar\" title=\"Sully Boyar\">Sully Boyar<\/a> as Dugan<\/li>\n<li><a href=\"\/wiki\/Michael_Higgins_(actor)\" title=\"Michael Higgins (actor)\">Michael Higgins<\/a> as Heffernan<\/li>\n<li>Rik Colitti as Pantuzzi<\/li>\n<li>Irving Metzman as Applebaum<\/li>\n<li>Frank Adu as Clendennon<\/li>\n<li>John Aquino as Finley<\/li>\n<li>Norman Matlock as Lincoln<\/li>\n<li>John Ring as Donohue<\/li>\n<li>Tony DiBenedetto as Moran<\/li>\n<li>Terence Brady as Cop at bar<\/li>\n<li>Randy Jurgensen as Cop at bar<\/li>\n<li>Marvin Cohen as Cop at bar<\/li>\n<li><a href=\"\/wiki\/Paul_Gleason\" title=\"Paul Gleason\">Paul Gleason<\/a> as Detective<\/li>\n<li>Reynaldo Medina as Detective<\/li>\n<li>Daryl Edwards as Black rookie<\/li>\n<li><a href=\"\/wiki\/Donald_Petrie\" title=\"Donald Petrie\">Donald Petrie<\/a> as White rookie<\/li>\n<li>Thomas A. Carl
 in as Man with flat tire<\/li>\n<li>Frederick Allen as Corelli's brother<\/li>\n<li><a href=\"\/wiki\/Dominic_Chianese\" title=\"Dominic Chianese\">Dominic Chianese<\/a> as Corelli's father<\/li>\n<li>Mike Cicchetti as Wild-eyed man<\/li>\n<li>Apu Guecia as Stabbed boy<\/li>\n<li>Kim Delgado as Suspect #1<\/li>\n<li>Reyno as Suspect #2<\/li>\n<li>Dadi Pinero as Suspect #3<\/li>\n<li><a href=\"\/wiki\/Cleavant_Derricks_(actor)\" title=\"Cleavant Derricks (actor)\">Cleavant Derricks<\/a> as Suspect #4<\/li>\n<li>Dolores Hern\u00E1ndez as Pregnant girl<\/li>\n<li>Santos Morales as Girl's father<\/li>\n<li>Ruth Last as Girl's mother<\/li>\n<li>Jos\u00E9 Rabelo as Girl's uncle<\/li>\n<li><a href=\"\/wiki\/Gilbert_Lewis_(actor)\" title=\"Gilbert Lewis (actor)\">Gilbert Lewis<\/a> as Mob leader<\/li>\n<li><a href=\"\/wiki\/Lisa_Loomer\" title=\"Lisa Loomer\">Lisa Loomer<\/a> as Hooker #1<\/li>\n<li>Sandi Franklin as Hooker #2<\/li>\n<li>Eric Mourino as Boy on roof<\/li>\n<li>Jessica Costel
 lo as Girl on roof<\/li>\n<li>Gloria Irizarry as Drug dealer<\/li>\n<li>Manuel E. Santiago as Intern<\/li>\n<li>Joaquin La Habana as Transvestite<\/li>\n<li>Fred Strothers as Hospital buyer<\/li>\n<li>Sylvia Kuumba Williams as Bartender<\/li>\n<li>Patricia Dratel as Hostage<\/li>\n<li>Thomas Fiorello as Fence<\/li>\n<li>M.J. Quinn as Cop<\/li>\n<li>Bernie Rachelle as Wedgie Patrol<\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Reception\">Reception<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=3\" title=\"Edit section: Reception\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>The film was successful, grossing over $65 million worldwide at its time of release in 1981. Paul Newman was largely praised for his performance, but the movie itself received more negative reviews.<\/p>\n<ul>\n<li><a href=\"\/wiki\/Richard_Schickel\" title
 =\"Richard Schickel\">Richard Schickel<\/a>, in <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>, called it: \"more like a made-for-TV movie\". He also added: \"The film is not quite up to its star\".; \"...somewhere between <a href=\"\/wiki\/Barney_Miller\" title=\"Barney Miller\">Barney Miller<\/a> and the works of <a href=\"\/wiki\/Joseph_Wambaugh\" title=\"Joseph Wambaugh\">Joseph Wambaugh<\/a>\".; and: \"But mainly it is Newman, now 56, who gives Fort Apache its modest distinction\".<sup id=\"cite_ref-2\" class=\"reference\"><a href=\"#cite_note-2\"><span>[<\/span>2<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Roger_Ebert\" title=\"Roger Ebert\">Roger Ebert<\/a>, <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>, said: \"...the most complete collection of cop-movie clich\u00E9s since John Wayne played a Chicago cop in <i>McQ<\/i>\". (Ebert got this incorrect, in <i><a 
 href=\"\/wiki\/McQ\" title=\"McQ\">McQ<\/a><\/i> Wayne played a Seattle policeman, he played a Chicago policeman in <a href=\"\/wiki\/Brannigan_(film)\" title=\"Brannigan (film)\"><i>Brannigan<\/i><\/a>.) \"There are too many scenes that are necessary to the plot but not to the movie, scenes where the life of the movie stops so story details can be filled in\". \"The movie has several story threads that lead nowhere\". But, says about Newman, \"He's good in his role,...\" But, also calls this more of a TV show.<sup id=\"cite_ref-3\" class=\"reference\"><a href=\"#cite_note-3\"><span>[<\/span>3<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a> labeled the film: \"... a very patchy picture, strong on dialog and acting and exceedingly weak on story\", and criticizes it for its lack of depth.<sup id=\"cite_ref-Variety-Review-FATB_4-0\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/s
 pan>4<span>]<\/span><\/a><\/sup><\/li>\n<li>Nick Sambides, Jr. at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a> calls it \"...flinty but otherwise forgettable character study\".<sup id=\"cite_ref-5\" class=\"reference\"><a href=\"#cite_note-5\"><span>[<\/span>5<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li>The <i><a href=\"\/wiki\/New_York_Post\" title=\"New York Post\">New York Post<\/a><\/i> published a photo of Newman on the set with a caption that he stated was inaccurate<sup class=\"noprint Inline-Template\" style=\"white-space:nowrap;\">[<i><a href=\"\/wiki\/Wikipedia:Please_clarify\" title=\"Wikipedia:Please clarify\"><span title=\"The text near this tag may need clarification or removal of jargon. (December 2011)\">clarification needed<\/span><\/a><\/i>]<\/sup>, calling the paper \"a garbage can\". Because of the dispute the <i>Post<\/i> banned him from its pages, even removing his name from movies in the TV listings.<sup id=\"cite_ref-digiacomo200412_6
 -0\" class=\"reference\"><a href=\"#cite_note-digiacomo200412-6\"><span>[<\/span>6<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Legal_issues\">Legal issues<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=4\" title=\"Edit section: Legal issues\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li>Local community groups threatened to file suit against the producers because of the way it depicted their neighborhood in the Bronx and for the depiction of ethnic minorities (Blacks and Puerto Ricans). Because of this pressure some changes were made to the script and a note was added to the title card at the beginning of the film.<sup id=\"cite_ref-Variety-Review-FATB_4-1\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/span>4<span>]<\/span><\/a><\/sup><sup id=\"cite_ref-7\" class=
 \"reference\"><a href=\"#cite_note-7\"><span>[<\/span>7<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li><i>Walker v. Time Life Films, Inc.<\/i>, 784 F.2d 44 (<a href=\"\/wiki\/United_States_Court_of_Appeals_for_the_Second_Circuit\" title=\"United States Court of Appeals for the Second Circuit\">2d Cir<\/a>. 1986)<\/li>\n<\/ul>\n<dl>\n<dd>\n<dl>\n<dd>After the release of the film, an author, Tom Walker, filed a lawsuit against one of the production companies, Time-Life Television Films (legal owner of the script), claiming that the producers infringed on his book <i>Fort Apache<\/i> (New York: Crowell, 1976. <a href=\"\/wiki\/Special:BookSources\/0690010478\" class=\"internal mw-magiclink-isbn\">ISBN 0-690-01047-8<\/a>). Among other things, Walker, the plaintiff, argued that: \"both the book and the film begin with the murder of a black and a white policeman with a handgun at close range; both depict cockfights, drunks, stripped cars, prostitutes and rats; both feature as central
  characters third- or fourth-generation Irish policemen who live in Queens and frequently drink; both show disgruntled, demoralized police officers and unsuccessful foot chases of fleeing criminals\". But the <a href=\"\/wiki\/United_States_Court_of_Appeals_for_the_Second_Circuit\" title=\"United States Court of Appeals for the Second Circuit\">United States Court of Appeals for the Second Circuit<\/a> ruled that these are stereo-typical ideas, so called <i>\"<a href=\"\/wiki\/Scenes_%C3%A0_faire\" title=\"Scenes \u00E0 faire\" class=\"mw-redirect\">sc\u00E8nes \u00E0 faire<\/a>\"<\/i> (French for \"scenes that must be done\"), and that the <a href=\"\/wiki\/United_States_copyright_law\" title=\"United States copyright law\" class=\"mw-redirect\">United States copyright law<\/a> does not protect concepts or ideas. The court ruling stated: \"the book <i>Fort Apache<\/i> and the film <i>Fort Apache: The Bronx<\/i> were not substantially similar beyond [the] level of generalized or oth
 erwise nonprotectible ideas, and thus [the] latter did not infringe copyright of [the] former\".<sup id=\"cite_ref-MargolickD-NYT_8-0\" class=\"reference\"><a href=\"#cite_note-MargolickD-NYT-8\"><span>[<\/span>8<span>]<\/span><\/a><\/sup><sup id=\"cite_ref-9\" class=\"reference\"><a href=\"#cite_note-9\"><span>[<\/span>9<span>]<\/span><\/a><\/sup><\/dd>\n<\/dl>\n<\/dd>\n<\/dl>\n<p><br \/><\/p>\n<h2><span class=\"mw-headline\" id=\"See_also\">See also<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=5\" title=\"Edit section: See also\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/List_of_American_films_of_1981\" title=\"List of American films of 1981\">List of American films of 1981<\/a><\/li>\n<li><a href=\"\/wiki\/Fort_Apache_(hostile_place)\" title=\"Fort Apache (hostile place)\">Fort Apache<\/a><\/li>\n<li>
 <a href=\"\/wiki\/Fort_Apache_(film)\" title=\"Fort Apache (film)\"><i>Fort Apache<\/i> (film)<\/a><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"References\">References<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=6\" title=\"Edit section: References\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<div class=\"reflist\" style=\"list-style-type: decimal;\">\n<ol class=\"references\">\n<li id=\"cite_note-1\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-1\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php\"><i>Fort Apache, The Bronx<\/i><\/a>. \u2013 The Numbers<\/span><\/li>\n<li id=\"cite_note-2\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-2\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=
 \"nofollow\" class=\"external text\" href=\"http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#\">\"Conscience in a Rough Precinct\"<\/a>. \u2013 <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>. \u2013 February 16, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-3\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-3\">^<\/a><\/b><\/span> <span class=\"reference-text\">Ebert, Roger. \u2013 <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/rogerebert.suntimes.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>. \u2013 January 1, 1981 \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-Variety-Review-FATB-4\"><span class=\"mw-cite-backlink\">^ <a href=\"#cite_ref-Variety-Review-FATB_4-0\"><sup><i><b>a<\/b><\/i><\/sup><\/
 a> <a href=\"#cite_ref-Variety-Review-FATB_4-1\"><sup><i><b>b<\/b><\/i><\/sup><\/a><\/span> <span class=\"reference-text\">Film: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.variety.com\/index.asp?layout=print_review&amp;reviewid=VE1117791034&amp;categoryid=31\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a>. \u2013 January 1, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-5\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-5\">^<\/a><\/b><\/span> <span class=\"reference-text\">Sambides, Nick, Jr. \u2013 Review: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&amp;sql=1:18269~T1\"><i>Fort Apache, the Bronx\"<\/i><\/a>. \u2013 <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a>. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-digiacomo200412-6\"><span class=\"mw-cite-backlink\"><b><a 
 href=\"#cite_ref-digiacomo200412_6-0\">^<\/a><\/b><\/span> <span class=\"reference-text\"><span class=\"citation news\">DiGiaomo, Frank (December 2004). <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print\">\"The Gossip Behind the Gossip\"<\/a>. <i>Vanity Fair<\/i><span class=\"reference-accessdate\">. Retrieved September 13, 2011<\/span>.<\/span><span title=\"ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AFort+Apache%2C+The+Bronx&amp;rft.atitle=The+Gossip+Behind+the+Gossip&amp;rft.au=DiGiaomo%2C+Frank&amp;rft.aulast=DiGiaomo%2C+Frank&amp;rft.date=December+2004&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.vanityfair.com%2Fculture%2Ffeatures%2F2004%2F12%2Fpagesix200412.print&amp;rft.jtitle=Vanity+Fair&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal\" class=\"Z3988\"><span style=\"display:none;\">&#160;<\/span><\/span><\/span><\/li>\n<li id=\"cite_note-7\"><span class=\"mw-cite-bac
 klink\"><b><a href=\"#cite_ref-7\">^<\/a><\/b><\/span> <span class=\"reference-text\">Cultural Desk: \"'Apache' Film's Debut Protested\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i>. \u2013 February 7, 1981<\/span><\/li>\n<li id=\"cite_note-MargolickD-NYT-8\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-MargolickD-NYT_8-0\">^<\/a><\/b><\/span> <span class=\"reference-text\">Margolick, David. \u2013 Legal Notes: \"Writer Told 'Ft. Apache' isn't Just His\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i>. \u2013 August 25, 1985<\/span><\/li>\n<li id=\"cite_note-9\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-9\">^<\/a><\/b><\/span> <span class=\"reference-text\">Beeber, Jessie, and Maura Wogan. \u2013 \"Is Sc\u00E8nes \u00E0 Faire Really 'Necessary'?\". \u2013 <i>Entertainment, Arts and Sports Law Journal<\/i>. \u2013 Spri
 ng 2004. \u2013 Vol. 15, No. 1<\/span><\/li>\n<\/ol>\n<\/div>\n<h2><span class=\"mw-headline\" id=\"External_links\">External links<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=7\" title=\"Edit section: External links\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.imdb.com\/title\/tt0082402\/\"><i>Fort Apache, The Bronx<\/i><\/a> at the <a href=\"\/wiki\/Internet_Movie_Database\" title=\"Internet Movie Database\">Internet Movie Database<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/movie\/v18269\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">allmovie<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\
 /\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Rotten_Tomatoes\" title=\"Rotten Tomatoes\">Rotten Tomatoes<\/a><\/li>\n<\/ul>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Daniel_Petrie\" title=\"Template:Daniel Petrie\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Daniel_Petrie\" title=\"Template talk:Daniel Petrie\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" hr
 ef=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Daniel_Petrie&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\">Films directed by <a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1960s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/The_Bramble_Bush\" title=\"The Bramble Bush\">The Bramble Bush<\/a><\/i> (1960)<\/li>\n<li><i><a href=\"\/wiki\/A_Raisin_in_the_Sun_(1961_film)\" title=\"A Raisin in the Sun (1961 film)\">A Raisin in the Sun<\/a><\/i> (1961)<\/li>\n<li><i><a href=\"\/wiki\/The_Main_Attraction_(film)\" title=\"The Mai
 n Attraction (film)\">The Main Attraction<\/a><\/i> (1962)<\/li>\n<li><i><a href=\"\/wiki\/Stolen_Hours\" title=\"Stolen Hours\">Stolen Hours<\/a><\/i> (1963)<\/li>\n<li><i><a href=\"\/wiki\/The_Idol_(film)\" title=\"The Idol (film)\">The Idol<\/a><\/i> (1966)<\/li>\n<li><i><a href=\"\/wiki\/The_Spy_with_a_Cold_Nose\" title=\"The Spy with a Cold Nose\">The Spy with a Cold Nose<\/a><\/i> (1966)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1970s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Moon_of_the_Wolf\" title=\"Moon of the Wolf\">Moon of the Wolf<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki\/The_Neptune_Factor\" title=\"The Neptune Factor\">The Neptune Factor<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki
 \/The_Gun_and_the_Pulpit\" title=\"The Gun and the Pulpit\">The Gun and the Pulpit<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Buster_and_Billie\" title=\"Buster and Billie\">Buster and Billie<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Eleanor_and_Franklin\" title=\"Eleanor and Franklin\">Eleanor and Franklin<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Lifeguard_(film)\" title=\"Lifeguard (film)\">Lifeguard<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Sybil_(1976_film)\" title=\"Sybil (1976 film)\">Sybil<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Eleanor_and_Franklin:_The_White_House_Years\" title=\"Eleanor and Franklin: The White House Years\">Eleanor and Franklin: The White House Years<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Betsy\" title=\"The Betsy\">The Betsy<\/a><\/i> (1978)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1980s<\/th>\n<td 
 class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Resurrection_(1980_film)\" title=\"Resurrection (1980 film)\">Resurrection<\/a><\/i> (1980)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Six_Pack_(film)\" title=\"Six Pack (film)\">Six Pack<\/a><\/i> (1982)<\/li>\n<li><i><a href=\"\/wiki\/The_Dollmaker\" title=\"The Dollmaker\">The Dollmaker<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/The_Bay_Boy\" title=\"The Bay Boy\">The Bay Boy<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/Square_Dance_(film)\" title=\"Square Dance (film)\">Square Dance<\/a><\/i> (1987)<\/li>\n<li><i><a href=\"\/wiki\/Rocket_Gibraltar\" title=\"Rocket Gibraltar\">Rocket Gibraltar<\/a><\/i> (1988)<\/li>\n<li><i><a href=\"\/wiki\/Cocoon:_The_Return\" title=\"Cocoon: The Return\">Coco
 on: The Return<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1990s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Lassie_(1994_film)\" title=\"Lassie (1994 film)\">Lassie<\/a><\/i> (1994)<\/li>\n<li><i><a href=\"\/wiki\/The_Assistant_(1998_film)\" title=\"The Assistant (1998 film)\">The Assistant<\/a><\/i> (1998)<\/li>\n<li><i><a href=\"\/wiki\/Inherit_the_Wind_(1999_film)\" title=\"Inherit the Wind (1999 film)\">Inherit the Wind<\/a><\/i> (1999)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">2000s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;borde
 r-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Wild_Iris_(film)\" title=\"Wild Iris (film)\">Wild Iris<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Heywood_Gould\" title=\"Template:Heywood Gould\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Heywood_Gould\" title=\"Template talk:Heywood Gould\"><span title=\"Discuss this template\" st
 yle=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Heywood_Gould&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\"><a href=\"\/wiki\/Heywood_Gould\" title=\"Heywood Gould\">Heywood Gould<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Films<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/One_Good_Cop\" title=\"One Good Cop\">One Good Cop<\/a><\/i> (1991)<\/li>\n<li><i><a href=\"\/wiki\/Trial_by_Jury_(film)\" title=\"Trial by Jury (film)\">Trial by Jury<\/a><\/i> (1994)<\/li>\n<l
 i><i><a href=\"\/wiki\/Mistrial_(1996_film)\" title=\"Mistrial (1996 film)\">Mistrial<\/a><\/i> (1996)<\/li>\n<li><i><a href=\"\/wiki\/Double_Bang\" title=\"Double Bang\">Double Bang<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Screenplays<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Rolling_Thunder_(film)\" title=\"Rolling Thunder (film)\">Rolling Thunder<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Boys_from_Brazil_(film)\" title=\"The Boys from Brazil (film)\">The Boys from Brazil<\/a><\/i> (1978)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Streets_of_Gold_(film)\" title=\"Streets of Gold (film)\">Streets of Gol
 d<\/a><\/i> (1986)<\/li>\n<li><i><a href=\"\/wiki\/Cocktail_(1988_film)\" title=\"Cocktail (1988 film)\">Cocktail<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n\n\n<!-- \nNewPP limit report\nParsed by mw1206\nCPU time usage: 0.536 seconds\nReal time usage: 0.615 seconds\nPreprocessor visited node count: 873\/1000000\nPreprocessor generated node count: 4510\/1500000\nPost\u2010expand include size: 28730\/2048000 bytes\nTemplate argument size: 1418\/2048000 bytes\nHighest expansion depth: 11\/40\nExpensive parser function count: 5\/500\nLua time usage: 0.068\/10.000 seconds\nLua memory usage: 1.57 MB\/50 MB\n-->\n\n<!-- Saved in parser cache with key enwiki:pcache:idhash:8009696-0!*!0!!en!4!* and timestamp 20140323010622\n -->\n","categories":["Wikipedia_articles_needing_clarification_from_December_2011","1981_films","1980s_drama_films","Docudramas","American_films","English-language_films","Fictional_portrayals_of_the_New_York_City_Pol
 ice_Department","Films_set_in_the-Bronx","Films_directed_by_Daniel_Petrie","20th_Century_Fox_films"],"created_at":"Sun, 23 Mar 2014 01:06:21 +0000","diff":{"changes":{"added":["[[Category:Fictional portrayals of the New York City Police Department]]"],"removed":[]},"from":"591208870","htmldiff":"<tr>\n  <td colspan=\"2\" class=\"diff-lineno\">Line 130:<\/td>\n  <td colspan=\"2\" class=\"diff-lineno\">Line 130:<\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:American films]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:American films]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:English-language films]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:English-language films]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td colspan=\"2\" class=\"diff-empty\">&#160
 ;<\/td>\n  <td class=\"diff-marker\">+<\/td>\n  <td class=\"diff-addedline\"><div>[[Category:Fictional portrayals of the New York City Police Department]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films_set_in_the-Bronx]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films_set_in_the-Bronx]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films directed by Daniel Petrie]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films directed by Daniel Petrie]]<\/div><\/td>\n<\/tr>\n\n<!-- diff cache key enwiki:diff:version:1.11a:oldid:591208870:newid:600811633 -->\n","to":"600811633"},"externallinks":["http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php","http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#","http:\/\/rogerebert.suntime
 s.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023","http:\/\/www.variety.com\/index.asp?layout=print_review&reviewid=VE1117791034&categoryid=31","http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&sql=1:18269~T1","http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print","\/\/tools.wmflabs.org\/geohack\/geohack.php?pagename=Fort_Apache,_The_Bronx&params=40_49_32.07_N_73_53_33.72_W_scale:2000","http:\/\/www.imdb.com\/title\/tt0082402\/","http:\/\/www.allmovie.com\/movie\/v18269","http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/"],"id":"600811633","images":["Fort_apache_the_bronx.jpg","Fort_Apache_Police_Precinct,_2007.JPG"],"langlinks":[{"lang":"de","url":"http:\/\/de.wikipedia.org\/wiki\/The_Bronx","title":"The Bronx","langname":"German","autonym":"Deutsch"},{"lang":"es","url":"http:\/\/es.wikipedia.org\/wiki\/Fort_Apache,_The_Bronx","title":"Fort Apache, The Bronx","langname":"Spanish","autonym":"espa\u00F1ol"},{"lang":"eu","url":"htt
 p:\/\/eu.wikipedia.org\/wiki\/Fort_Apache,_The_Bronx","title":"Fort Apache, The Bronx","langname":"Basque","autonym":"euskara"},{"lang":"fr","url":"http:\/\/fr.wikipedia.org\/wiki\/Le_Policeman","title":"Le Policeman","langname":"French","autonym":"fran\u00E7ais"},{"lang":"it","url":"http:\/\/it.wikipedia.org\/wiki\/Bronx_41%C2%BA_distretto_di_polizia","title":"Bronx 41\u00BA distretto di polizia","langname":"Italian","autonym":"italiano"},{"lang":"lt","url":"http:\/\/lt.wikipedia.org\/wiki\/Apa%C4%8Di%C5%B3_fortas_Bronkse","title":"Apa\u010Di\u0173 fortas Bronkse","langname":"Lithuanian","autonym":"lietuvi\u0173"},{"lang":"no","url":"http:\/\/no.wikipedia.org\/wiki\/Politistasjonen_Fort_Apache","title":"Politistasjonen Fort Apache","langname":"Norwegian (bokm\u00E5l)","autonym":"norsk bokm\u00E5l"},{"lang":"pl","url":"http:\/\/pl.wikipedia.org\/wiki\/Fort_Apache,_Bronx","title":"Fort Apache, Bronx","langname":"Polish","autonym":"polski"},{"lang":"uk","url":"http:\/\/uk.wikipedia.or
 g\/wiki\/%D0%A4%D0%BE%D1%80%D1%82_%D0%90%D0%BF%D0%B0%D1%87,_%D0%91%D1%80%D0%BE%D0%BD%D0%BA%D1%81","title":"\u0424\u043E\u0440\u0442 \u0410\u043F\u0430\u0447, \

<TRUNCATED>

[02/45] Datasift mapping to activity fixes and extensions

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json
new file mode 100755
index 0000000..478f5fe
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json
@@ -0,0 +1,6998 @@
+{"board":{"anchor":"post8881971","author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"boardname":"Tech Support Guy - Free help for Windows 7, Vista, XP, and more!","categories":"Software","content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\"
  alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisible(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","countrycode":"US","crawled":"Sun, 23 Mar 2014 09:18:13 +0000","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","domain":"www.techguy.org","forumid":"469bbbf115a","forumname":"All Other Software","forumurl":"http:\/\/forums.techguy.org\/18-all-other-software\/","gmt":"-5","id":"1e3b20559a7daa00e072105aaa3de61e","language":"English","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","siteid":"3cbc7f773","thread":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html","threadid":"1122437","title":"Apache Open Office","topics":"Computers","type":"post
 "},"interaction":{"author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\" alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisibl
 e(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","id":"1e3b20559a7daa00e072105aaa3de61e","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","schema":{"version":3},"subtype":"post","title":"Apache Open Office","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-4},"title":{"sentiment":0}}}
+{"board":{"anchor":"post11387078","author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"boardname":"ZWAME F\u00F3rum","categories":"Hardware","content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APACHE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P
 170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIn
 tel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nBluetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","countrycode":"PT","crawled":"Sun, 23 Mar 2014 19:41:39 +0000","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","domain":"www.zwame.pt","forumid":"4e9be0585b","forumname":"Por
 t\u00E1teis","forumurl":"http:\/\/forum.zwame.pt\/forumdisplay.php?f=136","gmt":"+1","id":"1e3b20677c20aa00e072a04d81597bd0","language":"Portuguese","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","siteid":"4e9bdf6356","thread":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2","threadid":"852065","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","topics":"Computers","type":"post"},"interaction":{"author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APAC
 HE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=
 \"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIntel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nB
 luetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","id":"1e3b20677c20aa00e072a04d81597bd0","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","received_at":4743640457867795261,"schema":{"version":3},"subtype":"post","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","type":"board"},"language":{"confidence":66,"tag":"es","tag_extended":"es"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]},{"name":"GE70 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]}],"sentiment":0},"title":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":4,"type":"Place","about":1},{"name":"GE6
 0 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
+{"blog":{"author":{"name":"Stileex"},"blog":{"link":"http:\/\/laptop.toprealtime.net\/","title":"Laptop News"},"blogid":"71107731","content":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","domain":"laptop.toprealtime.net","guid":"8921b89d1faad3d22a6e2a7ed55765e1","id":"1e3b209dfc61af80e072ce1ee22bb088","lang":"en","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","parseddate":"Sun, 23 Mar 2014 00:21:59 +0000","postid":"ed8205a9-2812-4fa6-a730-692b75adc9d7","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"post"},"interaction":{"author":{"name":"Stileex"},"content":"If you are a
  gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","id":"1e3b209dfc61af80e072ce1ee22bb088","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","received_at":4743640105474628098,"schema":{"version":3},"subtype":"post","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["fast performance","great graphics","audio output","gaming freak","gaming laptop","lightweight laptop","stunning \u2026"]}],
 "sentiment":2,"topics":[{"name":"Video Games","score":0.64548820257187,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0},{"name":"Hardware","score":0.45651730895042,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0}]},"title":{"sentiment":6,"topics":[{"name":"Video Games","score":0.62834107875824,"additional":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","hits":0}]}}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"created_at":"Sat, 22 Mar 2014 21:38:22 +0000","description":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out ne
 xt week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","id":"100003271543139_537596739692706","link":"http:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323","name":"Mescalero Apache Head Start","picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-ash2\/t1.0-1\/c0.0.100.100\/p100x100\/379713_183249568536164_895695882_a.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"content":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will
  be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out next week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","created_at":"Sat, 22 Mar 2014 21:38:22 +0000","id":"1e3b20a4a775ab00e066d203c4340184","link":"http:\/\/www.facebook.com\/100003271543139_537596739692706","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Mescalero Apache Head Start","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:39:20 +0000"],"hops":[["http:\/\/www.facebook.com\/mesca
 leroapacheheadstart\/posts\/219371308257323"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"],"retweet_count":[0],"title":["UPDATE: Since the \"Mescalero Blessing... - Mescalero Apache Head Start | Facebook"],"url":["https:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"]},"salience":{"content":{"entities":[{"name":"April 1, 2014","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0},{"name":"Mescalero South Hall","sentiment":0,"confident":1,"label":"building","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"Bowling Alley","sentiment":0,"confident":1,"label":"road","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"\"Mescalero Blessing Run\"","sentiment":0,"confident":1,"labe
 l":"Quote","evidence":1,"type":"Quote","about":0}],"sentiment":2},"title":{"sentiment":0}}}
+{"demographic":{"gender":"unisex"},"facebook":{"application":"Photos","author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"caption":"First weekend of Spring! Time to get outside and enjoy the WMAT rez :)","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","icon":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/v2\/yD\/r\/aS8ecmYRys0.gif","id":"100002126551451_605465259534354","link":"http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1","message":"C'mon over...\n","name":"Photos of White Mountain Apache Tribe Game & Fish","og":{"by":"Michael Frank"},"picture":"http:\/\/photos-e.ak.fbcdn.net\/hphotos-ak-ash3\/t1.0-0\/1920219_10101477649345853_670694643_s.jpg","source":"Photos (2305272732)","story":"Sharon Gloshay shared a photo.","story_tags":[[{"name":"Sharon Gloshay","length":14,"type":"user","id":"100002126
 551451","offset":0}]],"type":"photo"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"content":"C'mon over...\n","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","id":"1e3b20ad4272a880e06678b4f07fd236","link":"http:\/\/www.facebook.com\/100002126551451_605465259534354","schema":{"version":3},"source":"Photos (2305272732)","subtype":"photo","title":"Photos of White Mountain Apache Tribe Game & Fish","type":"facebook"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:50 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["First weekend of Spring! Time to get outside and enjoy the WMAT rez :)"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?fbid=101014776493
 45853&set=o.320779744643135&type=1"],"retweet_count":[0],"title":["Michael Frank - Photos of White Mountain Apache Tribe Game... | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"caption":"minneapolis.en.craigslist.org","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","description":"[ post ][ account ]0 favoritesCL >minneapolis >carv\/sher\/wri >all for sale \/ wanted >rvs - by owner\u2014 \u2014 \u2014\u2709\u260Ereplyxprohibited[?]Posted: 2014-02-17 12:30pm Apache Hardside Camper ~Wanted~ Looking for a Apache Hardside Pop-Up Camper Please let me know what you have available do NOT contact me with unsoli...","id":"201182856613333_689921864406094","link":"http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html","message":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","name":"Apache Hardside Camper ~Wanted~","source":"Facebook for Android (350685531728)",
 "to":{"ids":["201182856613333"],"names":["Apache Camper Preservation Society"]},"type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"content":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","id":"1e3b20adab5aa000e0661b0a9e430820","link":"http:\/\/www.facebook.com\/201182856613333_689921864406094","mention_ids":["201182856613333"],"mentions":["Apache Camper Preservation Society"],"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Apache Hardside Camper ~Wanted~","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:47 +0000"],"meta":{"charset":["CP1252"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url"
 :["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"],"retweet_count":[0],"title":["Apache Hardside Camper ~Wanted~"],"url":["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"]},"salience":{"content":{"sentiment":0,"topics":[{"name":"Advertising","score":0.47485229372978,"additional":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","hits":0}]},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"GrabInbox","author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"user"},"caption":"mcp.infusionsoft.com","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","description":"type Status report The requested resource is not available.","id":"100004948484234_257154551126159","link":"https:\/\/mcp.infusionsoft.com\/go\/2ndcha","message":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","name":"Apache Tomcat\/6.0.36 - Error report","source":"GrabInbox (135280156521587)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"use
 r"},"content":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","id":"1e3b20b3a13ba000e0668cdbdc72d878","link":"http:\/\/www.facebook.com\/100004948484234_257154551126159","received_at":4743640062960685023,"schema":{"version":3},"source":"GrabInbox (135280156521587)","subtype":"link","title":"Apache Tomcat\/6.0.36 - Error report","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404],"created_at":["Sat, 22 Mar 2014 21:46:07 +0000"],"hops":[["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-5}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPad","author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=100000632293926","name":"Xavier Tatum","type":"user"},"created_at":"Sat, 22 Mar 2014 21:46:28 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"100000632293926_733005476730522","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=1000006
 32293926","name":"Xavier Tatum","type":"user"},"content":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","created_at":"Sat, 22 Mar 2014 21:46:28 +0000","id":"1e3b20b6c251a200e066d8ce3663edc2","link":"http:\/\/www.facebook.com\/100000632293926_733005476730522","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","subtype":"video","title":"Mizai Performing Live @ Apache Cafe","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:25:38 +0000"],"hops":[["http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U&app=desktop"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent"],"keywords":[["Apache Cafe (Building)","Mizai","Performing","live","Atl","Exposure","Open","Mic","Pe
 rformance","Fan","myself","Stage","Microphone","DJ","Mizay","Streetz","Grindin","BAMA","Op..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg"}],"twitter":[{"player_width":"1280","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","player_height":"720","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Pe
 rforming Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/Pc5QXkarL0U"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=Pc5QXkarL0U"],"retweet_count":[0],"title":["Mizai Performing Live @ Apache Cafe - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U"]}}
+{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"boardname":"Questions - Server Fault","categories":"Hardware","content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.ChannelSocket.pause(ChannelSocket.
 java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCaused by: java.net.UnknownHos
 tException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HTTP\/1.1 on http-8080\nMar 2
 2, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol start\nINFO: Starting Coyo
 te HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 08:30:47 +0000","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","domain":"serverfault.com","forumid":"4c8963bd4","forumname":"Forum","forumurl":"http:\/\/serverfault.com\/questions?sort=newest","id":"1e3b20ba2fb2a800e072aadb0d45650a","language":"English","link":"http:\/\/serverfault.com\/q\/583910#","siteid":"4c8963bc2","thread":"http:\/\/serverfault.com\/q\/583910","threadid":"583910","threadstarter":1,"title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: 
 hostname: hostname: Name or service not known","topics":"Computers","type":"thread"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.Channel
 Socket.pause(ChannelSocket.java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCau
 sed by: java.net.UnknownHostException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HT
 TP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol
  start\nINFO: Starting Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","id":"1e3b20ba2fb2a800e072aadb0d45650a","link":"http:\/\/serverfault.com\/q\/583910#","received_at":4743640653856312918,"schema":{"version":3},"subtype":"thread","title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: hostname: hostname: Name or service not known","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Mar 22, 2014","sentiment":-5,"confident":1,"label"
 :"Date","evidence":6,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","tomcat6 service configured","pause INFO","optimal performance","production environments"]},{"name":"INFO","sentiment":-7,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"8080 Mar 22","sentiment":-19,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"6.0.24 Mar 22","sentiment":-17,"confident":1,"label":"Date","evidence":3,"type":"Pattern","about":1,"themes":["optimal performance","production environments","previous errors","init INFO","ajp13 listening"]},{"name":"8009 Mar 22","sentiment":-7,"confident":1,"label":"Date","evidence":5,"type":"Pattern","about":0,"themes":["previous error
 s","init INFO","ajp13 listening"]}],"sentiment":-2},"title":{"sentiment":-5}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100002691827913_484469828319407","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","message":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture
 ":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"content":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","id":"1e3b20bc9b95ae80e066fe4bf1bfb094","link":"http:\/\/www.facebook.com\/100002691827913_484469828319407","received_at":4743640063974247393,"sche
 ma":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confi
 dent":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\/www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:49:42 +0000","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","id":"731196387_10152355066466388","link":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","name":"Sugarhill Gang Apache (Jump On It)","picture":"http:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l","source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","to":{"ids":["100000046087502"],"names":["Nathan Bluerock"]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\
 /www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"content":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","created_at":"Sat, 22 Mar 2014 21:49:42 +0000","id":"1e3b20bdfc71af00e066bcb6b8e3130c","link":"http:\/\/www.facebook.com\/731196387_10152355066466388","mention_ids":["100000046087502"],"mentions":["Nathan Bluerock"],"received_at":4743640064119570380,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Sugarhill Gang Apache (Jump On It)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 01:42:36 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watch
 ing!"],"keywords":[["Funky","Pop","Greatness","Awesome"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtub
 e.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/vQObWW06VAM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=vQObWW06VAM"],"retweet_count":[0],"title":["Sugarhill Gang Apache (Jump On It) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=vQObWW06VAM"]}}
+{"board":{"anchor":"117232","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":
 "html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04:35:09 +0000","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20c55cb8a600e0722dd61ff7876a","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"content":"<div class=\"kmsgtext\">\n\
 t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","id":"1e3b20c55cb8a600e0722dd61ff7876a","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"sa
 lience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.58399718999863,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Automotriz","score":0.57611888647079,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9
 n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Energ\u00EDa natural","score":0.4619414806366,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u
 00E9 comentando como me va con ella.","hits":0}]},"title":{"sentiment":0}}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"newsok.com","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","id":"100000455275358_753304071361428","link":"http:\/\/ow.ly\/uKTg1","name":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAMLLC9jSlzmhOK&w=154&h=154&url=http%3A%2F%2Fcdn2.newsok.biz%2Fcache%2Fw620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link
 ":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","id":"1e3b20c87445a180e0665ce87651d4d0","link":"http:\/\/www.facebook.com\/100000455275358_753304071361428","schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:27 +0000"],"hops":[["http:\/\/ow.ly\/uKTg1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government."],"lang":["unknown"],"ope
 ngraph":[{"site_name":"NewsOK.com","type":"article","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","url":"http:\/\/newsok.com\/article\/3935671","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","image":"http:\/\/cdn2.newsok.biz\/cache\/w620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg"}]},"normalized_url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"],"retweet_count":[0],"title":["Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico | News OK"],"url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:08 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"388424624543961_652943931425361","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=
 ZrcVKWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","to":{"ids":["388424624543961"],"names":["Ret.Officers Living Or Willing To Move Outside The U.S."]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a mo
 ralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 Mar 2014 21:55:08 +0000","id":"1e3b20ca216ca600e066737903b59bf6","link":"http:\/\/www.facebook.com\/388424624543961_652943931425361","mention_ids":["388424624543961"],"mentions":["Ret.Officers Living Or Willing To Move Outside The U.S."],"received_at":4743640065503462529,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul 
 Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtub
 e"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:30 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"792873959_10152287778028960","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcV
 KWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 
 Mar 2014 21:55:30 +0000","id":"1e3b20caf33ba500e0669b6b2a096842","link":"http:\/\/www.facebook.com\/792873959_10152287778028960","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as th
 e officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog
 "}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
+{"demographic":{"gender":"unisex"},"facebook":{"application":"V\u00EDdeos","author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"created_at":"Sat, 22 Mar 2014 21:56:14 +0000","description":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","id":"100007024808424_1435534340024046","link":"http:\/\/www.facebook.com\/photo.php?v=301721056644466","name":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","og":{"dura\u00E7\u00E3o":"1:50"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-ash3\/t15.0-10\/1898357_301721366644435_301721056644466_21573_1925_t.jpg","source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","
 type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"content":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","created_at":"Sat, 22 Mar 2014 21:56:14 +0000","id":"1e3b20cc96d9a300e0662f3920bf5e56","link":"http:\/\/www.facebook.com\/100007024808424_1435534340024046","schema":{"version":3},"source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","subtype":"video","title":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","type":"facebook"},"language":{"confidence":98,"tag":"pt","tag_extended":"pt"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 15:04:52 +0000"],"hops":[["htt
 p:\/\/www.facebook.com\/photo.php?v=301721056644466"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. "],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=301721056644466"],"retweet_count":[0],"title":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O... - De POUCO UM TUDO. | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=301721056644466"]}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"indiancountrytodaymedianetwork.com","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","description":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","id":"100000455275358_753306681361167","link":"http:\/\/ow.ly\/uKToH","name":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQBfQuIg2QEiixtK&w=154&h=154&url=http%3A%2F%2Fd1jrw5jterzxwu.cloudfront.net%2Fsites%2Fdefault%2Ffiles%2Farticle_media%2Fapache-1886.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/10000045527
 5358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","id":"1e3b20d67f9fa400e066004f93ac9c70","link":"http:\/\/www.facebook.com\/100000455275358_753306681361167","received_at":4743640066903726306,"schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-2,"topics":[{"name":"War","score":0.54581296443939,"additional":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","hits":0}]},"title":{"sentime
 nt":-4}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPhone","author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"created_at":"Sat, 22 Mar 2014 22:01:17 +0000","description":"TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.\n\nTVS Motor Company Ltd (TVS Motor), member of the TVS grou...","id":"1297415516_10203309137071332","link":"http:\/\/www.facebook.com\/TVSApacheOfficial","message":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it'
 s more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sale
 s mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'9500965507\nPollachi","name":"TVS Apache","og":{"product\/service":"1,040,347 like this"},"picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-prn1\/t1.0-1\/1512540_649033688487904_1254327688_a.jpg","source":"Facebook for iPhone (6628568379)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"content":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it's more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the
  customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sales mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'95
 00965507\nPollachi","created_at":"Sat, 22 Mar 2014 22:01:17 +0000","id":"1e3b20d7e07ba480e066eaccfc9d6c40","link":"http:\/\/www.facebook.com\/1297415516_10203309137071332","received_at":4743640067019986960,"schema":{"version":3},"source":"Facebook for iPhone (6628568379)","subtype":"link","title":"TVS Apache","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 22:01:43 +0000"],"hops":[["http:\/\/www.facebook.com\/TVSApacheOfficial"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["TVS Apache. 1,040,347 likes \u00B7 8,629 talking about this. TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.TVS Motor Company Ltd (TVS Motor), member of the TVS group, is the largest company of the group in ter
 ms of size and turnover."],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/TVSApacheOfficial"],"retweet_count":[0],"title":["TVS Apache | Facebook"],"url":["https:\/\/www.facebook.com\/TVSApacheOfficial"]},"salience":{"content":{"entities":[{"name":"Coimbatore MTP road","sentiment":3,"confident":1,"label":"road","evidence":7,"type":"Place","about":1,"themes":["complete registration book","Next day evening","good dealer","customer care","urgent process","extra amount","road showroom","insurance papers","2nd company","quick delivery"]},{"name":"manager","sentiment":5,"confident":1,"label":"Job Title","evidence":7,"type":"Job Title","about":1,"themes":["reliable person manager","complete registration book","good dealer","customer care","2nd company","30pm bike","day evening","lotus sales"]}],"sentiment":3,"topics":[{"name":"Business","score":0.90492594242096,"additional":"I am in Coimbatore city 'pollachi ' It's 2nd company with complaint of commitment which was agree on ever
 ything was legally done but the RC book ? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ? Note:Lotus Tvs dealer in Coimbatore MTP road showroom Paid for urgent process extra amount of 495 (delivery of bike also paid )for register notary all paid and Next day evening receive the bike among the insurance papers only & register numbers by SMS !","hits":0}]},"title":{"sentiment":0}}}
+{"board":{"anchor":"117233","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"kmsgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les s
 eguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04
 :35:10 +0000","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20eb5c32ac00e072bf86636ba614","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"km
 sgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y q
 ue no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","id":"1e3b20eb5c32ac00e072bf86636ba614","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.54232031106949,"additional":"KrOnK89 
 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser u
 n da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Automotriz","score":0.52735489606857,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\
 u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... por que veo que te quedas sin moto hasta que te la arreglen.","hits":0},{"name":"Ciencia","score":0.52646517753601,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema inf
 inito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Inmobiliaria","score":0.49977034330368,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\
 u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0}]},"title":{"sentiment":0}}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100004773398251_275283519307426","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Facebook for Android (35068
 5531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"content":"Photos of the Apache camp in Tularosa Canyon, New Mexico","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","id":"1e3b21017d06a100e066a7ebf76f1348","link":"http:\/\/www.facebook.com\/100004773398251_275283519307426","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unk
 nown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1},{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
+{"board":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"boardname":"\u767E\u5EA6\u77E5\u9053 - \u5168\u7403\u6700\u5927\u4E2D\u6587\u4E92\u52A8\u95EE\u7B54\u5E73\u53F0","categories":"General Talk","content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=\"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","conten
 ttype":"html","countrycode":"CN","crawled":"Sun, 23 Mar 2014 09:26:43 +0000","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","domain":"zhidao.baidu.com","forumid":"52c374722","forumname":"\u670D\u52A1\u5668\u8F6F\u4EF6","forumurl":"http:\/\/zhidao.baidu.com\/browse\/1245","gmt":"-8","id":"1e3b21086adbaa00e0726da0291633ce","language":"Chinese - Simplified","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","siteid":"52bca2440","thread":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html","threadid":"2074162451508708028","threadstarter":1,"title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","topics":"Social","type":"thread"},"interaction":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=
 \"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","id":"1e3b21086adbaa00e0726da0291633ce","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","received_at":4743640302542788965,"schema":{"version":3},"subtype":"thread","title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","type":"board"},"language":{"confidence":79,"tag":"zh","tag_extended":"zh-cn"}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/734307369\/picture","id":"734307369","link":"http:\/\/www.facebook.com\/profile.php?id=734307369","name":"Tory T-ham Hamilton","type":"user"},"created_at":"Sat, 22 Mar 2014 22:23:10 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"734307369_10152282200827370","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.y

<TRUNCATED>

[27/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
index c912f0c..cb59601 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
@@ -1,719 +1,719 @@
-{"blog":{"author":{"name":"Stileex"},"blog":{"link":"http:\/\/laptop.toprealtime.net\/","title":"Laptop News"},"blogid":"71107731","content":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","domain":"laptop.toprealtime.net","guid":"8921b89d1faad3d22a6e2a7ed55765e1","id":"1e3b209dfc61af80e072ce1ee22bb088","lang":"en","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","parseddate":"Sun, 23 Mar 2014 00:21:59 +0000","postid":"ed8205a9-2812-4fa6-a730-692b75adc9d7","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"post"},"interaction":{"author":{"name":"Stileex"},"content":"If you are a
  gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","id":"1e3b209dfc61af80e072ce1ee22bb088","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","received_at":4743640105474628098,"schema":{"version":3},"subtype":"post","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["fast performance","great graphics","audio output","gaming freak","gaming laptop","lightweight laptop","stunning \u2026"]}],
 "sentiment":2,"topics":[{"name":"Video Games","score":0.64548820257187,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0},{"name":"Hardware","score":0.45651730895042,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0}]},"title":{"sentiment":6,"topics":[{"name":"Video Games","score":0.62834107875824,"additional":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","hits":0}]}}}
-{"blog":{"author":{"name":"Slick aka, Paul Everett"},"blog":{"link":"http:\/\/travelswithtwinkles.blogspot.com\/","title":"Travels with Twinkles"},"blogid":"70539695","content":"March 17 - 21, 2014: After picking up our mail at the Globe post office (our new South Dakota license plates and registration), it was Adios to Globe and onward on Rt 188 up over a steep pass to Roosevelt Lake. \u00A0 Roosevelt Lake is a huge recreational area, enormous, with eight developed campgrounds that contain 1,500 campsites and several boat ramps and marinas. This area is jointly operated by the National Forest Service and the US Department of Agriculture.\u00A0 It is all first come, first served campsites, nice size campsites with picnic tables, shade armadas, fire pits, Toilet\/Bath house, potable water, but no hookups or amenities.\u00A0 It is a really great boating and fishing area that attracts people from all over.\u00A0 They have a crazy camping system here, to camp you first need a Tonto Pass
  which you can only get at local merchants or the ranger station, but not at the Campground ?\u00A0 This pass is a card with scratch off boxes for the date and is good for only 24 hours. Since we are staying 5 days, we had to buy 5 cards, one for each day and we have to put a new card on the vehicle with the new date scratched off each day. Seems like a wasteful and inefficient method !\u00A0 Tonto Pass While I'm on a rant, another thing, they have about 1,500 campsites here, but no store of any kind where you can buy necessities such as water, ice, beer, snacks, etc and also only two part time dump stations.\u00A0 Also only one privately owned gas station\/store at the south end of the recreation area, that's it, otherwise you must drive 30 some miles to Globe or Payson for anything. The recreation area could be making considerable money with some kind of store here, I would think ? \u00A0 \u00A0 On Wednesday, we went to the Tonto National Monument practically across the road from 
 the campground.\u00A0 This is a Salado Indian cliff dwelling site that is remarkable. \u00A0There is a lower and a upper cliff dwelling, however the upper is only accessible by guided tours on weekends.\u00A0 The view from the cliff dwelling was really beautiful although todays lake in the distance did not exist back then.\u00A0 If it had the Salado might still be here.\u00A0 They were productive farmers who built irrigation canals from the river to water their crops and were also hunters and gathers.\u00A0 They developed a style of Polychrome pottery with intricate designs that became most popular.\u00A0 They disappeared sometime in the mid 1400's, it is speculated due to the harsh cycles of drought and flooding here. This also plagued the early US settlers, which led to building the Roosevelt Dam which in turn led to the development of the whole Phoenix metropolitan area. \u00A0Progress ?\u00A0 Tonto Cliff Dwellings Interior of Cliff Dwellings Interior view of cliff dwellings View
  from the cliff dwellings, Roosevelt lake in distance View of Roosevelt Dam on display at visitors center View of Roosevelt Bridge Another angle of the bridge View of Roosevelt Dam, the original Dam was all masonry block construction.\nThe Dam was modified latter to raise to a higher height and to strengthen. The pretty side of Roosevelt Dam Thursday I went off in search of adventure with a drive from Roosevelt Dam to Tortilla Flat on the Apache Trail.\u00A0 Twinkles declined as she is not fond of roads that have endless drop offs with minimal or no guard rails. It is 26 miles in length, 22 of which is dirt and not smooth dirt, but mostly a bumpy, corduroy surface.\u00A0 It is also narrow in places, sometimes one lane only, steep, curvy and dusty.\u00A0 The Jeep has a stiff suspension and rides very rough, had to keep the speed low so I wouldn't dribble over the edge in places. The scenery however is world class, especially the most scary parts near Fish Creek.\u00A0 I did have a mi
 nor accident off the road taking a photo, when I lost my balance, fell into a cactus, scrapped by leg and landed on an anthill. I broke my fall with the camera, but somehow did not seem to damage it.\u00A0 Overall not much damage, except for about an hour with needle and tweezers picking out cactus needles. View of Salt River from the Apache Trail Apache Trail view, nice Bridge Brittle bush are blooming everywhere Poppys all over too ! Something in Daisy family, should know View of Apache Lake from Apache Trail Interesting Saguaro's along trail Luscious green Cottonwood Trees along creek Taking a break from the brain rattling ride Headings down into Canyon area View in the Canyon Over the bridge then up the narrow ledge above\u00A0 It was worse than it looks here Coming back up from the other side, better on the inside of road Nice camp fire setting along trail In spite of my slip, I got the photo I wanted Another common flower in bloom everywhere Theodore Roosevelt, traveled on the
  Apache trail to the dedication of the Roosevelt Dam on March 18, 1911 and said the following about the trail in his speech; \"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\". \u00A0(He did have a way with words.) In that vein, I'm now hooked on Tony Hillerman books, who also has a way with words.\u00A0 I am now on my third book this month, might be a record.\u00A0 Twinkles, the original bookworm is very impressed.\u00A0 The books take place in the Navajo and Pima Indian country where we are headed.\u00A0 I'm trying think more like an indian these days We are taking short hops north with the next one on Friday to Payson, Arizona.\u00A0 We plan about 4-5 days there to recharge with a full hookup campsite.\u00A0 Lots to see and do in Payson, it's Zane Grey country. Keep on moving On, Twink
 les and Slick","contenttype":"html","created_at":"Sun, 23 Mar 2014 05:10:54 +0000","domain":"travelswithtwinkles.blogspot.com","guid":"b6d83791b3272825ea1f6e8f64a77de7","id":"1e3b2498251ca300e072258d0d14ada8","lang":"en","link":"http:\/\/travelswithtwinkles.blogspot.com\/2014\/03\/roosevelt-dam-and-apache-trail.html","parseddate":"Sun, 23 Mar 2014 05:13:20 +0000","postid":"cd66debe-de0c-4f34-8290-8d72e79cc040","title":"Roosevelt Dam and the Apache Trail","type":"post"},"demographic":{"gender":"unisex"},"interaction":{"author":{"name":"Slick aka, Paul Everett"},"content":"March 17 - 21, 2014: After picking up our mail at the Globe post office (our new South Dakota license plates and registration), it was Adios to Globe and onward on Rt 188 up over a steep pass to Roosevelt Lake. \u00A0 Roosevelt Lake is a huge recreational area, enormous, with eight developed campgrounds that contain 1,500 campsites and several boat ramps and marinas. This area is jointly operated by the National For
 est Service and the US Department of Agriculture.\u00A0 It is all first come, first served campsites, nice size campsites with picnic tables, shade armadas, fire pits, Toilet\/Bath house, potable water, but no hookups or amenities.\u00A0 It is a really great boating and fishing area that attracts people from all over.\u00A0 They have a crazy camping system here, to camp you first need a Tonto Pass which you can only get at local merchants or the ranger station, but not at the Campground ?\u00A0 This pass is a card with scratch off boxes for the date and is good for only 24 hours. Since we are staying 5 days, we had to buy 5 cards, one for each day and we have to put a new card on the vehicle with the new date scratched off each day. Seems like a wasteful and inefficient method !\u00A0 Tonto Pass While I'm on a rant, another thing, they have about 1,500 campsites here, but no store of any kind where you can buy necessities such as water, ice, beer, snacks, etc and also only two part 
 time dump stations.\u00A0 Also only one privately owned gas station\/store at the south end of the recreation area, that's it, otherwise you must drive 30 some miles to Globe or Payson for anything. The recreation area could be making considerable money with some kind of store here, I would think ? \u00A0 \u00A0 On Wednesday, we went to the Tonto National Monument practically across the road from the campground.\u00A0 This is a Salado Indian cliff dwelling site that is remarkable. \u00A0There is a lower and a upper cliff dwelling, however the upper is only accessible by guided tours on weekends.\u00A0 The view from the cliff dwelling was really beautiful although todays lake in the distance did not exist back then.\u00A0 If it had the Salado might still be here.\u00A0 They were productive farmers who built irrigation canals from the river to water their crops and were also hunters and gathers.\u00A0 They developed a style of Polychrome pottery with intricate designs that became most
  popular.\u00A0 They disappeared sometime in the mid 1400's, it is speculated due to the harsh cycles of drought and flooding here. This also plagued the early US settlers, which led to building the Roosevelt Dam which in turn led to the development of the whole Phoenix metropolitan area. \u00A0Progress ?\u00A0 Tonto Cliff Dwellings Interior of Cliff Dwellings Interior view of cliff dwellings View from the cliff dwellings, Roosevelt lake in distance View of Roosevelt Dam on display at visitors center View of Roosevelt Bridge Another angle of the bridge View of Roosevelt Dam, the original Dam was all masonry block construction.\nThe Dam was modified latter to raise to a higher height and to strengthen. The pretty side of Roosevelt Dam Thursday I went off in search of adventure with a drive from Roosevelt Dam to Tortilla Flat on the Apache Trail.\u00A0 Twinkles declined as she is not fond of roads that have endless drop offs with minimal or no guard rails. It is 26 miles in length, 22
  of which is dirt and not smooth dirt, but mostly a bumpy, corduroy surface.\u00A0 It is also narrow in places, sometimes one lane only, steep, curvy and dusty.\u00A0 The Jeep has a stiff suspension and rides very rough, had to keep the speed low so I wouldn't dribble over the edge in places. The scenery however is world class, especially the most scary parts near Fish Creek.\u00A0 I did have a minor accident off the road taking a photo, when I lost my balance, fell into a cactus, scrapped by leg and landed on an anthill. I broke my fall with the camera, but somehow did not seem to damage it.\u00A0 Overall not much damage, except for about an hour with needle and tweezers picking out cactus needles. View of Salt River from the Apache Trail Apache Trail view, nice Bridge Brittle bush are blooming everywhere Poppys all over too ! Something in Daisy family, should know View of Apache Lake from Apache Trail Interesting Saguaro's along trail Luscious green Cottonwood Trees along creek Ta
 king a break from the brain rattling ride Headings down into Canyon area View in the Canyon Over the bridge then up the narrow ledge above\u00A0 It was worse than it looks here Coming back up from the other side, better on the inside of road Nice camp fire setting along trail In spite of my slip, I got the photo I wanted Another common flower in bloom everywhere Theodore Roosevelt, traveled on the Apache trail to the dedication of the Roosevelt Dam on March 18, 1911 and said the following about the trail in his speech; \"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\". \u00A0(He did have a way with words.) In that vein, I'm now hooked on Tony Hillerman books, who also has a way with words.\u00A0 I am now on my third book this month, might be a record.\u00A0 Twinkles, the original bookwor
 m is very impressed.\u00A0 The books take place in the Navajo and Pima Indian country where we are headed.\u00A0 I'm trying think more like an indian these days We are taking short hops north with the next one on Friday to Payson, Arizona.\u00A0 We plan about 4-5 days there to recharge with a full hookup campsite.\u00A0 Lots to see and do in Payson, it's Zane Grey country. Keep on moving On, Twinkles and Slick","contenttype":"html","created_at":"Sun, 23 Mar 2014 05:10:54 +0000","id":"1e3b2498251ca300e072258d0d14ada8","link":"http:\/\/travelswithtwinkles.blogspot.com\/2014\/03\/roosevelt-dam-and-apache-trail.html","received_at":4743640177664376334,"schema":{"version":3},"subtype":"post","title":"Roosevelt Dam and the Apache Trail","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"March 17","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":1,"themes":["several boat ramps","steep pass","
 post office","license plates","recreational area","developed campgrounds"]},{"name":"Roosevelt Lake","sentiment":19,"confident":1,"label":"Person","evidence":7,"type":"Person","about":1,"themes":["cliff dwellings View","visitors center View","masonry block construction","camp fire setting","endless drop offs","distance View","bridge View","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful","guard rails","pretty side","several boat ramps","steep pass","post office","license plates","recreational area","developed campgrounds","View"]},{"name":"Bath house","sentiment":4,"confident":1,"label":"building","evidence":4,"type":"Place","about":0,"themes":["nice size campsites","potable water","served campsites","picnic tables","shade armadas","fire pits","great boating","fishing area"]},{"name":"Fish Creek","sentiment":-3,"confident":1,"label":"Place","evidence":3,"type":"Place","about":0,"themes":["stiff suspension","scary parts","world c
 lass","minor accident"]},{"name":"Daisy","sentiment":17,"confident":1,"label":"Person","evidence":7,"type":"Person","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful"]},{"name":"Theodore Roosevelt","sentiment":17,"confident":1,"label":"http:\/\/en.wikipedia.org\/wiki\/Theodore_Roosevelt","evidence":7,"type":"Person","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful","third book"]},{"name":"March 18, 1911","sentiment":17,"confident":1,"label":"Date","evidence":4,"type":"Pattern","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","area View","indefinable something","sublimely beautiful"]},{"name":"Alps","sentiment":17,"confident":1,"label":"Place","evidence":4,"type":"Place","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling ride","are
 a View","indefinable something","sublimely beautiful"]},{"name":"Tony Hillerman","sentiment":4,"confident":1,"label":"http:\/\/en.wikipedia.org\/wiki\/Tony_Hillerman","evidence":7,"type":"Person","about":0,"themes":["third book","original bookworm"]},{"name":"Payson, Arizona","sentiment":0,"confident":1,"label":"Place","evidence":2,"type":"Place","about":0,"themes":["full hookup campsite","short hops"]},{"name":"Zane Grey","sentiment":0,"confident":1,"label":"http:\/\/en.wikipedia.org\/wiki\/Zane_Grey","evidence":1,"type":"Person","about":0,"themes":["full hookup campsite"]},{"name":"\"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\"","sentiment":6,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["camp fire setting","narrow ledge","common flower","rattling rid
 e","area View","indefinable something","sublimely beautiful"]}],"sentiment":1},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"\u6807\u51C6\u597D\u9752\u5E74"},"blog":{"link":"http:\/\/blog.sina.com.cn\/itbrick","title":"brick_\u5B66\u4E60\u7B14\u8BB0"},"blogid":"72924259","category":"\u6280\u672F\u5B66\u4E60\u7B14\u8BB0","content":"<p>\napache\u4E0Etomcat\u914D\u5408\u4F7F\u7528\uFF0C\u53EF\u4EE5\u5C06\u4E00\u4E9B\u9759\u6001\u5730\u5740\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u4EE5\u51CF\u5C11tomcat\u7684\u538B\u529B\uFF0C\u4E5F\u5C31\u662F\u8BF4\u6240\u6709\u7684\u8BF7\u6C42\u90FD\u662F\u5148\u7ECF\u8FC780\u7AEF\u53E3apache\uFF0Capache\u901A\u8FC7\u914D\u7F6Ehttpd\u6765\u5206\u53D1\u8BF7\u6C42\u7ED9tomcat\uFF0C\u4E2A\u4EBA\u662F\u8FD9\u6837\u7B80\u5355\u7406\u89E3\u7684\uFF0C\u5982\u679C\u4EC0\u4E48\u7406\u89E3\u9519\u8BEF\u8BF7\u5927\u5BB6\u6307\u6B63\u3002<\/P>\n<p>\n\u6211\u5728\u4E0E\u5404\u4E2A\u5E73\u53F0\u505A\u63A5\u53E3\u7684\u65F6\u5019\u9047\u5230\u4E86\u4E00\u4E2A\u95EE\u9898\uFF0Cservlet\u90E8\u7F72\u5B8C\u6BD5\u786E\u8BA4\u65E0\u8BEF\u4EE5\u540E\uFF0C\u53D1\u73B0\u65E
 0\u6CD5\u8BBF\u95EE\u5230servlet\uFF0C\u67E5\u770Btomcat\u7684access\u65E5\u5FD7\uFF0C\u53D1\u73B0tomcat\u6839\u672C\u5C31\u6CA1\u6709\u63A5\u6536\u5230\u8BF7\u6C42\u6B64servlet\u7684\u8BF7\u6C42\uFF0C\u4E5F\u5C31\u662F\u8BF4\uFF0Capache\u6839\u672C\u5C31\u6CA1\u6709\u5C06\u6B64\u8BF7\u6C42\u5206\u53D1\u7ED9tomcat.\u77E5\u9053\u95EE\u9898\u51FA\u5728\u54EA\u91CC\u5C31\u597D\u529E\u5566\u3002\n\u6253\u5F00apache\u7684\u914D\u7F6E\u6587\u4EF6httpd\uFF0C\u627E\u5230\u4F60\u914D\u7F6Eapache\u7684\u5206\u53D1\uFF0C\u586B\u5165\u201Cjkmount \/<font COLOR=\"#FD2200\">\u9879\u76EE\u76F8\u5BF9\u8DEF\u5F84<\/FONT>\/* <font COLOR=\"#FF0000\">XXX<\/FONT>\u201D\uFF0C\u8FD9\u6837\u5C31\u628A\u6B64\u9879\u76EE\u4E0B\u7684\u6240\u6709\u8BBF\u95EE\u90FD\u4F1A\u53D1\u653E\u7ED9tomcat\u53BB\u5904\u7406\u4E86\uFF0C\u6B64\u65F6\u6D4B\u8BD5servlet\u5DF2\u7ECF\u53EF\u4EE5\u6B63\u5E38\u8BBF\u95EE\u3002\u8FD9\u6837\u663E\u7136\u6709\u70B9\u4E0D\u592A\u5408\u7406\u54AF\uFF0C\u5C31\u5931\u53BB\u4E86\u505A\u8D
 1F\u8F7D\u7684\u610F\u4E49\u3002\u6240\u4EE5\u5177\u4F53\u4E86\u89E3\u4E00\u4E0Bjkmount\u7684\u914D\u7F6E\u5427\u3002\u770B\u4E0B\u9762\uFF1A<\/P>\n<p>\u00A0<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF1A\u90E8\u5206\u9759\u6001\u9875\u9762\u9700\u8981apache\u5904\u7406\uFF0C\u4E0D\u8F6C\u53D1\u7ED9\u540E\u7AEF\u7684tomcat<br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70);
  WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount\n\u00A0<wbr \/>\/* \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###\u9ED8\u8BA4\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u7ED9tomcat\u5904\u7406<br \/>\n<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount<\/SPAN><span>\u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\/*.php \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###php\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.htm \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###htm\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.html\n\u00A0<wbr \/>router<\/SPAN><span>\u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">###html\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomca
 t\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(0,0,0); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<font FACE=\"Verdana\"><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/css\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###css\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/js\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<w
 br \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>###js\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<\/SPAN><br \/>\n<\/FONT><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/>\/image\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###image\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor
 : rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u7B2C\u4E8C\u79CD\u60C5\u5F62\uFF1A\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u5230\u540E\u7AEFtomcat\u4E4B\u540E\uFF0C\u5C06\u4E0D\u540C\u8DEF\u5F84\u5B9A\u4F4D\u7ED9\u4E0D\u540C\u7684tomcat<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoW
 s: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoL
 or: rgb(255,0,0)\">JkMount \/login\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat1<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/shop\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat2<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -web
 kit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/buy\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust:
  auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u6CE8\u610F\uFF0C\u8FD9\u79CD\u60C5\u5F62\u4E0B\uFF0C\u5FC5\u987B\u8981\u6709\u8FD9\u6837\u7684\u5904\u7406\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.list=router,jkstatus,tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spA
 CinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u5982\u679C\u662F\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF0Ctomcat1,tomcat2,tomcat3\u662F\u4E0D\u9700\u8981\u5199\u5728\u4E0A\u9762\u8FD9\u4E2A\u5730\u65B9\u7684<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u800C\u662F\u5199\u5728\u4E0B\u9762\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; W
 HiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.router.balance_workers=tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u5B9E\u9645\u4F7F\u7528\u4E2D\uFF0C\u5E94\u8BE5\u662F\u4E0A\u8FF0\u4E24\u79CD\u60C5\u5F62\u76F8\u7ED3\u5408\u4F7F\u7528\u7684\u8F83\u591A\uFF0C\u5C06\u9759\u6001\u5185\u5BB9\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u7136\u540E\u5C06\u52A8\u6001\u5185\u5BB9\u5206\u5E03\u5230\u4E0D\u540C\u7684\u670D\u52A1\u5668\u4E0A\u3002
 <\/P><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA
 7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:24:03 +0000","domain":"blog.sina.com.cn","guid":"6a902f61d0de9b94802dd8639766aeca","id":"1e3b253ba5e0a380e07202fe08241ac4","lang":"zh-cn","link":"http:\/\/blog.sina.com.cn\/s\/blog_6813a1a70101ujw1.html","parseddate":"Sun, 23 Mar 2014 16:23:06 +0000","postid":"375538de-6d1d-4b89-93ea-7bbc815ea231","title":"apache\u4E0Etomcat\u00A0\u914D\u5408\u4F7F\u7528\uFF0C\u7B80\u5355\u4E86\u89E3\u4E00\u4E0Bjkmount","type":"post"},"interaction":{"author":{"name":"\u6807\u51C6\u597D\u9752\u5E74"},"content":"<p>\napache\u4E0Etomcat\u914D\u5408\u4F7F\u7528\uFF0C\u53EF\u4EE5\u5C06\u4E00\u4E9B\u9759\u6001\u5730\u5740\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u4EE5\u51CF\u5C11tomcat\u7684\u538B\u529B\uFF0C\u4E5F\u5C31\u66
 2F\u8BF4\u6240\u6709\u7684\u8BF7\u6C42\u90FD\u662F\u5148\u7ECF\u8FC780\u7AEF\u53E3apache\uFF0Capache\u901A\u8FC7\u914D\u7F6Ehttpd\u6765\u5206\u53D1\u8BF7\u6C42\u7ED9tomcat\uFF0C\u4E2A\u4EBA\u662F\u8FD9\u6837\u7B80\u5355\u7406\u89E3\u7684\uFF0C\u5982\u679C\u4EC0\u4E48\u7406\u89E3\u9519\u8BEF\u8BF7\u5927\u5BB6\u6307\u6B63\u3002<\/P>\n<p>\n\u6211\u5728\u4E0E\u5404\u4E2A\u5E73\u53F0\u505A\u63A5\u53E3\u7684\u65F6\u5019\u9047\u5230\u4E86\u4E00\u4E2A\u95EE\u9898\uFF0Cservlet\u90E8\u7F72\u5B8C\u6BD5\u786E\u8BA4\u65E0\u8BEF\u4EE5\u540E\uFF0C\u53D1\u73B0\u65E0\u6CD5\u8BBF\u95EE\u5230servlet\uFF0C\u67E5\u770Btomcat\u7684access\u65E5\u5FD7\uFF0C\u53D1\u73B0tomcat\u6839\u672C\u5C31\u6CA1\u6709\u63A5\u6536\u5230\u8BF7\u6C42\u6B64servlet\u7684\u8BF7\u6C42\uFF0C\u4E5F\u5C31\u662F\u8BF4\uFF0Capache\u6839\u672C\u5C31\u6CA1\u6709\u5C06\u6B64\u8BF7\u6C42\u5206\u53D1\u7ED9tomcat.\u77E5\u9053\u95EE\u9898\u51FA\u5728\u54EA\u91CC\u5C31\u597D\u529E\u5566\u3002\n\u6253\u5F00apache\u7684\u914D\u7F6E\u6587\u4E
 F6httpd\uFF0C\u627E\u5230\u4F60\u914D\u7F6Eapache\u7684\u5206\u53D1\uFF0C\u586B\u5165\u201Cjkmount \/<font COLOR=\"#FD2200\">\u9879\u76EE\u76F8\u5BF9\u8DEF\u5F84<\/FONT>\/* <font COLOR=\"#FF0000\">XXX<\/FONT>\u201D\uFF0C\u8FD9\u6837\u5C31\u628A\u6B64\u9879\u76EE\u4E0B\u7684\u6240\u6709\u8BBF\u95EE\u90FD\u4F1A\u53D1\u653E\u7ED9tomcat\u53BB\u5904\u7406\u4E86\uFF0C\u6B64\u65F6\u6D4B\u8BD5servlet\u5DF2\u7ECF\u53EF\u4EE5\u6B63\u5E38\u8BBF\u95EE\u3002\u8FD9\u6837\u663E\u7136\u6709\u70B9\u4E0D\u592A\u5408\u7406\u54AF\uFF0C\u5C31\u5931\u53BB\u4E86\u505A\u8D1F\u8F7D\u7684\u610F\u4E49\u3002\u6240\u4EE5\u5177\u4F53\u4E86\u89E3\u4E00\u4E0Bjkmount\u7684\u914D\u7F6E\u5427\u3002\u770B\u4E0B\u9762\uFF1A<\/P>\n<p>\u00A0<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70)
 ; WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF1A\u90E8\u5206\u9759\u6001\u9875\u9762\u9700\u8981apache\u5904\u7406\uFF0C\u4E0D\u8F6C\u53D1\u7ED9\u540E\u7AEF\u7684tomcat<br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount\n\u00A0<wbr \/>\/* \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###\u9ED8\u8BA4\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u7ED9tomcat\u5904\u7406<br \/>\n<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount<\/SPAN><span>\
 u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\/*.php \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###php\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.htm \u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###htm\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \/*.html\n\u00A0<wbr \/>router<\/SPAN><span>\u00A0<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">###html\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(0,0,0); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width:
  0px\">\n<font FACE=\"Verdana\"><span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/css\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###css\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<br \/>\n\nJKUnmount \u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\/js\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>###js\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat\u5904\u7406<\/SPAN><br \/>\n<\/FONT><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-sp
 ACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JKUnmount\n\u00A0<wbr \/>\/image\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>router\u00A0<wbr \/>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/>###image\u8BF7\u6C42\u4E0D\u4EA4\u7ED9tomcat<\/SPAN><span STYLE=\"CoLor: rgb(255,0,0)\">\u5904\u7406<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px;
  MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u7B2C\u4E8C\u79CD\u60C5\u5F62\uFF1A\u5C06\u6240\u6709\u8BF7\u6C42\u8F6C\u53D1\u5230\u540E\u7AEFtomcat\u4E4B\u540E\uFF0C\u5C06\u4E0D\u540C\u8DEF\u5F84\u5B9A\u4F4D\u7ED9\u4E0D\u540C\u7684tomcat<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \
 /><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>router<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/login\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat1<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDi
 nG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/shop\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat2<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">JkMount \/buy\/*\n\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>\u00A0<wbr \/><span>\u00A0<\/SPAN>tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8
 B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u00A0<wbr \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u6CE8\u610F\uFF0C\u8FD9\u79CD\u60C5\u5F62\u4E0B\uFF0C\u5FC5\u987B\u8981\u6709\u8FD9\u6837\u7684\u5904\u7406\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAn
 s: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.list=router,jkstatus,tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u5982\u679C\u662F\u7B2C\u4E00\u79CD\u60C5\u5F62\uFF0Ctomcat1,tomcat2,tomcat3\u662F\u4E0D\u9700\u8981\u5199\u5728\u4E0A\u9762\u8FD9\u4E2A\u5730\u65B9\u7684<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px;
  pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">\u800C\u662F\u5199\u5728\u4E0B\u9762\uFF1A<\/SPAN><br \/><\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n<span STYLE=\"CoLor: rgb(255,0,0)\">worker.router.balance_workers=tomcat1,tomcat2,tomcat3<\/SPAN><br \/>\n<\/P>\n<p STYLE=\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0
 px; pADDinG-riGHT: 0px; FonT: 14px\/1.5 \u5B8B\u4F53; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\">\n\u5B9E\u9645\u4F7F\u7528\u4E2D\uFF0C\u5E94\u8BE5\u662F\u4E0A\u8FF0\u4E24\u79CD\u60C5\u5F62\u76F8\u7ED3\u5408\u4F7F\u7528\u7684\u8F83\u591A\uFF0C\u5C06\u9759\u6001\u5185\u5BB9\u4EA4\u7ED9apache\u5904\u7406\uFF0C\u7136\u540E\u5C06\u52A8\u6001\u5185\u5BB9\u5206\u5E03\u5230\u4E0D\u540C\u7684\u670D\u52A1\u5668\u4E0A\u3002<\/P><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina
 &bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:24:03 +0000","id":"1e3b253ba5e0a380e07202fe08241ac4","link":"http:\/\/blog.sina.com.cn\/s\/blog_6813a1a70101ujw1.html","schema":{"version":3},"subtype"
 :"post","title":"apache\u4E0Etomcat\u00A0\u914D\u5408\u4F7F\u7528\uFF0C\u7B80\u5355\u4E86\u89E3\u4E00\u4E0Bjkmount","type":"blog"},"language":{"confidence":62,"tag":"zh","tag_extended":"zh-cn"}}
-{"blog":{"author":{"name":"Linux"},"blog":{"link":"http:\/\/www.linuxidc.com\/","title":"Linux\u516C\u793E - Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9"},"blogid":"71099770","content":"Apache Camel 2.13.0 \u53D1\u5E03\u4E86\uFF0C\u53EF\u901A\u8FC7\u8FD9\u91CC \u4E0B\u8F7D \uFF0C\u8BE5\u7248\u672C\u7ECF\u8FC7\u4E86 6 \u4E2A\u6708\u7684\u5F00\u53D1\uFF0C\u5305\u542B\u4E00\u4E9B\u65B0\u7684\u7EC4\u4EF6\u7528\u6765\u96C6\u6210 Splunk\u3001Hadoop 2\u3001Infinispan\u3001JGroups \u7B49\u3002\u8BE6\u60C5\u8BF7\u770B release notes\nApache Camel \u662F\u4E00\u4E2A\u975E\u5E38\u5F3A\u5927\u7684\u57FA\u4E8E\u89C4\u5219\u7684\u8DEF\u7531\u4EE5\u53CA\u5A92\u4ECB\u5F15\u64CE\uFF0C\u8BE5\u5F15\u64CE\u63D0\u4F9B\u4E86\u4E00\u4E2A\u57FA\u4E8EPOJO\u7684 \u4F01\u4E1A\u5E94\u7528\u6A21\u5F0F(Enterprise Integration Patterns)\u7684\u5B9E\u73B0\uFF0C\u4F60\u53EF\u4EE5\u91C7\u7528\u5176\u5F02\u5E38\u5F3A\u5927\u4E14\u5341\u5206\u6613\u7528\u7684API (\u53EF\u4EE5\u8BF4\u662F\u4E00\u79CDJava\u7684\u9886\u57DF\
 u5B9A\u4E49\u8BED\u8A00 Domain Specific Language)\u6765\u914D\u7F6E\u5176\u8DEF\u7531\u6216\u8005\u4E2D\u4ECB\u7684\u89C4\u5219\u3002 \u901A\u8FC7\u8FD9\u79CD\u9886\u57DF\u5B9A\u4E49\u8BED\u8A00\uFF0C\u4F60\u53EF\u4EE5\u5728\u4F60\u7684IDE\u4E2D\u7528\u7B80\u5355\u7684Java Code\u5C31\u53EF\u4EE5\u5199\u51FA\u4E00\u4E2A\u7C7B\u578B\u5B89\u5168\u5E76\u5177\u6709\u4E00\u5B9A\u667A\u80FD\u7684\u89C4\u5219\u63CF\u8FF0\u6587\u4EF6\u3002\u8FD9\u4E0E\u90A3\u79CD\u590D\u6742\u7684XML\u914D\u7F6E\u76F8\u6BD4\u6781\u5927\u7B80\u5316\u4E86\u89C4\u5219\u5B9A\u4E49\u5F00\u53D1\u3002 \u5F53\u7136Apache Camel\u4E5F\u63D0\u4F9B\u4E86\u4E00\u4E2A\u5BF9Spring \u914D\u7F6E\u6587\u4EF6\u7684\u652F\u6301\u3002\nApache Camel \u7684\u8BE6\u7EC6\u4ECB\u7ECD\uFF1A\u8BF7\u70B9\u8FD9\u91CC\nApache Camel \u7684\u4E0B\u8F7D\u5730\u5740\uFF1A\u8BF7\u70B9\u8FD9\u91CC\n\u76F8\u5173\u9605\u8BFB\uFF1A\nApache Camel\u6846\u67B6\u96C6\u6210Spring http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm\nApache Camel\u6846\
 u67B6\u5165\u95E8\u793A\u4F8B http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm\nApache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54000.htm\nApache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:41:14 +0000","domain":"www.linuxidc.com","guid":"7a1732fd1f06963ea78e6e00626f5bdc","id":"1e3b25620e42a100e0726b93894e2256","lang":"zh-cn","link":"http:\/\/www.linuxidc.com\/Linux\/2014-03\/98702.htm","links":["http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54000.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm"],"parseddate":"Sun, 23 Mar 2014 06:45:16 +0000","postid":"2e863b15-7146-4143-905c-981eb64c6931","title":"Apache Camel 2.13.0 \u53D1\u5E03\uFF0C\u89C4\u5219\u5F15\u64CE","type":"post"},"interaction":{"author":{"name":"Lin
 ux"},"content":"Apache Camel 2.13.0 \u53D1\u5E03\u4E86\uFF0C\u53EF\u901A\u8FC7\u8FD9\u91CC \u4E0B\u8F7D \uFF0C\u8BE5\u7248\u672C\u7ECF\u8FC7\u4E86 6 \u4E2A\u6708\u7684\u5F00\u53D1\uFF0C\u5305\u542B\u4E00\u4E9B\u65B0\u7684\u7EC4\u4EF6\u7528\u6765\u96C6\u6210 Splunk\u3001Hadoop 2\u3001Infinispan\u3001JGroups \u7B49\u3002\u8BE6\u60C5\u8BF7\u770B release notes\nApache Camel \u662F\u4E00\u4E2A\u975E\u5E38\u5F3A\u5927\u7684\u57FA\u4E8E\u89C4\u5219\u7684\u8DEF\u7531\u4EE5\u53CA\u5A92\u4ECB\u5F15\u64CE\uFF0C\u8BE5\u5F15\u64CE\u63D0\u4F9B\u4E86\u4E00\u4E2A\u57FA\u4E8EPOJO\u7684 \u4F01\u4E1A\u5E94\u7528\u6A21\u5F0F(Enterprise Integration Patterns)\u7684\u5B9E\u73B0\uFF0C\u4F60\u53EF\u4EE5\u91C7\u7528\u5176\u5F02\u5E38\u5F3A\u5927\u4E14\u5341\u5206\u6613\u7528\u7684API (\u53EF\u4EE5\u8BF4\u662F\u4E00\u79CDJava\u7684\u9886\u57DF\u5B9A\u4E49\u8BED\u8A00 Domain Specific Language)\u6765\u914D\u7F6E\u5176\u8DEF\u7531\u6216\u8005\u4E2D\u4ECB\u7684\u89C4\u5219\u3002 \u901A\u8FC7\u8FD9\u79CD\u9886\u57
 DF\u5B9A\u4E49\u8BED\u8A00\uFF0C\u4F60\u53EF\u4EE5\u5728\u4F60\u7684IDE\u4E2D\u7528\u7B80\u5355\u7684Java Code\u5C31\u53EF\u4EE5\u5199\u51FA\u4E00\u4E2A\u7C7B\u578B\u5B89\u5168\u5E76\u5177\u6709\u4E00\u5B9A\u667A\u80FD\u7684\u89C4\u5219\u63CF\u8FF0\u6587\u4EF6\u3002\u8FD9\u4E0E\u90A3\u79CD\u590D\u6742\u7684XML\u914D\u7F6E\u76F8\u6BD4\u6781\u5927\u7B80\u5316\u4E86\u89C4\u5219\u5B9A\u4E49\u5F00\u53D1\u3002 \u5F53\u7136Apache Camel\u4E5F\u63D0\u4F9B\u4E86\u4E00\u4E2A\u5BF9Spring \u914D\u7F6E\u6587\u4EF6\u7684\u652F\u6301\u3002\nApache Camel \u7684\u8BE6\u7EC6\u4ECB\u7ECD\uFF1A\u8BF7\u70B9\u8FD9\u91CC\nApache Camel \u7684\u4E0B\u8F7D\u5730\u5740\uFF1A\u8BF7\u70B9\u8FD9\u91CC\n\u76F8\u5173\u9605\u8BFB\uFF1A\nApache Camel\u6846\u67B6\u96C6\u6210Spring http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm\nApache Camel\u6846\u67B6\u5165\u95E8\u793A\u4F8B http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm\nApache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236 http:\/\/www.linuxidc.com\/Li
 nux\/2012-02\/54000.htm\nApache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm","contenttype":"html","created_at":"Sun, 23 Mar 2014 06:41:14 +0000","id":"1e3b25620e42a100e0726b93894e2256","link":"http:\/\/www.linuxidc.com\/Linux\/2014-03\/98702.htm","received_at":4743640202461956381,"schema":{"version":3},"subtype":"post","title":"Apache Camel 2.13.0 \u53D1\u5E03\uFF0C\u89C4\u5219\u5F15\u64CE","type":"blog"},"language":{"confidence":66,"tag":"zh","tag_extended":"zh-cn"},"links":{"code":[200,200,200,200],"created_at":["Sun, 23 Mar 2014 06:59:54 +0000","Sun, 23 Mar 2014 06:59:55 +0000","Sun, 23 Mar 2014 06:59:57 +0000","Sun, 23 Mar 2014 06:59:59 +0000"],"meta":{"charset":["UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text\/html","text\/html","text\/html","text\/html"],"description":["Apache Camel\u63D0\u4F9B\u4E86\u548CSpring\u7684\u96C6\u6210,\u901A\u8FC7Spring\u5BB9\u5668(ApplicationContext)\u6765\u7BA1\u7406Camel\u7684CamelContext,\u
 8FD9\u6837\u7684\u8BDD,\u5C31\u4E0D\u9700\u8981\u5199\u4EE3\u7801\u6765\u63A7","Apache Camel\u662FApache\u57FA\u91D1\u4F1A\u4E0B\u7684\u4E00\u4E2A\u5F00\u6E90\u9879\u76EE,\u5B83\u662F\u4E00\u4E2A\u57FA\u4E8E\u89C4\u5219\u8DEF\u7531\u548C\u5904\u7406\u7684\u5F15\u64CE\uFF0C\u63D0\u4F9B\u4F01\u4E1A\u96C6\u6210\u6A21\u5F0F\u7684Java\u5BF9\u8C61\u7684\u5B9E\u73B0\uFF0C\u901A\u8FC7\u5E94\u7528\u7A0B","\u672C\u6587\u7B80\u5355\u4ECB\u7ECD\u4E00\u4E0BApache Camel\u5982\u4F55\u5BF9route\u8FDB\u884C\u4E8B\u52A1\u63A7\u5236,\u9996\u5148\u4ECB\u7ECD\u6574\u4E2Aroute\u53EA\u6D89\u53CA\u5230\u4E00\u4E2A\u4E8B\u52A1\u53C2\u4E0E\u8005\u7684\u60C5\u51B5,\u7136\u540E\u518D\u4ECB\u7ECDroute\u4E2D\u6D89\u53CA\u5230","\u7EE7\u4E0A\u6B21Camel\u5982\u4F55\u5728\u505A\u9879\u76EE\u96C6\u6210\u7C7B\u578B\u7684\u9879\u76EE\uFF08\u89C1 http:\/\/www.linuxidc.com\/Linux\/2012-02\/54002.htm \uFF09\u4E2D\u7528\u4E8E\u4ECEFTP\u53D6\u6587\u4EF6\u548C\u4F20\u6587\u4EF6\u4E4B\u540E"],"keywords":[["Apache","Spring","
 Apache Camel","Camel","Apache Camel\u6846\u67B6\u96C6\u6210Spring","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"],["Apache","Apache Camel","Camel","Apache Camel\u6846\u67B6\u5165\u95E8\u793A\u4F8B","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"],["Apache","Apache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"],["Apache","Apache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531","\u670D\u52A1\u5668","Linux\u670D\u52A1\u5668","Apache","Hadoop","\u96C6\u7FA4","\u5206\u5E03\u5F0F","Nginx","Tomcat","\u5206\u5E03\u5F0F\u7CFB\u7EDF"]],"lang":["zh","zh","zh","zh"]},"normalized_url":["http:\/\/linuxidc.com\/Linux\/2012-02\/53564.htm","http:\/\/lin
 uxidc.com\/Linux\/2012-02\/53565.htm","http:\/\/linuxidc.com\/Linux\/2012-02\/54000.htm","http:\/\/linuxidc.com\/Linux\/2012-02\/54001.htm"],"retweet_count":[0,0,0,0],"title":["Apache Camel\u6846\u67B6\u96C6\u6210Spring_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9","Apache Camel\u6846\u67B6\u5165\u95E8\u793A\u4F8B_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9","Apache Camel\u6846\u67B6\u4E4B\u4E8B\u52A1\u63A7\u5236_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9","Apache Camel\u6846\u67B6\u4E4BJMS\u8DEF\u7531_\u670D\u52A1\u5668\u5E94\u7528_Linux\u516C\u793E-Linux\u7CFB\u7EDF\u95E8\u6237\u7F51\u7AD9"],"url":["http:\/\/www.linuxidc.com\/Linux\/2012-02\/53564.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/53565.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54000.htm","http:\/\/www.linuxidc.com\/Linux\/2012-02\/54001.htm"]}}
-{"blog":{"atomversion":"1.0","author":{"link":"http:\/\/unix.stackexchange.com\/users\/63364","name":"user3422709"},"blog":{"link":"http:\/\/unix.stackexchange.com\/questions","title":"Recent Questions - Unix & Linux Stack Exchange"},"blogid":"70930296","content":"<p>I want to upgrade apache version from 2.2.15 to 2.4.4 in centos. is there need to download update file to a folder and update apache.is there any posibility? help me<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:12:01 +0000","domain":"unix.stackexchange.com","guid":"f63feb8825334de16e1dcd6def5759ad","id":"1e3b27393172ae80e072be788cb08176","lang":"en","link":"http:\/\/unix.stackexchange.com\/questions\/121001\/how-to-upgrade-apache-2-2-15-to-2-4-4-in-centos","parseddate":"Sun, 23 Mar 2014 10:49:20 +0000","postid":"488789d6-6eee-4247-b3d8-0cc8e11811f5","title":"how to upgrade apache 2.2.15 to 2.4.4 in centos","type":"post","updated":"Sun, 23 Mar 2014 10:12:01 +0000"},"interaction":{"author":{"link":"http:\/
 \/unix.stackexchange.com\/users\/63364","name":"user3422709"},"content":"<p>I want to upgrade apache version from 2.2.15 to 2.4.4 in centos. is there need to download update file to a folder and update apache.is there any posibility? help me<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:12:01 +0000","id":"1e3b27393172ae80e072be788cb08176","link":"http:\/\/unix.stackexchange.com\/questions\/121001\/how-to-upgrade-apache-2-2-15-to-2-4-4-in-centos","received_at":4743640262723317531,"schema":{"version":3},"subtype":"post","title":"how to upgrade apache 2.2.15 to 2.4.4 in centos","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":6},"title":{"sentiment":6}}}
-{"blog":{"blog":{"link":"http:\/\/oto.detik.com\/","title":"oto.detik"},"blogid":"58741660","content":"<img src=\"http:\/\/images.detik.com\/content\/2014\/03\/23\/647\/covertvs.jpg\" align=\"left\" hspace=\"7\" width=\"100\" \/>4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu.<img width='1' height='1' src='http:\/\/detik.feedsportal.com\/c\/33613\/f\/656103\/s\/38817599\/mf.gif' border='0'\/><br clear='all'\/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href=\"http:\/\/share.feedsportal.com\/share\/twitter\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/twitter.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsport
 al.com\/share\/facebook\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/facebook.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/linkedin\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/linkedin.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/gplus\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/googleplus.png\" border=\"0\" \/><\/a>\u00A0
 <a href=\"http:\/\/share.feedsportal.com\/share\/email\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/email.png\" border=\"0\" \/><\/a><\/td><td valign='middle'><\/td><\/tr><\/table><\/div><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f
 \/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.img\" border=\"0\"\/><\/a><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.htm\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.img\" border=\"0\"\/><\/a><img width=\"1\" height=\"1\" src=\"http:\/\/pi.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2t.img\" border=\"0\"\/>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:20:27 +0000","domain":"oto.detik.com","enclosure":{"length":"10240","type":"image\/jpg","url":"http:\/\/detik.feedsportal.com\/c\/33613\/f\/656103\/e\/1\/s\/38817599\/l\/0Limages0Bdetik0N0Ccontent0C20A140C0A30C230C6470Ccovertvs0Bjpg\/covertvs.jpg"},"guid":"93b3473955afddad63f7b3114649900e","id":"1e3b274c0b0aa780e072d88bd3090e90","lang":"ms","link":"
 http:\/\/oto.detik.com\/readfoto\/2014\/03\/23\/172027\/2534055\/647\/1\/tvs-apache-taklukkan-ganasnya-kalimantan","parseddate":"Sun, 23 Mar 2014 12:50:31 +0000","postid":"2b77192b-e580-48d9-b13c-1b39e02c6db1","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"content":"<img src=\"http:\/\/images.detik.com\/content\/2014\/03\/23\/647\/covertvs.jpg\" align=\"left\" hspace=\"7\" width=\"100\" \/>4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu.<img width='1' height='1' src='http:\/\/detik.feedsportal.com\/c\/33613\/f\/656103\/s\/38817599\/mf.gif' border='0'\/><br clear='all'\/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href=\"http:\/\/share.feedsportal.com\/share\/twitter\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-
 kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/twitter.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/facebook\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/facebook.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/linkedin\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/linkedin.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/gplus\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2
 Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/googleplus.png\" border=\"0\" \/><\/a>\u00A0<a href=\"http:\/\/share.feedsportal.com\/share\/email\/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\" target=\"_blank\"><img src=\"http:\/\/res3.feedsportal.com\/social\/email.png\" border=\"0\" \/><\/a><\/td><td valign='middle'><\/td><\/tr><\/table><\/div><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/1\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.htm\" rel=\"nofollow\"><im
 g src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/2\/rc.img\" border=\"0\"\/><\/a><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.htm\" rel=\"nofollow\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/rc\/3\/rc.img\" border=\"0\"\/><\/a><br\/><br\/><a href=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.htm\"><img src=\"http:\/\/da.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2.img\" border=\"0\"\/><\/a><img width=\"1\" height=\"1\" src=\"http:\/\/pi.feedsportal.com\/r\/191801893726\/u\/0\/f\/656103\/c\/33613\/s\/38817599\/a2t.img\" border=\"0\"\/>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:20:27 +0000","id":"1e3b274c0b0aa780e072d88bd3090e90","link":"http:\/\/oto.detik.com\/readfoto\/2014\/03\/23\/172027\/2534055\/647\/1\/tvs-apache-taklukk
 an-ganasnya-kalimantan","schema":{"version":3},"subtype":"post","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
-{"blog":{"atomversion":"1.0","author":{"name":"basyura"},"blog":{"link":"http:\/\/d.hatena.ne.jp\/basyura\/","title":"basyura's blog"},"blogid":"55821125","content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> 
 \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","domain":"d.hatena.ne.jp","guid":"1e2c1f54e6c6548c4381b6e9a6361cea","id":"1e3b279c65cbac00e0729be4b09bfd5c","lang":"ja","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","links":["http:\/\/localhost:3000","http:\/\/localhost\/sample","http:\/\/localhost:3000\/sample"],"parseddate":"Sun, 23 Mar 2014 15:32:03 +0000","postid":"1426a00d-f33f-4144-b396-5160bda65a31","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"post","updated":"Sun, 23 Mar 2014 10:56:24 +0000"},"interaction":
 {"author":{"name":"basyura"},"content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304
 B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","id":"1e3b279c65cbac00e0729be4b09bfd5c","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","schema":{"version":3},"subtype":"post","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"blog"},"language":{"confidence":49,"tag":"ja","tag_extended":"ja"},"links":{"code":[404],"created_at":["Sun, 23 Mar 2014 15:41:17 +0000"],"hops":[["http:\/\/localhost\/sample"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["http:\/\/localhost\/sample"]}}
-{"blog":{"author":{"name":"Vincenzo Avallone"},"blog":{"link":"http:\/\/www.maidirecalcio.com\/","title":"Mai Dire Calcio"},"blogid":"71333736","content":"<p>Il messaggio recapitato al commissario tecnico della Nazionale argentina \u00E8 forte e chiaro: gli argentini vogliono Carlitos Tevez ai Mondiali. Nel Barrio di Ciudadela infatti, periferia di Buenos Aires non lontano dal quartiere di origine dell\u2019 Apache, un muro \u00E8 stato colorato di albiceleste, come fosse la schiena di un giocatore immaginario che veste la [\u2026]<\/p><p>The post <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\">Tevez, Fuerte Apache si mobilita per portarlo al Mondiale<\/a> appeared first on <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\">Mai Dire Calcio<\/a>.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:15:06 +0000","domain":"www.maidirecalcio.com","guid":"e9bc0c5da4bbccea8531762935b3d
 759","id":"1e3b27c63205a900e072218749574b36","lang":"it","link":"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html","parseddate":"Sun, 23 Mar 2014 11:53:33 +0000","postid":"8c831eeb-c75b-4c15-9bd8-7ffe0c2d1aaa","title":"Tevez, Fuerte Apache si mobilita per portarlo al Mondiale","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"Vincenzo Avallone"},"content":"<p>Il messaggio recapitato al commissario tecnico della Nazionale argentina \u00E8 forte e chiaro: gli argentini vogliono Carlitos Tevez ai Mondiali. Nel Barrio di Ciudadela infatti, periferia di Buenos Aires non lontano dal quartiere di origine dell\u2019 Apache, un muro \u00E8 stato colorato di albiceleste, come fosse la schiena di un giocatore immaginario che veste la [\u2026]<\/p><p>The post <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\">Tevez, Fuerte Apac
 he si mobilita per portarlo al Mondiale<\/a> appeared first on <a\nrel=\"nofollow\" href=\"http:\/\/www.maidirecalcio.com\">Mai Dire Calcio<\/a>.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:15:06 +0000","id":"1e3b27c63205a900e072218749574b36","link":"http:\/\/www.maidirecalcio.com\/2014\/03\/23\/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html","schema":{"version":3},"subtype":"post","title":"Tevez, Fuerte Apache si mobilita per portarlo al Mondiale","type":"blog"},"language":{"confidence":92,"tag":"it","tag_extended":"it"}}
-{"blog":{"author":{"name":"Jose Manuel Ib\u00E1\u00F1ez Argos"},"blog":{"link":"http:\/\/informaticayseguridad.blogspot.com\/","title":"Blog de Inform\u00E1tica y Seguridad en Internet"},"blogid":"54303941","content":"Se han anunciado dos vulnerabilidades en el servidor web Apache que\u00A0 podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. \u00A0Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Detalle e Impacto de las las vulnerabilidades \u00A0El primero de los problemas (con CVE-2014-0098) reside en mod_log_config al tratar cookies truncadas. Por otra parte, un problema (con CVE-2013-6438) en el tratamiento de XML en mod_dav al calcular de forma incorrecta el final de una cadena al eliminar espacios iniciales y situar un car\u00E1ct
 er NUL fuera del b\u00FAfer.\u00A0 Recomendaci\u00F3n\nApache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n\nApache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html Changes with Apache 2.4.9 http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9 Fuente: Hispasec","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:18:25 +0000","domain":"informaticayseguridad.blogspot.com","guid":"588afa42e7391ab3061d8032a1be10a6","id":"1e3b27cd9bd5a680e072f29ae72e07b6","lang":"es","link":"http:\/\/informaticayseguridad.blogspot.com\/2014\/03\/servidor-web-dos-vulnerabilidades-en-el.html","links":["http:\/\/httpd.apache.org\/download.cgi","http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9"],"parseddate":"Sun, 23 Mar 2014 11:39:50 +0000","postid":"cad3d44a-c491-42d8-8a72-3aa6e6d2c
 1e1","title":"SERVIDOR WEB.  Dos vulnerabilidades en el Apache","type":"post"},"demographic":{"gender":"mostly_male"},"interaction":{"author":{"name":"Jose Manuel Ib\u00E1\u00F1ez Argos"},"content":"Se han anunciado dos vulnerabilidades en el servidor web Apache que\u00A0 podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. \u00A0Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Detalle e Impacto de las las vulnerabilidades \u00A0El primero de los problemas (con CVE-2014-0098) reside en mod_log_config al tratar cookies truncadas. Por otra parte, un problema (con CVE-2013-6438) en el tratamiento de XML en mod_dav al calcular de forma incorrecta el final de una cadena al eliminar espacios iniciales y situar un car\u00E1cter NUL fuera del b\
 u00FAfer.\u00A0 Recomendaci\u00F3n\nApache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n\nApache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html Changes with Apache 2.4.9 http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9 Fuente: Hispasec","contenttype":"html","created_at":"Sun, 23 Mar 2014 11:18:25 +0000","id":"1e3b27cd9bd5a680e072f29ae72e07b6","link":"http:\/\/informaticayseguridad.blogspot.com\/2014\/03\/servidor-web-dos-vulnerabilidades-en-el.html","received_at":4743640275696469253,"schema":{"version":3},"subtype":"post","title":"SERVIDOR WEB.  Dos vulnerabilidades en el Apache","type":"blog"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"links":{"code":[200,200,200],"created_at":["Sat, 22 Mar 2014 23:19:50 +0000","Sun, 23 Mar 2014 11:51:11 +0000","Sun, 23 Mar 2014 11:51:12 +0000"],"meta":{"charset":["UTF
 -8","UTF-8",""],"content_type":["text\/html","text\/html",""],"lang":["unknown","unknown",""]},"normalized_url":["http:\/\/httpd.apache.org\/download.cgi","http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9"],"retweet_count":[0,0,0],"title":["Download - The Apache HTTP Server Project","httpd 2.4 vulnerabilities - The Apache HTTP Server Project","null"],"url":["http:\/\/httpd.apache.org\/download.cgi","http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","http:\/\/www.apache.org\/dist\/httpd\/CHANGES_2.4.9"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":-7,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["final de una cadena","condiciones de denegaci\u00F3n","incluyendo diversas implementaciones","popular del mundo","infinidad de plataformas","situar un car\u00E1cter","tratamiento de XML","dos vulnerabilidades","servidor web","atacante remoto","sitios web","otr
 a parte","forma incorrecta","espacios iniciales","vulnerabilities http"]},{"name":"Microsoft","sentiment":13,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["condiciones de denegaci\u00F3n","incluyendo diversas implementaciones","popular del mundo","infinidad de plataformas","dos vulnerabilidades","servidor web","atacante remoto","sitios web"]}],"sentiment":-2,"topics":[{"name":"Software e Internet","score":0.63400012254715,"additional":"Se han anunciado dos vulnerabilidades en el servidor web Apache que podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Recomendaci\u00F3n Apache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, qu
 e puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n Apache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","hits":0},{"name":"Tecnolog\u00EDa","score":0.50564223527908,"additional":"Se han anunciado dos vulnerabilidades en el servidor web Apache que podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Recomendaci\u00F3n Apache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n Apache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","hits":0},{"name":"Medios
  de Comunicaci\u00F3n Social","score":0.46225720643997,"additional":"Se han anunciado dos vulnerabilidades en el servidor web Apache que podr\u00EDan permitir a un atacante remoto provocar condiciones de denegaci\u00F3n de servicio. Apache es el servidor web m\u00E1s popular del mundo, usado por m\u00E1s del 52% de los sitios web, disponible en c\u00F3digo fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS\/2 y Novell NetWare. Recomendaci\u00F3n Apache ha publicado la versi\u00F3n 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http:\/\/httpd.apache.org\/download.cgi M\u00E1s informaci\u00F3n Apache httpd 2.4 vulnerabilities http:\/\/httpd.apache.org\/security\/vulnerabilities_24.html","hits":0}]},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"FunPonsel"},"blog":{"link":"http:\/\/funponsel.org\/","title":"PonSeL Indonesia."},"blogid":"71176595","content":"TVS Apache Taklukkan Ganasnya Kalimantan Pool \u2013 detikOto Minggu, 23\/03\/2014 17:20 WIB \u00A0- 4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu melintasi rute khas wilayah Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kal-Sel. Istimewa\/TVS. Komentar (0 Komentar) Urutkan berdasar : Share|","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:03:00 +0000","domain":"funponsel.org","guid":"9cc4cab8a6376d8cafcbeaa80f0d3282","id":"1e3b28b75ee5aa00e072a0c0d1521cc2","lang":"ms","link":"http:\/\/funponsel.org\/33178\/tvs-apache-taklukkan-ganasnya-kalimantan.html","parseddate":"Sun, 23 Mar 2014 13
 :07:27 +0000","postid":"648d8f04-5dd8-4cfc-b400-e53f10e862c3","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"author":{"name":"FunPonsel"},"content":"TVS Apache Taklukkan Ganasnya Kalimantan Pool \u2013 detikOto Minggu, 23\/03\/2014 17:20 WIB \u00A0- 4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu melintasi rute khas wilayah Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kal-Sel. Istimewa\/TVS. Komentar (0 Komentar) Urutkan berdasar : Share|","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:03:00 +0000","id":"1e3b28b75ee5aa00e072a0c0d1521cc2","link":"http:\/\/funponsel.org\/33178\/tvs-apache-taklukkan-ganasnya-kalimantan.html","received_at":4743640296833951570,"schema":{"version":3},"subtype":"p
 ost","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
-{"blog":{"author":{"name":"Archive"},"blog":{"link":"http:\/\/www.devheads.net\/","title":"DevHeads.net - Developer Notes"},"blogid":"56002132","category":"User","content":"<p>Here is the example of what I am trying to do.<\/p>\n<p>JBoss Webserver Private IP : 192.168.10.100<\/p>\n<p>JBoss Webserver Public IP 172.x.x.x<\/p>\n<p>Server connected to Jboss: 192.168.10.101 & 192.168.10.102<\/p>\n<p>If I am on the Jboss machine I can access 192.168.10.101\\abc\\test.html<\/p>\n<p>If I am outside the network its not possible to access URL<br \/>\n192.168.10.101\\abc\\test.html<\/p>\n<p>To solve the problem I have PAC file as a proxy for my browser which<br \/>\nredirect all request for 192.168.10.101 address to apache httpd proxy<br \/>\nserver which sits inside the (192.168.x.x) network.<\/p>\n<p>Upto this point everything works OK.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 14:34:15 +0000","domain":"www.devheads.net","guid":"41571cd1022a2d8c8489c7a5ff5de4db","id":"1e3b298
 35490ad80e072e841574845c2","lang":"en","link":"http:\/\/www.devheads.net\/server\/apache\/user\/apache-httpd-proxy-configuration.htm","parseddate":"Sun, 23 Mar 2014 14:48:42 +0000","postid":"c2729127-a37c-4999-abc0-64b574c1bab5","title":"[users@httpd] apache httpd proxy configuration","type":"post"},"interaction":{"author":{"name":"Archive"},"content":"<p>Here is the example of what I am trying to do.<\/p>\n<p>JBoss Webserver Private IP : 192.168.10.100<\/p>\n<p>JBoss Webserver Public IP 172.x.x.x<\/p>\n<p>Server connected to Jboss: 192.168.10.101 & 192.168.10.102<\/p>\n<p>If I am on the Jboss machine I can access 192.168.10.101\\abc\\test.html<\/p>\n<p>If I am outside the network its not possible to access URL<br \/>\n192.168.10.101\\abc\\test.html<\/p>\n<p>To solve the problem I have PAC file as a proxy for my browser which<br \/>\nredirect all request for 192.168.10.101 address to apache httpd proxy<br \/>\nserver which sits inside the (192.168.x.x) network.<\/p>\n<p>Upto this po
 int everything works OK.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 14:34:15 +0000","id":"1e3b29835490ad80e072e841574845c2","link":"http:\/\/www.devheads.net\/server\/apache\/user\/apache-httpd-proxy-configuration.htm","received_at":4743640321305275164,"schema":{"version":3},"subtype":"post","title":"[users@httpd] apache httpd proxy configuration","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Jboss","sentiment":-4,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["httpd proxy server"]}],"sentiment":0,"topics":[{"name":"Software and Internet","score":0.50918489694595,"additional":"Here is the example of what I am trying to do. Server connected to Jboss: 192.168.10.101 & 192.168.10.102 If I am on the Jboss machine I can access 192.168.10.101\\abc\\test.html If I am outside the network its not possible to access URL 192.168.10.101\\abc\\test.html To solve the problem 
 I have PAC file as a proxy for my browser which redirect all request for 192.168.10.101 address to apache httpd proxy server which sits inside the (192.168.x.x) network.","hits":0}]},"title":{"sentiment":0,"topics":[{"name":"Software and Internet","score":0.50268775224686,"additional":"[users@httpd] apache httpd proxy configuration","hits":0}]}}}
-{"blog":{"author":{"name":"Pablo Villalobos"},"blog":{"link":"http:\/\/cinematerapia.blogspot.com\/","title":"S\u00F3lo Cine"},"blogid":"35825511","content":"Esto viene a ser como Rambo, nadam\u00E1s que con un indio apache acabando con todo el regimiento militar norteamericano.\nY es de las que deben haber visto Tarantino y Rodr\u00EDguez porque la m\u00FAsica cambia abruptamente, y hay cortes justito antes de las malas palabras. S\u00ED, cortes con el ruido que hace una edici\u00F3n con sierra el\u00E9ctrica.\nCorr\u00EDa el a\u00F1o de 1866 y resulta que los soldados de la confederaci\u00F3n ya estaban por irse a sus casas y nada, que Sam Glass acepta quedarse horas extras porque la paga ser\u00E1 buena y quiere comprarse un pedacito de tierra para vivir tranquilamente con Martha, su mujer. Y le escribe una carta explic\u00E1ndole su demora y le env\u00EDa una cajita musical para que se entretenga en lo que \u00E9l llega. Y ac\u00E1 anda el indio ''camisa amarilla'' mate y mate s
 oldados y en cortes vemos a\u00A0Martha cantando una canci\u00F3n mientras o lava la ropa en agua hirviendo afuera en el patio o prepara mantequilla, no entend\u00ED, el caso es que ella, en sus d\u00EDas de ocio y hast\u00EDo, compuso la letra para la m\u00FAsica de la cajita y ahora con ella pasa el tiempo m\u00E1s musicalmente en espera de su esposo.\nSi he sabido que al final durante los cr\u00E9ditos me cantar\u00EDan la canci\u00F3n con la trama no habr\u00EDa puesto tanta atenci\u00F3n. Al final te cuenta toda la historia, y dice:\nBajo el cielo azul que cubre desiertos, valles y monta\u00F1as, hab\u00EDa un indio muy pac\u00EDfico que se cans\u00F3 de ver morir a su pueblo. Por ser como era la tribu mezcaleros lo eligi\u00F3 como jefe y se puso la camisa amarilla. Hasta fum\u00F3 la pipa de la paz con el hombre blanco, quienes lo llamaban ''ella''.\nPero un d\u00EDa alguien rompi\u00F3 la promesa y con todo el dolor de su coraz\u00F3n, este indio tuvo que pelear para protege
 r su tierra y a su gente.\u00A0\nQu\u00E9 bueno que eran de los tranquilos!","contenttype":"html","created_at":"Sun, 23 Mar 2014 15:12:00 +0000","domain":"cinematerapia.blogspot.com","guid":"2617ab4c64af2bd63264a5ed826a3a73","id":"1e3b29d7b54aa000e072875ee6772ff6","lang":"es","link":"http:\/\/cinematerapia.

<TRUNCATED>

[35/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
index 06985dd..6ef8da9 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
@@ -1,33 +1,33 @@
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Centuron\",\"name\":\"Centuron\",\"username\":\"Centuron\"},\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://i.imgur.com/uUq0alG.jpg\\\" ><img src=\\\"http://c.thumbs.redditmedia.com/2qmd7QCt4gxEpyeV.jpg\\\" width='70' height='45' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 05:50:00 +0000\",\"id\":\"1e3b4aa77e23a400e0729dfdaf3bde26\",\"link\":\"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/21e6nl\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache light show\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21e6nl\",\"author\":{\"link\":\"http://www.reddit.com/user/Centuron\",\"name\":\"Centuron\",\"username\":\"Centuron\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://i.imgur.com/uUq0alG.jpg\\\" ><img src=\\\"http://c.thumbs.redditmedia.com/2qmd7QCt4g
 xEpyeV.jpg\\\" width='70' height='45' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 26 Mar 2014 06:19:01 +0000\",\"created_at\":\"Wed, 26 Mar 2014 05:50:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3b4aa77e23a400e0729dfdaf3bde26\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/21e6nl\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/?limit=500\",\"threadid\":\"21e6nl\",\"threadstarter\":1,\"title\":\"Apache light show\",\"topics\":\"Social\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/42aross\",\"name\":\"42aross\",\"username\":\"42aross\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 20:10:00 +0000\",\"id\":\"1e3b9d99a5bdac00e072b3805c850ab2\",\"link\":\"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/21yb2i\",\"received_at\":4743646470850625300,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git (apparently not a joke!)\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yb2i\",\"author\":{\"link\":\"http://www.reddit.com/user/42aross\",\"name\":\"42aross\",\"username\":\"42aross\"},\"boardname\":\"technology\",\"categories\":\"General Talk\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 09 Apr 2014 09:54:04 +0000\",\"created_at\":\"Tue, 01 Apr 2014 20:10:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065aff1f\",\"forumname
 \":\"Reddit: Technology Forum\",\"forumurl\":\"http://www.reddit.com/r/technology/\",\"id\":\"1e3b9d99a5bdac00e072b3805c850ab2\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/21yb2i\",\"siteid\":\"4c065aff1a\",\"thread\":\"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/?limit=500\",\"threadid\":\"21yb2i\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git (apparently not a joke!)\",\"topics\":\"Social\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:22:00 +0000\",\"id\":\"1e3b9ec0b0bfa400e072ae39f85ae494\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghyee0\",\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div c
 lass=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 09:26:06 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:22:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3b9ec0b0bfa400e072ae39f85ae494\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"id\":\"1e3b9ed4ce96aa00e07233e0551b7594\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yq2g\",\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 09:26:06 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\
 "1e3b9ed4ce96aa00e07233e0551b7594\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"id\":\"1e3b9ed4ce96aa00e07286324c45ea64\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"received_at\":4743645155923598298,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yq2g\",\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 05 Apr 2014 17:00:26 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.
 reddit.com/r/programming/\",\"id\":\"1e3b9ed4ce96aa00e07286324c45ea64\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"id\":\"1e3b9ed4ce96aa00e072dd432713a948\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"received_at\":4743644755860130680,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yq2g\",\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 04 Apr 2014 16:21:11 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.
 reddit.com/r/programming/\",\"id\":\"1e3b9ed4ce96aa00e072dd432713a948\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"id\":\"1e3ba1711fc2ac00e07219fb646a291e\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghw4m5\",\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"
 md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 09:26:06 +0000\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba1711fc2ac00e07219fb646a291e\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"id\":\"1e3ba1711fc2ac00e072f9e506a4555a\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghw4m5\",\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"
 md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 04 Apr 2014 16:21:11 +0000\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba1711fc2ac00e072f9e506a4555a\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"id\":\"1e3ba26b76acac00e072261af18a8cec\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"received_at\":4743644755860130261,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghyee0\",\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usert
 ext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 04 Apr 2014 16:21:11 +0000\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba26b76acac00e072261af18a8cec\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"id\":\"1e3ba26b76acac00e07261ab38b9b7b8\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghyee0\",\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div c
 lass=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 05 Apr 2014 17:00:26 +0000\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba26b76acac00e07261ab38b9b7b8\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"content\":\"submitted by <a href=\\\"http://www.reddit.com/user/klimov\\\"> klimov </a> <br/> <a href=\\\"https://news.ycombinator.com/item?id=7532059\\\">[link]</a> <a href=\\\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\\\">[comment]</a>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 05 Apr 2014 12:05:44 +0000\",\"id\":\"1e3bcba9d491ac00e072c774b723bdb8\",\"link\":\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\",\"received_at\":4743645010304135122,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Wave and Google Wave discussion on HN\",\"type\":\"reddit\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"blog\":{\"link\":\"http://programming.reddit.com/\",\"title\":\"programming\"},\"blogid\":\"50213831\",\"content\":\"submitted by <a href=\\\"http://www.reddit.com/user/klimov\\\"> klimov </a> <br/> 
 <a href=\\\"https://news.ycombinator.com/item?id=7532059\\\">[link]</a> <a href=\\\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\\\">[comment]</a>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 05 Apr 2014 12:05:44 +0000\",\"domain\":\"programming.reddit.com\",\"guid\":\"3033dc75c40c532e4f82182611b563e7\",\"id\":\"1e3bcba9d491ac00e072c774b723bdb8\",\"lang\":\"en\",\"link\":\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\",\"parseddate\":\"Sat, 05 Apr 2014 13:10:11 +0000\",\"postid\":\"573ff17d-71f2-4868-bb81-1edb1280cacd\",\"title\":\"Apache Wave and Google Wave discussion on HN\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Alah2\",\"name\":\"Alah2\",\"username\":\"Alah2\"},\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://imgur.com/gallery/VA7mM\\\" ><img src=\\\"http://e.thumbs.redditmedia.com/i91u8uoHDrL2YjaX.jpg\\\" width='70' height='52' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 09:58:00 +0000\",\"id\":\"1e3bf04446cca400e072e562dc4828ea\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/22i6rx\",\"received_at\":4743646143724412679,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22i6rx\",\"author\":{\"link\":\"http://www.reddit.com/user/Alah2\",\"name\":\"Alah2\",\"username\":\"Alah2\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://imgur.com/gallery/
 VA7mM\\\" ><img src=\\\"http://e.thumbs.redditmedia.com/i91u8uoHDrL2YjaX.jpg\\\" width='70' height='52' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 09:58:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf04446cca400e072e562dc4828ea\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/22i6rx\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"threadstarter\":1,\"title\":\"Apache forced landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/djgump35\",\"name\":\"djgump35\",\"username\":\"djgump35\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Give me a cargobob, and I will get it back without a scratch. Really easy mission. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 10:49:00 +0000\",\"id\":\"1e3bf0b6453ba600e072b3afe47c705e\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24qh\",\"received_at\":4743646143724751579,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgn24qh\",\"author\":{\"link\":\"http://www.reddit.com/user/djgump35\",\"name\":\"djgump35\",\"username\":\"djgump35\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\
 ":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Give me a cargobob, and I will get it back without a scratch. Really easy mission. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 10:49:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf0b6453ba600e072b3afe47c705e\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24qh\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"title\":\"Apache forced landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":8},\"title\":{\"entities\":[{\"name\":
 \"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"Scottish field\",\"forced landing\"]}],\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/The_Fiddler1979\",\"name\":\"The_Fiddler1979\",\"username\":\"The_Fiddler1979\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Upvote for comment #7</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 10:50:00 +0000\",\"id\":\"1e3bf0b8816fac00e072d381797a08c6\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24wh\",\"received_at\":4743646143724755354,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgn24wh\",\"author\":{\"link\":\"http://www.reddit.com/user/The_Fiddler1979\",\"name\":\"The_Fiddler1979\",\"username\":\"The_Fiddler1979\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"u
 sertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Upvote for comment #7</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 10:50:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf0b8816fac00e072d381797a08c6\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24wh\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"title\":\"Apache forced landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"
 type\":\"Company\",\"about\":1,\"themes\":[\"Scottish field\",\"forced landing\"]}],\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Jessie_James\",\"name\":\"Jessie_James\",\"username\":\"Jessie_James\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><blockquote>\\n<p>Although if it was me I would just blow it up with some C4 and it should respawn back at base. </p>\\n</blockquote>\\n\\n<p>Upvoted.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 15:35:00 +0000\",\"id\":\"1e3bf33587beaa00e07289f56dad109e\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn7n43\",\"received_at\":4743646143724559899,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgn7n43\",\"author\":{\"link\":\"http://www.reddit.com/user/Jessie_James\",\"name\":\"Jessie_James\",\"userna
 me\":\"Jessie_James\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><blockquote>\\n<p>Although if it was me I would just blow it up with some C4 and it should respawn back at base. </p>\\n</blockquote>\\n\\n<p>Upvoted.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 15:35:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf33587beaa00e07289f56dad109e\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn7n43\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"title\":\"Apache force
 d landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"Scottish field\",\"forced landing\"]}],\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/wzl46\",\"name\":\"wzl46\",\"username\":\"wzl46\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>I think it&#39;s funny how cool it is for the locals when a helicopter performs an emergency landing somewhere, and how much of a pain it is for the aircrews.\\nMy flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles.  We relayed via aircraft radios our position and maintenance issue to our home unit.  We had to sleep in the field overnight with no food, and only warm water to drink. \\nThe next day when our maintenance crew arrived, the local newspaper got word about us, and they showed up with a bunch of local residents.  A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren,
  Missouri.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 16:05:00 +0000\",\"id\":\"1e3bf37895e1ae00e0724e0cd821d134\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn8j65\",\"received_at\":4743646143724760387,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgn8j65\",\"author\":{\"link\":\"http://www.reddit.com/user/wzl46\",\"name\":\"wzl46\",\"username\":\"wzl46\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>I think it&#39;s funny how cool it is for the locals when a helicopter performs an emergency landing somewhere, and how much of a pain it is for the aircrews.\\nMy flight control hydraulics went out on a cross country fli
 ght a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles.  We relayed via aircraft radios our position and maintenance issue to our home unit.  We had to sleep in the field overnight with no food, and only warm water to drink. \\nThe next day when our maintenance crew arrived, the local newspaper got word about us, and they showed up with a bunch of local residents.  A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 16:05:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf37895e1ae00e0724e0cd821d134\",\"language\":\"English\",\"link\":\"http://www.reddit.co
 m/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn8j65\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"title\":\"Apache forced landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Van Buren, Missouri\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":1,\"type\":\"Place\",\"about\":0,\"themes\":[\"ass maintenance issue\",\"local newspaper\",\"local residents\",\"maintenance crew\"]}],\"sentiment\":0,\"topics\":[{\"name\":\"Aviation\",\"score\":0.47797566652298,\"additional\":\"My flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles. We relayed via aircraft radios our position and maintenance issue to o
 ur home unit. A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.\",\"hits\":0}]},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"Scottish field\",\"forced landing\"]}],\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Manuzhai\",\"name\":\"Manuzhai\",\"username\":\"Manuzhai\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Wed, 09 Apr 2014 17:06:00 +0000\",\"id\":\"1e3c009394f8ac00e072753fa3e27f6c\",\"link\":\"http://www.reddit.com/r/programming/comments/22mcl3/apache_couchdb_151_released_security_release/22mcl3\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache CouchDB 1.5.1 Released (security release)\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22mcl3\",\"author\":{\"link\":\"http://www.reddit.com/user/Manuzhai\",\"name\":\"Manuzhai\",\"username\":\"Manuzhai\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 01:58:52 +0000\",\"created_at\":\"Wed, 09 Apr 2014 17:06:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://
 www.reddit.com/r/programming/\",\"id\":\"1e3c009394f8ac00e072753fa3e27f6c\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/22mcl3/apache_couchdb_151_released_security_release/22mcl3\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/22mcl3/apache_couchdb_151_released_security_release/?limit=500\",\"threadid\":\"22mcl3\",\"threadstarter\":1,\"title\":\"Apache CouchDB 1.5.1 Released (security release)\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/gerryhanes\",\"name\":\"gerryhanes\",\"username\":\"gerryhanes\"},\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://en.wikipedia.org/wiki/Apache_(dance)\\\" ><img src=\\\"http://a.thumbs.redditmedia.com/jZ2j2jvyZtsBMON0.jpg\\\" width='70' height='70' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 09 Apr 2014 19:44:00 +0000\",\"id\":\"1e3c01f4bd4ca000e07220cb4a1e9cf6\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/22mrzd\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22mrzd\",\"author\":{\"link\":\"http://www.reddit.com/user/gerryhanes\",\"name\":\"gerryhanes\",\"username\":\"gerryhanes\"},\"boardname\":\"todayilearned\",\"categories\
 ":\"General Talk\",\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://en.wikipedia.org/wiki/Apache_(dance)\\\" ><img src=\\\"http://a.thumbs.redditmedia.com/jZ2j2jvyZtsBMON0.jpg\\\" width='70' height='70' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Wed, 09 Apr 2014 19:44:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c01f4bd4ca000e07220cb4a1e9cf6\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/22mrzd\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"threadstarter\":1,\"title\":\"TIL of the Apache, a popular French dance for couples of the 
 1900s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/gerryhanes\",\"name\":\"gerryhanes\",\"username\":\"gerryhanes\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p><a href=\\\"http://m.youtube.com/watch?v=s48wDOalMLw\\\">Those French are nuts</a></p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 09 Apr 2014 19:48:00 +0000\",\"id\":\"1e3c01fdae1da800e072988cbc223a5c\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgobnk5\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgobnk5\",\"author\":{\"link\":\"http://www.reddit.com/user/gerryhanes\",\"name\":\"gerryhanes\",\"username\":\"gerryhanes\"},\
 "boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p><a href=\\\"http://m.youtube.com/watch?v=s48wDOalMLw\\\">Those French are nuts</a></p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Wed, 09 Apr 2014 19:48:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c01fdae1da800e072988cbc223a5c\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgobnk5\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 190
 0s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/sophanisba\",\"name\":\"sophanisba\",\"username\":\"sophanisba\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Well, that was disturbing. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 09 Apr 2014 20:04:00 +0000\",\"id\":\"1e3c02217163a800e072e6ecad99957c\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoc5zu\",\"received_at\":4743647598518180879,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":96,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgoc5zu\",\"author\":{\"link\":\"http://www.reddit.com/user/sophanisba\",\"name\":\"sophanisba\",\"username\":\"sophanisba\"},\"boardname\":\"toda
 yilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Well, that was disturbing. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Wed, 09 Apr 2014 20:04:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c02217163a800e072e6ecad99957c\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoc5zu\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Soci
 al\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":-4},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/StantonMD\",\"name\":\"StantonMD\",\"username\":\"StantonMD\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Here is a version done in the movie Can Can (1960), it&#39;s funny.</p>\\n\\n<p><a href=\\\"http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html\\\" rel=\\\"nofollow\\\">http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html</a></p>\\n\\n<p>Thanks for mentioning this, I had totally forgotten about it until now</p>\\n\\n<p>Edit: to fix link problem.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 09 Apr 2014 20:07:00 +0000\",\"id\":\"1e3c02282600aa00e0727d489e1ea86e\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoc9p2\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for coupl
 es of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 12 Apr 2014 16:48:18 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"keywords\":[[\"Cole Porter\",\"Frank Sinatra\",\"Maurice Chevalier\",\"Juliet Prowse\",\"Louis Jourdan\",\"Shirley MacLaine\",\"Marcel Dalio\",\"Leon Belasco\",\"Nestor Paiva\",\"John A. Neris\",\"Walter Lang\",\"Hermes Pan\",\"Michael Kidd\",\"William H. Danielsk Dorothy Kingsley\",\"Charles Lederer\",\"Jack Cummings\",\"Eugene Borden\",\"Abe Burrows\",\"Ambrogio Malerba\",\"Saul Chaplin\"]],\"lang\":[\"en-gb\"],\"opengraph\":[{\"site_name\":\"Turner Classic Movies\",\"type\":\"movie\",\"description\":\"The tune is a Cole Porter composition from the original Broadway show, Shirley MacLaine as Paris entertainer Simone, astonishing her guest (Louis Jourdan), an extended, athleti
 c performance choreographed by Hermes Pan, from Can-Can, 1960.\",\"url\":\"http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html\",\"title\":\"Can-Can (1960) -- (Movie Clip) Apache Dance\",\"image\":\"http://i.cdn.turner.com/v5cache/TCM/Images/Dynamic/i193/cancan60_apachedance_vd_120x60_021320130507.jpg\"}]},\"normalized_url\":[\"http://tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html\"],\"retweet_count\":[0],\"title\":[\"Can-Can (1960) -- (Movie Clip) Apache Dance\"],\"url\":[\"http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html\"]},\"reddit\":{\"anchor\":\"cgoc9p2\",\"author\":{\"link\":\"http://www.reddit.com/user/StantonMD\",\"name\":\"StantonMD\",\"username\":\"StantonMD\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Here is a version done in the movie Can Can (1960), it&#39;s funny.</p>\\n\\n<p><a hr
 ef=\\\"http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html\\\" rel=\\\"nofollow\\\">http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html</a></p>\\n\\n<p>Thanks for mentioning this, I had totally forgotten about it until now</p>\\n\\n<p>Edit: to fix link problem.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Wed, 09 Apr 2014 20:07:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c02282600aa00e0727d489e1ea86e\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoc9p2\",\"links\":[\"http://www.tcm.com/mediaroom/video/580545/Can-Can-Movie-Clip-Apache-Dance.html\"],\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearne
 d/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/littlegreycloud\",\"name\":\"littlegreycloud\",\"username\":\"littlegreycloud\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>And <a href=\\\"https://www.youtube.com/watch?v=yTCDVfMz15M\\\" rel=\\\"nofollow\\\">here&#39;s</a> the 2012 version.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 09 Apr 2014 20:57:00 +0000\",\"id\":\"1e3c0297e83ba600e072f8de81c1f326\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoduk3\",\"received_at\":4743647598518180879,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgoduk3\",\"author\":{\"link\":\"http://w
 ww.reddit.com/user/littlegreycloud\",\"name\":\"littlegreycloud\",\"username\":\"littlegreycloud\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>And <a href=\\\"https://www.youtube.com/watch?v=yTCDVfMz15M\\\" rel=\\\"nofollow\\\">here&#39;s</a> the 2012 version.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Wed, 09 Apr 2014 20:57:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c0297e83ba600e072f8de81c1f326\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoduk3\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_po
 pular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/FAPSLOCK\",\"name\":\"FAPSLOCK\",\"username\":\"FAPSLOCK\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>European men are so passionate.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 10 Apr 2014 01:43:00 +0000\",\"id\":\"1e3c05172abeaa00e0726e6b050927a4\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgolnhf\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":96,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgolnhf\",\"author\":{\"link\":\"http://www.reddit.com/user/FAPSLOCK\",\"name\":\"FAPSLOCK\",\"username\":\"FAPSLOCK\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",
 \"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>European men are so passionate.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Thu, 10 Apr 2014 01:43:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c05172abeaa00e0726e6b050927a4\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgolnhf\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"
 content\":{\"sentiment\":9},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/javakah\",\"name\":\"javakah\",\"username\":\"javakah\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Your link is wrong.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 10 Apr 2014 02:40:00 +0000\",\"id\":\"1e3c05969268a000e0725d8fe166e016\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgon9z2\",\"received_at\":4743647598518180879,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgon9z2\",\"author\":{\"link\":\"http://www.reddit.com/user/javakah\",\"name\":\"javakah\",\"username\":\"javakah\"},\"boardname\":\"todayilearned\",\"categories\"
 :\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Your link is wrong.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Thu, 10 Apr 2014 02:40:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c05969268a000e0725d8fe166e016\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgon9z2\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"post\"},\"salience
 \":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/ghostofcookiespast\",\"name\":\"ghostofcookiespast\",\"username\":\"ghostofcookiespast\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>welp... that explains a lot... about the French</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 10 Apr 2014 03:28:00 +0000\",\"id\":\"1e3c0601dc3aa000e07226d7e1b78f12\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoolpb\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute\",\"type\":\"reddit\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgoolpb\",\"author\":{\"link\":\"http://www.reddit.com/user/ghostofcookiespast\",\"name\":\"ghostofcookiespast\",\"username\":\"ghostofcoo
 kiespast\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>welp... that explains a lot... about the French</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 12:36:43 +0000\",\"created_at\":\"Thu, 10 Apr 2014 03:28:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c0601dc3aa000e07226d7e1b78f12\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/cgoolpb\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22mrzd/til_of_the_apache_a_popular_french_dance_for/?limit=500\",\"threadid\":\"22mrzd\",\"title\":\"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based o
 n a pimp beating up a prostitute\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"French dance\"]}],\"sentiment\":6}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/getex250\",\"name\":\"getex250\",\"username\":\"getex250\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Thu, 10 Apr 2014 09:21:00 +0000\",\"id\":\"1e3c0916e072a600e07213ab7a1d5e26\",\"link\":\"http://www.reddit.com/r/programming/comments/22oivc/review_apache_solr_beginners_guide/22oivc\",\"received_at\":4743647283611885896,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Review: Apache Solr Beginner's Guide\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22oivc\",\"author\":{\"link\":\"http://www.reddit.com/user/getex250\",\"name\":\"getex250\",\"username\":\"getex250\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 11 Apr 2014 14:34:06 +0000\",\"created_at\":\"Thu, 10 Apr 2014 09:21:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumu
 rl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3c0916e072a600e07213ab7a1d5e26\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/22oivc/review_apache_solr_beginners_guide/22oivc\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/22oivc/review_apache_solr_beginners_guide/?limit=500\",\"threadid\":\"22oivc\",\"threadstarter\":1,\"title\":\"Review: Apache Solr Beginner's Guide\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/PilotPirx\",\"name\":\"PilotPirx\",\"username\":\"PilotPirx\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>That&#39;s not a review, it tells me nothing about the book (only that you like it).</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 10 Apr 2014 09:27:00 +0000\",\"id\":\"1e3c092449acaa00e0722de4069ff0b4\",\"link\":\"http://www.reddit.com/r/programming/comments/22oivc/review_apache_solr_beginners_guide/cgotztv\",\"received_at\":4743647283611872474,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Review: Apache Solr Beginner's Guide\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgotztv\",\"author\":{\"link\":\"http://www.reddit.com/user/PilotPirx\",\"name\":\"PilotPirx\",\"username\":\"PilotPirx\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"con
 tent\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>That&#39;s not a review, it tells me nothing about the book (only that you like it).</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 11 Apr 2014 14:34:06 +0000\",\"created_at\":\"Thu, 10 Apr 2014 09:27:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3c092449acaa00e0722de4069ff0b4\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/22oivc/review_apache_solr_beginners_guide/cgotztv\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/22oivc/review_apache_solr_beginners_guide/?limit=500\",\"threadid\":\"22oivc\",\"title\":\"Review: Apache Solr Beginner's Guide\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Distant_Texans_Fan\",\"name\":\"Distant_Texans_Fan\",\"username\":\"Distant_Texans_Fan\"},\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://www.nzdf.mil.nz/news/media-releases/2011/nzlav-assists-us-apache-helicopter-in-afghanistan.htm\\\" ><img src=\\\"http://f.thumbs.redditmedia.com/n3GB58Azp8pj_oG5.jpg\\\" width='70' height='46' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"created_at\":\"Fri, 11 Apr 2014 21:37:00 +0000\",\"id\":\"1e3c1c169da2a600e07221a570127bc8\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/22t6n6\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22t6n6\",\"author\":{\"link\
 ":\"http://www.reddit.com/user/Distant_Texans_Fan\",\"name\":\"Distant_Texans_Fan\",\"username\":\"Distant_Texans_Fan\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://www.nzdf.mil.nz/news/media-releases/2011/nzlav-assists-us-apache-helicopter-in-afghanistan.htm\\\" ><img src=\\\"http://f.thumbs.redditmedia.com/n3GB58Azp8pj_oG5.jpg\\\" width='70' height='46' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 02:57:56 +0000\",\"created_at\":\"Fri, 11 Apr 2014 21:37:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c1c169da2a600e07221a570127bc8\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/22t6n6\",\"siteid\":\"4c0662790\",\"thread\":\"
 http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/?limit=500\",\"threadid\":\"22t6n6\",\"threadstarter\":1,\"title\":\"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"topics\":\"Social\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/hanahou\",\"name\":\"hanahou\",\"username\":\"hanahou\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 00:17:00 +0000\",\"id\":\"1e3c1d7c3e5ea600e072676029a3fa8e\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/cgq8ai3\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"type\":\"reddit\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgq8ai3\",\"author\":{\"link\":\"http://www
 .reddit.com/user/hanahou\",\"name\":\"hanahou\",\"username\":\"hanahou\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 02:57:56 +0000\",\"created_at\":\"Sat, 12 Apr 2014 00:17:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c1d7c3e5ea600e072676029a3fa8e\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/cgq8ai3\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_force
 d_to/?limit=500\",\"threadid\":\"22t6n6\",\"title\":\"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"entities\":[{\"name\":\"Afghanistan\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":2,\"type\":\"Place\",\"about\":1,\"themes\":[\"tow bar\"]}],\"sentiment\":0,\"topics\":[{\"name\":\"Law\",\"score\":0.65574711561203,\"additional\":\"Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"hits\":0}]}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/hanahou\",\"name\":\"hanahou\",\"username\":\"hanahou\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 00:17:00 +0000\",\"id\":\"1e3c1d7c3e5ea600e0729cdf729e20d8\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/cgq8ai3\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"type\":\"reddit\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgq8ai3\",\"author\":{\"link\":\"http://www
 .reddit.com/user/hanahou\",\"name\":\"hanahou\",\"username\":\"hanahou\"},\"boardname\":\"todayilearned\",\"categories\":\"General Talk\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 15 Apr 2014 23:23:15 +0000\",\"created_at\":\"Sat, 12 Apr 2014 00:17:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c0662795\",\"forumname\":\"Today I Learned Forum\",\"forumurl\":\"http://www.reddit.com/r/todayilearned/\",\"id\":\"1e3c1d7c3e5ea600e0729cdf729e20d8\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_forced_to/cgq8ai3\",\"siteid\":\"4c0662790\",\"thread\":\"http://www.reddit.com/r/todayilearned/comments/22t6n6/til_in_2011_an_us_apache_helicopter_was_force
 d_to/?limit=500\",\"threadid\":\"22t6n6\",\"title\":\"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"entities\":[{\"name\":\"Afghanistan\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":2,\"type\":\"Place\",\"about\":1,\"themes\":[\"tow bar\"]}],\"sentiment\":0,\"topics\":[{\"name\":\"Law\",\"score\":0.65574711561203,\"additional\":\"Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.\",\"hits\":0}]}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/iamondemand\",\"name\":\"iamondemand\",\"username\":\"iamondemand\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 19:16:00 +0000\",\"id\":\"1e3c276e1b65a800e0722108f0267ef4\",\"link\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/22vej3\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22vej3\",\"author\":{\"link\":\"http://www.reddit.com/user/iamondemand\",\"name\":\"iamondemand\",\"username\":\"iamondemand\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 12 Apr 2014 23:08:59 +0000\",\"created_at\":\"Sat, 12 Apr 2014 19:16:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d
 \",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3c276e1b65a800e0722108f0267ef4\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/22vej3\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/?limit=500\",\"threadid\":\"22vej3\",\"threadstarter\":1,\"title\":\"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/iamondemand\",\"name\":\"iamondemand\",\"username\":\"iamondemand\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 19:16:00 +0000\",\"id\":\"1e3c276e1b65a800e072bcb683e13d52\",\"link\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/22vej3\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22vej3\",\"author\":{\"link\":\"http://www.reddit.com/user/iamondemand\",\"name\":\"iamondemand\",\"username\":\"iamondemand\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sun, 13 Apr 2014 16:47:38 +0000\",\"created_at\":\"Sat, 12 Apr 2014 19:16:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d
 \",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3c276e1b65a800e072bcb683e13d52\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/22vej3\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/?limit=500\",\"threadid\":\"22vej3\",\"threadstarter\":1,\"title\":\"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
-"{\"interaction\":{\"content\":\"submitted by <a href=\\\"http://www.reddit.com/user/iamondemand\\\"> iamondemand </a> <br/> <a href=\\\"https://code.facebook.com/posts/274771932683700/large-scale-graph-partitioning-with-apache-giraph/\\\">[link]</a> <a href=\\\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/\\\">[comment]</a>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 19:16:22 +0000\",\"id\":\"1e3c276eed34a700e072ba255b00a128\",\"link\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/\",\"received_at\":4743647638226100185,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code\",\"type\":\"reddit\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"blog\":{\"link\":\"http://programming.reddit.com/\",\"title\":\"programming\"},\"blo
 gid\":\"50213831\",\"content\":\"submitted by <a href=\\\"http://www.reddit.com/user/iamondemand\\\"> iamondemand </a> <br/> <a href=\\\"https://code.facebook.com/posts/274771932683700/large-scale-graph-partitioning-with-apache-giraph/\\\">[link]</a> <a href=\\\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/\\\">[comment]</a>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 19:16:22 +0000\",\"domain\":\"programming.reddit.com\",\"guid\":\"cbde0f804e3e6d5e369afd85746c4803\",\"id\":\"1e3c276eed34a700e072ba255b00a128\",\"lang\":\"en\",\"link\":\"http://www.reddit.com/r/programming/comments/22vej3/largescale_graph_partitioning_with_apache_giraph/\",\"parseddate\":\"Sat, 12 Apr 2014 19:18:53 +0000\",\"postid\":\"f9b7d3ea-a9f8-4d42-aa38-3f2a7923a90e\",\"title\":\"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\"
 :{\"sentiment\":0}}}"
+{"interaction":{"author":{"link":"http://www.reddit.com/user/Centuron","name":"Centuron","username":"Centuron"},"content":"<a class=\"thumbnail may-blank \" href=\"http://i.imgur.com/uUq0alG.jpg\" ><img src=\"http://c.thumbs.redditmedia.com/2qmd7QCt4gxEpyeV.jpg\" width='70' height='45' alt=\"\"/></a>","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:50:00 +0000","id":"1e3b4aa77e23a400e0729dfdaf3bde26","link":"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/21e6nl","schema":{"version":3},"subtype":"thread","title":"Apache light show","type":"reddit"},"reddit":{"anchor":"21e6nl","author":{"link":"http://www.reddit.com/user/Centuron","name":"Centuron","username":"Centuron"},"boardname":"pics","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http://i.imgur.com/uUq0alG.jpg\" ><img src=\"http://c.thumbs.redditmedia.com/2qmd7QCt4gxEpyeV.jpg\" width='70' height='45' alt=\"\"/></a>","contenttype":"html","countrycode":"US","crawled":"Wed, 26
  Mar 2014 06:19:01 +0000","created_at":"Wed, 26 Mar 2014 05:50:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http://www.reddit.com/r/pics/","id":"1e3b4aa77e23a400e0729dfdaf3bde26","language":"Unknown","link":"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/21e6nl","siteid":"4ad429410","thread":"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/?limit=500","threadid":"21e6nl","threadstarter":1,"title":"Apache light show","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/42aross","name":"42aross","username":"42aross"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 20:10:00 +0000","id":"1e3b9d99a5bdac00e072b3805c850ab2","link":"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/21yb2i","received_at":4743646470850625300,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git (apparently not a joke!)","type":"reddit"},"reddit":{"anchor":"21yb2i","author":{"link":"http://www.reddit.com/user/42aross","name":"42aross","username":"42aross"},"boardname":"technology","categories":"General Talk","content":"","contenttype":"html","countrycode":"US","crawled":"Wed, 09 Apr 2014 09:54:04 +0000","created_at":"Tue, 01 Apr 2014 20:10:00 +0000","domain":"www.reddit.com","forumid":"4c065aff1f","forumname":"Reddit: Technology Forum","forumurl":"http://www.reddit.com/r/technology/","id":"1e3b9d99a5bdac00e072b3805c85
 0ab2","language":"Unknown","link":"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/21yb2i","siteid":"4c065aff1a","thread":"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/?limit=500","threadid":"21yb2i","threadstarter":1,"title":"Apache Subversion to Migrate to Git (apparently not a joke!)","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\n</div>\n</div>","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:22:00 +0000","id":"1e3b9ec0b0bfa400e072ae39f85ae494","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http://www.reddit.com/user/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\n</div>\n</div>","contenttype
 ":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Tue, 01 Apr 2014 22:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3b9ec0b0bfa400e072ae39f85ae494","language":"English","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e07233e0551b7594","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g","schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http://www.reddit.com/user/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3b9ed4ce96aa00e07233e0551b7594","language":"Unknown","link":"http://www.reddit.com/r/programming/comments/21yq2g/apac
 he_subversion_to_migrate_to_git/21yq2g","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e07286324c45ea64","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g","received_at":4743645155923598298,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http://www.reddit.com/user/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sat, 05 Apr 2014 17:00:26 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3b9ed4ce96aa00e07286324c45ea64","language":"Unknown","link":"http://www.reddit.com/
 r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e072dd432713a948","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g","received_at":4743644755860130680,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http://www.reddit.com/user/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3b9ed4ce96aa00e072dd432713a948","language":"Unknown","link":"http://www.reddit.com/
 r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?</p>\n</div>\n</div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","id":"1e3ba1711fc2ac00e07219fb646a291e","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghw4m5","author":{"link":"http://www.reddit.com/user/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?</p>\n</div>\n</div>","contenttype":"html","countrycode":"US","crawled":"Thu
 , 10 Apr 2014 09:26:06 +0000","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3ba1711fc2ac00e07219fb646a291e","language":"Unknown","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?</p>\n</div>\n</div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","id":"1e3ba1711fc2ac00e072f9e506a4555a","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghw4m5","author":{"link":"http://www.reddit.com/user/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?</p>\n</div>\n</div>","contenttype":"html","countrycode":"US","crawled":"Fri
 , 04 Apr 2014 16:21:11 +0000","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3ba1711fc2ac00e072f9e506a4555a","language":"Unknown","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\n</div>\n</div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","id":"1e3ba26b76acac00e072261af18a8cec","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0","received_at":4743644755860130261,"schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http://www.reddit.com/user/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. 
 </p>\n</div>\n</div>","contenttype":"html","countrycode":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3ba26b76acac00e072261af18a8cec","language":"English","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\n</div>\n</div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","id":"1e3ba26b76acac00e07261ab38b9b7b8","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http://www.reddit.com/user/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\n</div>\n</div>","contenttype
 ":"html","countrycode":"US","crawled":"Sat, 05 Apr 2014 17:00:26 +0000","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http://www.reddit.com/r/programming/","id":"1e3ba26b76acac00e07261ab38b9b7b8","language":"English","link":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0","siteid":"4c0659406","thread":"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
+{"interaction":{"content":"submitted by <a href=\"http://www.reddit.com/user/klimov\"> klimov </a> <br/> <a href=\"https://news.ycombinator.com/item?id=7532059\">[link]</a> <a href=\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\">[comment]</a>","contenttype":"html","created_at":"Sat, 05 Apr 2014 12:05:44 +0000","id":"1e3bcba9d491ac00e072c774b723bdb8","link":"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/","received_at":4743645010304135122,"schema":{"version":3},"subtype":"post","title":"Apache Wave and Google Wave discussion on HN","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"blog":{"link":"http://programming.reddit.com/","title":"programming"},"blogid":"50213831","content":"submitted by <a href=\"http://www.reddit.com/user/klimov\"> klimov </a> <br/> <a href=\"https://news.ycombinator.com/item?id=7532059\">[link]</a> <a href=\"http://www
 .reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\">[comment]</a>","contenttype":"html","created_at":"Sat, 05 Apr 2014 12:05:44 +0000","domain":"programming.reddit.com","guid":"3033dc75c40c532e4f82182611b563e7","id":"1e3bcba9d491ac00e072c774b723bdb8","lang":"en","link":"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/","parseddate":"Sat, 05 Apr 2014 13:10:11 +0000","postid":"573ff17d-71f2-4868-bb81-1edb1280cacd","title":"Apache Wave and Google Wave discussion on HN","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http://www.reddit.com/user/Alah2","name":"Alah2","username":"Alah2"},"content":"<a class=\"thumbnail may-blank \" href=\"http://imgur.com/gallery/VA7mM\" ><img src=\"http://e.thumbs.redditmedia.com/i91u8uoHDrL2YjaX.jpg\" width='70' height='52' alt=\"\"/></a>","contenttype":"html","created_at":"Tue, 08 Apr 2014 09:58:00 +0000","id":"1e3bf04446cca400e072e562dc4828ea","link":"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/22i6rx","received_at":4743646143724412679,"schema":{"version":3},"subtype":"thread","title":"Apache forced landing in a Scottish field","type":"reddit"},"reddit":{"anchor":"22i6rx","author":{"link":"http://www.reddit.com/user/Alah2","name":"Alah2","username":"Alah2"},"boardname":"pics","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http://imgur.com/gallery/VA7mM\" ><img src=\"http://e.thumbs.redditmedia.com/i91u8uoHDrL2YjaX.jpg\" width='70' height='52' alt=\"\"/>
 </a>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 09:58:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http://www.reddit.com/r/pics/","id":"1e3bf04446cca400e072e562dc4828ea","language":"Unknown","link":"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/22

<TRUNCATED>

[21/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
index 4826a64..06985dd 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
@@ -1,33 +1,33 @@
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Centuron","name":"Centuron","username":"Centuron"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/i.imgur.com\/uUq0alG.jpg\" ><img src=\"http:\/\/c.thumbs.redditmedia.com\/2qmd7QCt4gxEpyeV.jpg\" width='70' height='45' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:50:00 +0000","id":"1e3b4aa77e23a400e0729dfdaf3bde26","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/21e6nl\/apache_light_show\/21e6nl","schema":{"version":3},"subtype":"thread","title":"Apache light show","type":"reddit"},"reddit":{"anchor":"21e6nl","author":{"link":"http:\/\/www.reddit.com\/user\/Centuron","name":"Centuron","username":"Centuron"},"boardname":"pics","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/i.imgur.com\/uUq0alG.jpg\" ><img src=\"http:\/\/c.thumbs.redditmedia.com\/2qmd7QCt4gxEpyeV.jpg\" width='70' height='45' alt=\"\"\/><\/a>","contenttype":"html","coun
 trycode":"US","crawled":"Wed, 26 Mar 2014 06:19:01 +0000","created_at":"Wed, 26 Mar 2014 05:50:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3b4aa77e23a400e0729dfdaf3bde26","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/21e6nl\/apache_light_show\/21e6nl","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/21e6nl\/apache_light_show\/?limit=500","threadid":"21e6nl","threadstarter":1,"title":"Apache light show","topics":"Social","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/42aross","name":"42aross","username":"42aross"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 20:10:00 +0000","id":"1e3b9d99a5bdac00e072b3805c850ab2","link":"http:\/\/www.reddit.com\/r\/technology\/comments\/21yb2i\/apache_subversion_to_migrate_to_git_apparently\/21yb2i","received_at":4743646470850625300,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git (apparently not a joke!)","type":"reddit"},"reddit":{"anchor":"21yb2i","author":{"link":"http:\/\/www.reddit.com\/user\/42aross","name":"42aross","username":"42aross"},"boardname":"technology","categories":"General Talk","content":"","contenttype":"html","countrycode":"US","crawled":"Wed, 09 Apr 2014 09:54:04 +0000","created_at":"Tue, 01 Apr 2014 20:10:00 +0000","domain":"www.reddit.com","forumid":"4c065aff1f","forumname":"Reddit: Technology Forum","forumurl":"http:\/\/www.reddit.com\/r\/technology\/","id":"1e3b9d9
 9a5bdac00e072b3805c850ab2","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/technology\/comments\/21yb2i\/apache_subversion_to_migrate_to_git_apparently\/21yb2i","siteid":"4c065aff1a","thread":"http:\/\/www.reddit.com\/r\/technology\/comments\/21yb2i\/apache_subversion_to_migrate_to_git_apparently\/?limit=500","threadid":"21yb2i","threadstarter":1,"title":"Apache Subversion to Migrate to Git (apparently not a joke!)","topics":"Social","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:22:00 +0000","id":"1e3b9ec0b0bfa400e072ae39f85ae494","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\
 n<\/div>","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Tue, 01 Apr 2014 22:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ec0b0bfa400e072ae39f85ae494","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e07233e0551b7594","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ed4ce96aa00e07233e0551b7594","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/program
 ming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e07286324c45ea64","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","received_at":4743645155923598298,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sat, 05 Apr 2014 17:00:26 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ed4ce96aa00e07286324c45ea64","language":"Unknown","link":"h
 ttp:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e072dd432713a948","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","received_at":4743644755860130680,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ed4ce96aa00e072dd432713a948","language":"Unknown","link":"h
 ttp:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","id":"1e3ba1711fc2ac00e07219fb646a291e","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghw4m5","author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycod
 e":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba1711fc2ac00e07219fb646a291e","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","id":"1e3ba1711fc2ac00e072f9e506a4555a","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghw4m5","author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycod
 e":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba1711fc2ac00e072f9e506a4555a","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","id":"1e3ba26b76acac00e072261af18a8cec","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","received_at":4743644755860130261,"schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had
  me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba26b76acac00e072261af18a8cec","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","id":"1e3ba26b76acac00e07261ab38b9b7b8","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\
 n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 05 Apr 2014 17:00:26 +0000","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba26b76acac00e07261ab38b9b7b8","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
-{"interaction":{"content":"submitted by <a href=\"http:\/\/www.reddit.com\/user\/klimov\"> klimov <\/a> <br\/> <a href=\"https:\/\/news.ycombinator.com\/item?id=7532059\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 05 Apr 2014 12:05:44 +0000","id":"1e3bcba9d491ac00e072c774b723bdb8","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/","received_at":4743645010304135122,"schema":{"version":3},"subtype":"post","title":"Apache Wave and Google Wave discussion on HN","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"blog":{"link":"http:\/\/programming.reddit.com\/","title":"programming"},"blogid":"50213831","content":"submitted by <a href=\"http:\/\/www.reddit.com\/user\/klimov\"> klimov <\/a> <br\/> <a href=\"https:\/\/news.ycombinator.com\/item?id=75
 32059\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 05 Apr 2014 12:05:44 +0000","domain":"programming.reddit.com","guid":"3033dc75c40c532e4f82182611b563e7","id":"1e3bcba9d491ac00e072c774b723bdb8","lang":"en","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/","parseddate":"Sat, 05 Apr 2014 13:10:11 +0000","postid":"573ff17d-71f2-4868-bb81-1edb1280cacd","title":"Apache Wave and Google Wave discussion on HN","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Alah2","name":"Alah2","username":"Alah2"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/imgur.com\/gallery\/VA7mM\" ><img src=\"http:\/\/e.thumbs.redditmedia.com\/i91u8uoHDrL2YjaX.jpg\" width='70' height='52' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Tue, 08 Apr 2014 09:58:00 +0000","id":"1e3bf04446cca400e072e562dc4828ea","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/22i6rx","received_at":4743646143724412679,"schema":{"version":3},"subtype":"thread","title":"Apache forced landing in a Scottish field","type":"reddit"},"reddit":{"anchor":"22i6rx","author":{"link":"http:\/\/www.reddit.com\/user\/Alah2","name":"Alah2","username":"Alah2"},"boardname":"pics","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/imgur.com\/gallery\/VA7mM\" ><img src=\"http:\/\/e.thumbs.redditmedia.com\/i91u8uoHDrL2YjaX.jpg\" w
 idth='70' height='52' alt=\"\"\/><\/a>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 09:58:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf04446cca400e072e562dc4828ea","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/22i6rx","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","threadstarter":1,"title":"Apache forced landing in a Scottish field","topics":"Social","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/djgump35","name":"djgump35","username":"djgump35"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Give me a cargobob, and I will get it back without a scratch. Really easy mission. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 10:49:00 +0000","id":"1e3bf0b6453ba600e072b3afe47c705e","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24qh","received_at":4743646143724751579,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn24qh","author":{"link":"http:\/\/www.reddit.com\/user\/djgump35","name":"djgump35","username":"djgump35"},"boardname":"pics","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Give me a cargobob
 , and I will get it back without a scratch. Really easy mission. <\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 10:49:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf0b6453ba600e072b3afe47c705e","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24qh","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"sentiment":8},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}
 }}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/The_Fiddler1979","name":"The_Fiddler1979","username":"The_Fiddler1979"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Upvote for comment #7<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 10:50:00 +0000","id":"1e3bf0b8816fac00e072d381797a08c6","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24wh","received_at":4743646143724755354,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn24wh","author":{"link":"http:\/\/www.reddit.com\/user\/The_Fiddler1979","name":"The_Fiddler1979","username":"The_Fiddler1979"},"boardname":"pics","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Upvote for comment #7<\/p>\n<\/div>\n<
 \/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 10:50:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf0b8816fac00e072d381797a08c6","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24wh","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Jessie_James","name":"Jessie_James","username":"Jessie_James"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><blockquote>\n<p>Although if it was me I would just blow it up with some C4 and it should respawn back at base. <\/p>\n<\/blockquote>\n\n<p>Upvoted.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 15:35:00 +0000","id":"1e3bf33587beaa00e07289f56dad109e","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn7n43","received_at":4743646143724559899,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn7n43","author":{"link":"http:\/\/www.reddit.com\/user\/Jessie_James","name":"Jessie_James","username":"Jessie_James"},"boardname":"pics","categories":"General Talk","content":
 "<div class=\"usertext-body may-blank-within\"><div class=\"md\"><blockquote>\n<p>Although if it was me I would just blow it up with some C4 and it should respawn back at base. <\/p>\n<\/blockquote>\n\n<p>Upvoted.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 15:35:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf33587beaa00e07289f56dad109e","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn7n43","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache"
 ,"sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/wzl46","name":"wzl46","username":"wzl46"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>I think it&#39;s funny how cool it is for the locals when a helicopter performs an emergency landing somewhere, and how much of a pain it is for the aircrews.\nMy flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles.  We relayed via aircraft radios our position and maintenance issue to our home unit.  We had to sleep in the field overnight with no food, and only warm water to drink. \nThe next day when our maintenance crew arrived, the local newspaper got word about us, and they showed up with a bunch of local residents.  A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.<\/p>\n<\/div>\n
 <\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 16:05:00 +0000","id":"1e3bf37895e1ae00e0724e0cd821d134","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn8j65","received_at":4743646143724760387,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn8j65","author":{"link":"http:\/\/www.reddit.com\/user\/wzl46","name":"wzl46","username":"wzl46"},"boardname":"pics","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>I think it&#39;s funny how cool it is for the locals when a helicopter performs an emergency landing somewhere, and how much of a pain it is for the aircrews.\nMy flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone
  reception, and no occupied houses within a couple of miles.  We relayed via aircraft radios our position and maintenance issue to our home unit.  We had to sleep in the field overnight with no food, and only warm water to drink. \nThe next day when our maintenance crew arrived, the local newspaper got word about us, and they showed up with a bunch of local residents.  A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 16:05:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf37895e1ae00e0724e0cd821d134","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn8j65","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\
 /r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"entities":[{"name":"Van Buren, Missouri","sentiment":0,"confident":1,"label":"Place","evidence":1,"type":"Place","about":0,"themes":["ass maintenance issue","local newspaper","local residents","maintenance crew"]}],"sentiment":0,"topics":[{"name":"Aviation","score":0.47797566652298,"additional":"My flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles. We relayed via aircraft radios our position and maintenance issue to our home unit. A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.","hits":0}]},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1
 ,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Manuzhai","name":"Manuzhai","username":"Manuzhai"},"content":"","contenttype":"html","created_at":"Wed, 09 Apr 2014 17:06:00 +0000","id":"1e3c009394f8ac00e072753fa3e27f6c","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22mcl3\/apache_couchdb_151_released_security_release\/22mcl3","schema":{"version":3},"subtype":"thread","title":"Apache CouchDB 1.5.1 Released (security release)","type":"reddit"},"reddit":{"anchor":"22mcl3","author":{"link":"http:\/\/www.reddit.com\/user\/Manuzhai","name":"Manuzhai","username":"Manuzhai"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 01:58:52 +0000","created_at":"Wed, 09 Apr 2014 17:06:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3c009394f8ac00e072753fa3e27f6c","language":"Unknown","li
 nk":"http:\/\/www.reddit.com\/r\/programming\/comments\/22mcl3\/apache_couchdb_151_released_security_release\/22mcl3","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22mcl3\/apache_couchdb_151_released_security_release\/?limit=500","threadid":"22mcl3","threadstarter":1,"title":"Apache CouchDB 1.5.1 Released (security release)","topics":"Computers","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/en.wikipedia.org\/wiki\/Apache_(dance)\" ><img src=\"http:\/\/a.thumbs.redditmedia.com\/jZ2j2jvyZtsBMON0.jpg\" width='70' height='70' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Wed, 09 Apr 2014 19:44:00 +0000","id":"1e3c01f4bd4ca000e07220cb4a1e9cf6","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/22mrzd","schema":{"version":3},"subtype":"thread","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"reddit":{"anchor":"22mrzd","author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"boardname":"todayilearned","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"h
 ttp:\/\/en.wikipedia.org\/wiki\/Apache_(dance)\" ><img src=\"http:\/\/a.thumbs.redditmedia.com\/jZ2j2jvyZtsBMON0.jpg\" width='70' height='70' alt=\"\"\/><\/a>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 19:44:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c01f4bd4ca000e07220cb4a1e9cf6","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/22mrzd","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","threadstarter":1,"title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p><a href=\"http:\/\/m.youtube.com\/watch?v=s48wDOalMLw\">Those French are nuts<\/a><\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 19:48:00 +0000","id":"1e3c01fdae1da800e072988cbc223a5c","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgobnk5","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgobnk5","author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"boardname":"todayilearned","categories":"General Talk","content":"<div class
 =\"usertext-body may-blank-within\"><div class=\"md\"><p><a href=\"http:\/\/m.youtube.com\/watch?v=s48wDOalMLw\">Those French are nuts<\/a><\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 19:48:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c01fdae1da800e072988cbc223a5c","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgobnk5","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title
 ":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/sophanisba","name":"sophanisba","username":"sophanisba"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well, that was disturbing. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 20:04:00 +0000","id":"1e3c02217163a800e072e6ecad99957c","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc5zu","received_at":4743647598518180879,"schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgoc5zu","author":{"link":"http:\/\/www.reddit.com\/user\/sophanisba","name":"sophanisba","username":"sophanisba"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-
 blank-within\"><div class=\"md\"><p>Well, that was disturbing. <\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 20:04:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c02217163a800e072e6ecad99957c","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc5zu","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":-4},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Compan
 y","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/StantonMD","name":"StantonMD","username":"StantonMD"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Here is a version done in the movie Can Can (1960), it&#39;s funny.<\/p>\n\n<p><a href=\"http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html\" rel=\"nofollow\">http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html<\/a><\/p>\n\n<p>Thanks for mentioning this, I had totally forgotten about it until now<\/p>\n\n<p>Edit: to fix link problem.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 20:07:00 +0000","id":"1e3c02282600aa00e0727d489e1ea86e","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc9p2","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pi
 mp beating up a prostitute","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 12 Apr 2014 16:48:18 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"keywords":[["Cole Porter","Frank Sinatra","Maurice Chevalier","Juliet Prowse","Louis Jourdan","Shirley MacLaine","Marcel Dalio","Leon Belasco","Nestor Paiva","John A. Neris","Walter Lang","Hermes Pan","Michael Kidd","William H. Danielsk Dorothy Kingsley","Charles Lederer","Jack Cummings","Eugene Borden","Abe Burrows","Ambrogio Malerba","Saul Chaplin"]],"lang":["en-gb"],"opengraph":[{"site_name":"Turner Classic Movies","type":"movie","description":"The tune is a Cole Porter composition from the original Broadway show, Shirley MacLaine as Paris entertainer Simone, astonishing her guest (Louis Jourdan), an extended, athletic performance choreographed by Hermes Pan, from Can-Can, 1960.","url":"http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-C
 lip-Apache-Dance.html","title":"Can-Can (1960) -- (Movie Clip) Apache Dance","image":"http:\/\/i.cdn.turner.com\/v5cache\/TCM\/Images\/Dynamic\/i193\/cancan60_apachedance_vd_120x60_021320130507.jpg"}]},"normalized_url":["http:\/\/tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html"],"retweet_count":[0],"title":["Can-Can (1960) -- (Movie Clip) Apache Dance"],"url":["http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html"]},"reddit":{"anchor":"cgoc9p2","author":{"link":"http:\/\/www.reddit.com\/user\/StantonMD","name":"StantonMD","username":"StantonMD"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Here is a version done in the movie Can Can (1960), it&#39;s funny.<\/p>\n\n<p><a href=\"http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html\" rel=\"nofollow\">http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-
 Clip-Apache-Dance.html<\/a><\/p>\n\n<p>Thanks for mentioning this, I had totally forgotten about it until now<\/p>\n\n<p>Edit: to fix link problem.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 20:07:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c02282600aa00e0727d489e1ea86e","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc9p2","links":["http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html"],"siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pi
 mp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/littlegreycloud","name":"littlegreycloud","username":"littlegreycloud"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>And <a href=\"https:\/\/www.youtube.com\/watch?v=yTCDVfMz15M\" rel=\"nofollow\">here&#39;s<\/a> the 2012 version.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 20:57:00 +0000","id":"1e3c0297e83ba600e072f8de81c1f326","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoduk3","received_at":4743647598518180879,"schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgoduk3","author":{"link":"http:\/\/www.reddit.com\/user\/littlegreycloud","name":"littlegreycloud","username":"
 littlegreycloud"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>And <a href=\"https:\/\/www.youtube.com\/watch?v=yTCDVfMz15M\" rel=\"nofollow\">here&#39;s<\/a> the 2012 version.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 20:57:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c0297e83ba600e072f8de81c1f326","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoduk3","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, sai
 d to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/FAPSLOCK","name":"FAPSLOCK","username":"FAPSLOCK"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>European men are so passionate.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 01:43:00 +0000","id":"1e3c05172abeaa00e0726e6b050927a4","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgolnhf","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgolnhf","author":{"link":"http:\/\/www.reddit.com\/user\/FAPSLOCK","name":"FAPSLOCK","username":"FAPSLOCK"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Europe
 an men are so passionate.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Thu, 10 Apr 2014 01:43:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c05172abeaa00e0726e6b050927a4","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgolnhf","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":9},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about
 ":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/javakah","name":"javakah","username":"javakah"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Your link is wrong.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 02:40:00 +0000","id":"1e3c05969268a000e0725d8fe166e016","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgon9z2","received_at":4743647598518180879,"schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgon9z2","author":{"link":"http:\/\/www.reddit.com\/user\/javakah","name":"javakah","username":"javakah"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=
 \"md\"><p>Your link is wrong.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Thu, 10 Apr 2014 02:40:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c05969268a000e0725d8fe166e016","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgon9z2","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","a
 bout":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/ghostofcookiespast","name":"ghostofcookiespast","username":"ghostofcookiespast"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>welp... that explains a lot... about the French<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 03:28:00 +0000","id":"1e3c0601dc3aa000e07226d7e1b78f12","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoolpb","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgoolpb","author":{"link":"http:\/\/www.reddit.com\/user\/ghostofcookiespast","name":"ghostofcookiespast","username":"ghostofcookiespast"},"boardname":"todayilearned","categories":"General Talk","content
 ":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>welp... that explains a lot... about the French<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Thu, 10 Apr 2014 03:28:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c0601dc3aa000e07226d7e1b78f12","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoolpb","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name"
 :"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/getex250","name":"getex250","username":"getex250"},"content":"","contenttype":"html","created_at":"Thu, 10 Apr 2014 09:21:00 +0000","id":"1e3c0916e072a600e07213ab7a1d5e26","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/22oivc","received_at":4743647283611885896,"schema":{"version":3},"subtype":"thread","title":"Review: Apache Solr Beginner's Guide","type":"reddit"},"reddit":{"anchor":"22oivc","author":{"link":"http:\/\/www.reddit.com\/user\/getex250","name":"getex250","username":"getex250"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Fri, 11 Apr 2014 14:34:06 +0000","created_at":"Thu, 10 Apr 2014 09:21:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3c0916e072a600e07213ab7a1d5e26","language":"
 Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/22oivc","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/?limit=500","threadid":"22oivc","threadstarter":1,"title":"Review: Apache Solr Beginner's Guide","topics":"Computers","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/PilotPirx","name":"PilotPirx","username":"PilotPirx"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>That&#39;s not a review, it tells me nothing about the book (only that you like it).<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 09:27:00 +0000","id":"1e3c092449acaa00e0722de4069ff0b4","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/cgotztv","received_at":4743647283611872474,"schema":{"version":3},"subtype":"post","title":"Review: Apache Solr Beginner's Guide","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgotztv","author":{"link":"http:\/\/www.reddit.com\/user\/PilotPirx","name":"PilotPirx","username":"PilotPirx"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>That&#39;s no
 t a review, it tells me nothing about the book (only that you like it).<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Fri, 11 Apr 2014 14:34:06 +0000","created_at":"Thu, 10 Apr 2014 09:27:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3c092449acaa00e0722de4069ff0b4","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/cgotztv","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/?limit=500","threadid":"22oivc","title":"Review: Apache Solr Beginner's Guide","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Distant_Texans_Fan","name":"Distant_Texans_Fan","username":"Distant_Texans_Fan"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/www.nzdf.mil.nz\/news\/media-releases\/2011\/nzlav-assists-us-apache-helicopter-in-afghanistan.htm\" ><img src=\"http:\/\/f.thumbs.redditmedia.com\/n3GB58Azp8pj_oG5.jpg\" width='70' height='46' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Fri, 11 Apr 2014 21:37:00 +0000","id":"1e3c1c169da2a600e07221a570127bc8","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/22t6n6","schema":{"version":3},"subtype":"thread","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","type":"reddit"},"reddit":{"anchor":"22t6n6","author":{"link":"http:\/\/www.reddit.com\/user\/Distant_Texans_Fan","n
 ame":"Distant_Texans_Fan","username":"Distant_Texans_Fan"},"boardname":"todayilearned","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/www.nzdf.mil.nz\/news\/media-releases\/2011\/nzlav-assists-us-apache-helicopter-in-afghanistan.htm\" ><img src=\"http:\/\/f.thumbs.redditmedia.com\/n3GB58Azp8pj_oG5.jpg\" width='70' height='46' alt=\"\"\/><\/a>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 02:57:56 +0000","created_at":"Fri, 11 Apr 2014 21:37:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c1c169da2a600e07221a570127bc8","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/22t6n6","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/?limi
 t=500","threadid":"22t6n6","threadstarter":1,"title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","topics":"Social","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","id":"1e3c1d7c3e5ea600e072676029a3fa8e","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","schema":{"version":3},"subtype":"post","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgq8ai3","author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"b
 oardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 02:57:56 +0000","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c1d7c3e5ea600e072676029a3fa8e","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/?limit=500","threadid":"22t6n6","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable t
 o take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","topics":"Social","type":"post"},"salience":{"content":{"sentiment":4},"title":{"entities":[{"name":"Afghanistan","sentiment":0,"confident":1,"label":"Place","evidence":2,"type":"Place","about":1,"themes":["tow bar"]}],"sentiment":0,"topics":[{"name":"Law","score":0.65574711561203,"additional":"Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","hits":0}]}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","id":"1e3c1d7c3e5ea600e0729cdf729e20d8","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","schema":{"version":3},"subtype":"post","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgq8ai3","author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"b
 oardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 15 Apr 2014 23:23:15 +0000","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c1d7c3e5ea600e0729cdf729e20d8","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/?limit=500","threadid":"22t6n6","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable t
 o take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","topics":"Social","type":"post"},"salience":{"content":{"sentiment":4},"title":{"entities":[{"name":"Afghanistan","sentiment":0,"confident":1,"label":"Place","evidence":2,"type":"Place","about":1,"themes":["tow bar"]}],"sentiment":0,"topics":[{"name":"Law","score":0.65574711561203,"additional":"Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","hits":0}]}}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"content":"","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","id":"1e3c276e1b65a800e0722108f0267ef4","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","schema":{"version":3},"subtype":"thread","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"reddit"},"reddit":{"anchor":"22vej3","author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 23:08:59 +0000","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id
 ":"1e3c276e1b65a800e0722108f0267ef4","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/?limit=500","threadid":"22vej3","threadstarter":1,"title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","topics":"Computers","type":"thread"}}
-{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"content":"","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","id":"1e3c276e1b65a800e072bcb683e13d52","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","schema":{"version":3},"subtype":"thread","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"reddit"},"reddit":{"anchor":"22vej3","author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sun, 13 Apr 2014 16:47:38 +0000","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id
 ":"1e3c276e1b65a800e072bcb683e13d52","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/?limit=500","threadid":"22vej3","threadstarter":1,"title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","topics":"Computers","type":"thread"}}
-{"interaction":{"content":"submitted by <a href=\"http:\/\/www.reddit.com\/user\/iamondemand\"> iamondemand <\/a> <br\/> <a href=\"https:\/\/code.facebook.com\/posts\/274771932683700\/large-scale-graph-partitioning-with-apache-giraph\/\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:22 +0000","id":"1e3c276eed34a700e072ba255b00a128","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/","received_at":4743647638226100185,"schema":{"version":3},"subtype":"post","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"blog":{"link":"http:\/\/programming.reddit.com\/","title":"programming"},"blogid":"50213831","content":"submitted by <a hr
 ef=\"http:\/\/www.reddit.com\/user\/iamondemand\"> iamondemand <\/a> <br\/> <a href=\"https:\/\/code.facebook.com\/posts\/274771932683700\/large-scale-graph-partitioning-with-apache-giraph\/\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:22 +0000","domain":"programming.reddit.com","guid":"cbde0f804e3e6d5e369afd85746c4803","id":"1e3c276eed34a700e072ba255b00a128","lang":"en","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/","parseddate":"Sat, 12 Apr 2014 19:18:53 +0000","postid":"f9b7d3ea-a9f8-4d42-aa38-3f2a7923a90e","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Centuron\",\"name\":\"Centuron\",\"username\":\"Centuron\"},\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://i.imgur.com/uUq0alG.jpg\\\" ><img src=\\\"http://c.thumbs.redditmedia.com/2qmd7QCt4gxEpyeV.jpg\\\" width='70' height='45' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 05:50:00 +0000\",\"id\":\"1e3b4aa77e23a400e0729dfdaf3bde26\",\"link\":\"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/21e6nl\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache light show\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21e6nl\",\"author\":{\"link\":\"http://www.reddit.com/user/Centuron\",\"name\":\"Centuron\",\"username\":\"Centuron\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://i.imgur.com/uUq0alG.jpg\\\" ><img src=\\\"http://c.thumbs.redditmedia.com/2qmd7QCt4g
 xEpyeV.jpg\\\" width='70' height='45' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 26 Mar 2014 06:19:01 +0000\",\"created_at\":\"Wed, 26 Mar 2014 05:50:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3b4aa77e23a400e0729dfdaf3bde26\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/21e6nl\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/21e6nl/apache_light_show/?limit=500\",\"threadid\":\"21e6nl\",\"threadstarter\":1,\"title\":\"Apache light show\",\"topics\":\"Social\",\"type\":\"thread\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/42aross\",\"name\":\"42aross\",\"username\":\"42aross\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 20:10:00 +0000\",\"id\":\"1e3b9d99a5bdac00e072b3805c850ab2\",\"link\":\"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/21yb2i\",\"received_at\":4743646470850625300,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git (apparently not a joke!)\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yb2i\",\"author\":{\"link\":\"http://www.reddit.com/user/42aross\",\"name\":\"42aross\",\"username\":\"42aross\"},\"boardname\":\"technology\",\"categories\":\"General Talk\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 09 Apr 2014 09:54:04 +0000\",\"created_at\":\"Tue, 01 Apr 2014 20:10:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065aff1f\",\"forumname
 \":\"Reddit: Technology Forum\",\"forumurl\":\"http://www.reddit.com/r/technology/\",\"id\":\"1e3b9d99a5bdac00e072b3805c850ab2\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/21yb2i\",\"siteid\":\"4c065aff1a\",\"thread\":\"http://www.reddit.com/r/technology/comments/21yb2i/apache_subversion_to_migrate_to_git_apparently/?limit=500\",\"threadid\":\"21yb2i\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git (apparently not a joke!)\",\"topics\":\"Social\",\"type\":\"thread\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:22:00 +0000\",\"id\":\"1e3b9ec0b0bfa400e072ae39f85ae494\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghyee0\",\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div c
 lass=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 09:26:06 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:22:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3b9ec0b0bfa400e072ae39f85ae494\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"id\":\"1e3b9ed4ce96aa00e07233e0551b7594\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yq2g\",\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 09:26:06 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\
 "1e3b9ed4ce96aa00e07233e0551b7594\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"id\":\"1e3b9ed4ce96aa00e07286324c45ea64\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"received_at\":4743645155923598298,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yq2g\",\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 05 Apr 2014 17:00:26 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.
 reddit.com/r/programming/\",\"id\":\"1e3b9ed4ce96aa00e07286324c45ea64\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"content\":\"\",\"contenttype\":\"html\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"id\":\"1e3b9ed4ce96aa00e072dd432713a948\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"received_at\":4743644755860130680,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"21yq2g\",\"author\":{\"link\":\"http://www.reddit.com/user/xvirk\",\"name\":\"xvirk\",\"username\":\"xvirk\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 04 Apr 2014 16:21:11 +0000\",\"created_at\":\"Tue, 01 Apr 2014 22:31:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.
 reddit.com/r/programming/\",\"id\":\"1e3b9ed4ce96aa00e072dd432713a948\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/21yq2g\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"threadstarter\":1,\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"thread\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"id\":\"1e3ba1711fc2ac00e07219fb646a291e\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghw4m5\",\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"
 md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 10 Apr 2014 09:26:06 +0000\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba1711fc2ac00e07219fb646a291e\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"id\":\"1e3ba1711fc2ac00e072f9e506a4555a\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":95,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghw4m5\",\"author\":{\"link\":\"http://www.reddit.com/user/vaibhavsagar\",\"name\":\"vaibhavsagar\",\"username\":\"vaibhavsagar\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"
 md\\\"><p>Wait, this isn&#39;t a joke?</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 04 Apr 2014 16:21:11 +0000\",\"created_at\":\"Wed, 02 Apr 2014 03:30:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba1711fc2ac00e072f9e506a4555a\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghw4m5\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"id\":\"1e3ba26b76acac00e072261af18a8cec\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"received_at\":4743644755860130261,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghyee0\",\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usert
 ext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Fri, 04 Apr 2014 16:21:11 +0000\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba26b76acac00e072261af18a8cec\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"id\":\"1e3ba26b76acac00e07261ab38b9b7b8\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Subversion to Migrate to Git\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cghyee0\",\"author\":{\"link\":\"http://www.reddit.com/user/html6dev\",\"name\":\"html6dev\",\"username\":\"html6dev\"},\"boardname\":\"programming\",\"categories\":\"Software\",\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div c
 lass=\\\"md\\\"><p>It turned out to be a joke. Rofl. They had me going all day. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 05 Apr 2014 17:00:26 +0000\",\"created_at\":\"Wed, 02 Apr 2014 05:22:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4c065940d\",\"forumname\":\"Programming Forum\",\"forumurl\":\"http://www.reddit.com/r/programming/\",\"id\":\"1e3ba26b76acac00e07261ab38b9b7b8\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/cghyee0\",\"siteid\":\"4c0659406\",\"thread\":\"http://www.reddit.com/r/programming/comments/21yq2g/apache_subversion_to_migrate_to_git/?limit=500\",\"threadid\":\"21yq2g\",\"title\":\"Apache Subversion to Migrate to Git\",\"topics\":\"Computers\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}}}"
+"{\"interaction\":{\"content\":\"submitted by <a href=\\\"http://www.reddit.com/user/klimov\\\"> klimov </a> <br/> <a href=\\\"https://news.ycombinator.com/item?id=7532059\\\">[link]</a> <a href=\\\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\\\">[comment]</a>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 05 Apr 2014 12:05:44 +0000\",\"id\":\"1e3bcba9d491ac00e072c774b723bdb8\",\"link\":\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\",\"received_at\":4743645010304135122,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Wave and Google Wave discussion on HN\",\"type\":\"reddit\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"blog\":{\"link\":\"http://programming.reddit.com/\",\"title\":\"programming\"},\"blogid\":\"50213831\",\"content\":\"submitted by <a href=\\\"http://www.reddit.com/user/klimov\\\"> klimov </a> <br/> 
 <a href=\\\"https://news.ycombinator.com/item?id=7532059\\\">[link]</a> <a href=\\\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\\\">[comment]</a>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 05 Apr 2014 12:05:44 +0000\",\"domain\":\"programming.reddit.com\",\"guid\":\"3033dc75c40c532e4f82182611b563e7\",\"id\":\"1e3bcba9d491ac00e072c774b723bdb8\",\"lang\":\"en\",\"link\":\"http://www.reddit.com/r/programming/comments/229lax/apache_wave_and_google_wave_discussion_on_hn/\",\"parseddate\":\"Sat, 05 Apr 2014 13:10:11 +0000\",\"postid\":\"573ff17d-71f2-4868-bb81-1edb1280cacd\",\"title\":\"Apache Wave and Google Wave discussion on HN\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/Alah2\",\"name\":\"Alah2\",\"username\":\"Alah2\"},\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://imgur.com/gallery/VA7mM\\\" ><img src=\\\"http://e.thumbs.redditmedia.com/i91u8uoHDrL2YjaX.jpg\\\" width='70' height='52' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 09:58:00 +0000\",\"id\":\"1e3bf04446cca400e072e562dc4828ea\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/22i6rx\",\"received_at\":4743646143724412679,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"reddit\":{\"anchor\":\"22i6rx\",\"author\":{\"link\":\"http://www.reddit.com/user/Alah2\",\"name\":\"Alah2\",\"username\":\"Alah2\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\":\"<a class=\\\"thumbnail may-blank \\\" href=\\\"http://imgur.com/gallery/
 VA7mM\\\" ><img src=\\\"http://e.thumbs.redditmedia.com/i91u8uoHDrL2YjaX.jpg\\\" width='70' height='52' alt=\\\"\\\"/></a>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 09:58:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf04446cca400e072e562dc4828ea\",\"language\":\"Unknown\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/22i6rx\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"threadstarter\":1,\"title\":\"Apache forced landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"thread\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/djgump35\",\"name\":\"djgump35\",\"username\":\"djgump35\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Give me a cargobob, and I will get it back without a scratch. Really easy mission. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 10:49:00 +0000\",\"id\":\"1e3bf0b6453ba600e072b3afe47c705e\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24qh\",\"received_at\":4743646143724751579,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache forced landing in a Scottish field\",\"type\":\"reddit\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"reddit\":{\"anchor\":\"cgn24qh\",\"author\":{\"link\":\"http://www.reddit.com/user/djgump35\",\"name\":\"djgump35\",\"username\":\"djgump35\"},\"boardname\":\"pics\",\"categories\":\"General Talk\",\"content\
 ":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Give me a cargobob, and I will get it back without a scratch. Really easy mission. </p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 08 Apr 2014 12:13:36 +0000\",\"created_at\":\"Tue, 08 Apr 2014 10:49:00 +0000\",\"domain\":\"www.reddit.com\",\"forumid\":\"4ad4294119\",\"forumname\":\"Pictures and Images Forum\",\"forumurl\":\"http://www.reddit.com/r/pics/\",\"id\":\"1e3bf0b6453ba600e072b3afe47c705e\",\"language\":\"English\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24qh\",\"siteid\":\"4ad429410\",\"thread\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/?limit=500\",\"threadid\":\"22i6rx\",\"title\":\"Apache forced landing in a Scottish field\",\"topics\":\"Social\",\"type\":\"post\"},\"salience\":{\"content\":{\"sentiment\":8},\"title\":{\"entities\":[{\"name\":
 \"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"Scottish field\",\"forced landing\"]}],\"sentiment\":0}}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://www.reddit.com/user/The_Fiddler1979\",\"name\":\"The_Fiddler1979\",\"username\":\"The_Fiddler1979\"},\"content\":\"<div class=\\\"usertext-body may-blank-within\\\"><div class=\\\"md\\\"><p>Upvote for comment #7</p>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 08 Apr 2014 10:50:00 +0000\",\"id\":\"1e3bf0b8816fac00e072d381797a08c6\",\"link\":\"http://www.reddit.com/r/pics/comments/22i6rx/apache_forced_landing_in_a_scottish_field/cgn24wh\",\"receive

<TRUNCATED>

[26/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
index 8f40373..ae40315 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
@@ -1,4136 +1,4160 @@
-{"board":{"anchor":"post8881971","author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"boardname":"Tech Support Guy - Free help for Windows 7, Vista, XP, and more!","categories":"Software","content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\"
  alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisible(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","countrycode":"US","crawled":"Sun, 23 Mar 2014 09:18:13 +0000","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","domain":"www.techguy.org","forumid":"469bbbf115a","forumname":"All Other Software","forumurl":"http:\/\/forums.techguy.org\/18-all-other-software\/","gmt":"-5","id":"1e3b20559a7daa00e072105aaa3de61e","language":"English","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","siteid":"3cbc7f773","thread":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html","threadid":"1122437","title":"Apache Open Office","topics":"Computers","type":"post
 "},"interaction":{"author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\" alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisibl
 e(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","id":"1e3b20559a7daa00e072105aaa3de61e","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","schema":{"version":3},"subtype":"post","title":"Apache Open Office","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-4},"title":{"sentiment":0}}}
-{"board":{"anchor":"post11387078","author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"boardname":"ZWAME F\u00F3rum","categories":"Hardware","content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APACHE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P
 170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIn
 tel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nBluetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","countrycode":"PT","crawled":"Sun, 23 Mar 2014 19:41:39 +0000","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","domain":"www.zwame.pt","forumid":"4e9be0585b","forumname":"Por
 t\u00E1teis","forumurl":"http:\/\/forum.zwame.pt\/forumdisplay.php?f=136","gmt":"+1","id":"1e3b20677c20aa00e072a04d81597bd0","language":"Portuguese","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","siteid":"4e9bdf6356","thread":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2","threadid":"852065","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","topics":"Computers","type":"post"},"interaction":{"author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APAC
 HE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=
 \"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIntel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nB
 luetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","id":"1e3b20677c20aa00e072a04d81597bd0","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","received_at":4743640457867795261,"schema":{"version":3},"subtype":"post","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","type":"board"},"language":{"confidence":66,"tag":"es","tag_extended":"es"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]},{"name":"GE70 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]}],"sentiment":0},"title":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":4,"type":"Place","about":1},{"name":"GE6
 0 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
-{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"boardname":"Questions - Server Fault","categories":"Hardware","content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.ChannelSocket.pause(ChannelSocket.
 java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCaused by: java.net.UnknownHos
 tException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HTTP\/1.1 on http-8080\nMar 2
 2, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol start\nINFO: Starting Coyo
 te HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 08:30:47 +0000","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","domain":"serverfault.com","forumid":"4c8963bd4","forumname":"Forum","forumurl":"http:\/\/serverfault.com\/questions?sort=newest","id":"1e3b20ba2fb2a800e072aadb0d45650a","language":"English","link":"http:\/\/serverfault.com\/q\/583910#","siteid":"4c8963bc2","thread":"http:\/\/serverfault.com\/q\/583910","threadid":"583910","threadstarter":1,"title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: 
 hostname: hostname: Name or service not known","topics":"Computers","type":"thread"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.Channel
 Socket.pause(ChannelSocket.java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCau
 sed by: java.net.UnknownHostException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HT
 TP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol
  start\nINFO: Starting Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","id":"1e3b20ba2fb2a800e072aadb0d45650a","link":"http:\/\/serverfault.com\/q\/583910#","received_at":4743640653856312918,"schema":{"version":3},"subtype":"thread","title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: hostname: hostname: Name or service not known","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Mar 22, 2014","sentiment":-5,"confident":1,"label"
 :"Date","evidence":6,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","tomcat6 service configured","pause INFO","optimal performance","production environments"]},{"name":"INFO","sentiment":-7,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"8080 Mar 22","sentiment":-19,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"6.0.24 Mar 22","sentiment":-17,"confident":1,"label":"Date","evidence":3,"type":"Pattern","about":1,"themes":["optimal performance","production environments","previous errors","init INFO","ajp13 listening"]},{"name":"8009 Mar 22","sentiment":-7,"confident":1,"label":"Date","evidence":5,"type":"Pattern","about":0,"themes":["previous error
 s","init INFO","ajp13 listening"]}],"sentiment":-2},"title":{"sentiment":-5}}}
-{"board":{"anchor":"117232","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":
 "html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04:35:09 +0000","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20c55cb8a600e0722dd61ff7876a","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"content":"<div class=\"kmsgtext\">\n\
 t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","id":"1e3b20c55cb8a600e0722dd61ff7876a","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"sa
 lience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.58399718999863,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Automotriz","score":0.57611888647079,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9
 n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Energ\u00EDa natural","score":0.4619414806366,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u
 00E9 comentando como me va con ella.","hits":0}]},"title":{"sentiment":0}}}
-{"board":{"anchor":"117233","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"kmsgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les s
 eguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04
 :35:10 +0000","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20eb5c32ac00e072bf86636ba614","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"km
 sgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y q
 ue no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","id":"1e3b20eb5c32ac00e072bf86636ba614","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.54232031106949,"additional":"KrOnK89 
 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser u
 n da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Automotriz","score":0.52735489606857,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\
 u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... por que veo que te quedas sin moto hasta que te la arreglen.","hits":0},{"name":"Ciencia","score":0.52646517753601,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema inf
 inito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Inmobiliaria","score":0.49977034330368,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\
 u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0}]},"title":{"sentiment":0}}}
-{"board":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"boardname":"\u767E\u5EA6\u77E5\u9053 - \u5168\u7403\u6700\u5927\u4E2D\u6587\u4E92\u52A8\u95EE\u7B54\u5E73\u53F0","categories":"General Talk","content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=\"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","conten
 ttype":"html","countrycode":"CN","crawled":"Sun, 23 Mar 2014 09:26:43 +0000","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","domain":"zhidao.baidu.com","forumid":"52c374722","forumname":"\u670D\u52A1\u5668\u8F6F\u4EF6","forumurl":"http:\/\/zhidao.baidu.com\/browse\/1245","gmt":"-8","id":"1e3b21086adbaa00e0726da0291633ce","language":"Chinese - Simplified","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","siteid":"52bca2440","thread":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html","threadid":"2074162451508708028","threadstarter":1,"title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","topics":"Social","type":"thread"},"interaction":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=
 \"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","id":"1e3b21086adbaa00e0726da0291633ce","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","received_at":4743640302542788965,"schema":{"version":3},"subtype":"thread","title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","type":"board"},"language":{"confidence":79,"tag":"zh","tag_extended":"zh-cn"}}
-{"board":{"anchor":"entry746084","author":{"link":"http:\/\/forums.pcworld.com\/index.php?\/user\/549576-goforit\/","name":"GOFORIT","registered":"Sat, 22 Mar 2014 00:00:00 +0000","username":"GOFORIT"},"boardname":"PC World","categories":"Hardware","content":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\n\t\t\t\t\t\t\n\t\t\t\t\t\t<br \/>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 04:14:57 +0000","created_at":"Sat, 22 Mar 2014 14:24:00 -0800","domain":"www.pcworld.com","forumid":"4b4147791c6","forumname":"Laptops","forumurl":"http:\/\/forums.pcworld.com\/index.php?\/forum\/2005-laptops\/","gmt":"-8","id":"1e3b210aa710a000e072ee89b1bdcb58","language":"English","link":"http:\/\/forums.pcworld.com\/index.php?\/topic\/169738-msi-ge60-apac
 he-033-vs-asus-g750jw-nh71\/#entry746084","siteid":"450b0aed0","thread":"http:\/\/forums.pcworld.com\/index.php?\/topic\/169738-msi-ge60-apache-033-vs-asus-g750jw-nh71\/","threadid":"169738","threadstarter":1,"title":"Msi Ge60 Apache-033 Vs Asus G750jw-nh71","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"http:\/\/forums.pcworld.com\/index.php?\/user\/549576-goforit\/","name":"GOFORIT","registered":"Sat, 22 Mar 2014 00:00:00 +0000","username":"GOFORIT"},"content":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\n\t\t\t\t\t\t\n\t\t\t\t\t\t<br \/>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:24:00 -0800","id":"1e3b210aa710a000e072ee89b1bdcb58","link":"http:\/\/forums.pcworld.com\/index.php?\/topic\/169738-msi-ge60-apache-033-vs-as
 us-g750jw-nh71\/#entry746084","received_at":4743640586005838089,"schema":{"version":3},"subtype":"thread","title":"Msi Ge60 Apache-033 Vs Asus G750jw-nh71","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["gaming laptop"]}],"sentiment":2,"topics":[{"name":"Video Games","score":0.57882922887802,"additional":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!","hits":0},{"name":"Mobile Devices","score":0.55213981866837,"additional":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus 
 is a 17 inch and that the MSI has the newer Nvidia graphics card.","hits":0},{"name":"Hardware","score":0.48072889447211997,"additional":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!","hits":0}]},"title":{"sentiment":0}}}
-{"board":{"anchor":"answer-1623235828","author":{"name":"Anonymous","username":"Anonymous"},"boardname":"\u767E\u5EA6\u77E5\u9053 - \u5168\u7403\u6700\u5927\u4E2D\u6587\u4E92\u52A8\u95EE\u7B54\u5E73\u53F0","categories":"General Talk","content":"<pre id=\"answer-content-1623235828\" accuse=\"aContent\" class=\"answer-text mb-10\">\u771F\u5B9E<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">\u9519\u8BEF<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/comma.png\" class=\"word-replace\">\u5374<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/shi.png\" class=\"word-replace\">\u7B2C2\u5E45\u56FE<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">JDBC\u8FDE\u63A5MYSQL\u9519<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/sigh.png\" class=\"word-replace\">MYSQL<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/bu.png\" class=\"word-replace\">\u5141\u8BB8\u7F51\u7EDC\u8BBF\u95EE<\/pre>",
 "contenttype":"html","countrycode":"CN","crawled":"Wed, 26 Mar 2014 04:29:29 +0000","created_at":"Sat, 22 Mar 2014 14:49:00 -0800","domain":"zhidao.baidu.com","forumid":"52c3747313","forumname":"JAVA\u76F8\u5173","forumurl":"http:\/\/zhidao.baidu.com\/browse\/870","gmt":"-8","id":"1e3b2142882da600e0728adaf869aa08","language":"Chinese - Simplified","link":"http:\/\/zhidao.baidu.com\/question\/710806556482464405.html#answer-1623235828","siteid":"52bca2440","thread":"http:\/\/zhidao.baidu.com\/question\/710806556482464405.html","threadid":"710806556482464405","title":"org.apache.jasper.JasperException: An exception occurred processing JSP page \/index.jsp at line 7","topics":"Social","type":"post"},"interaction":{"author":{"name":"Anonymous","username":"Anonymous"},"content":"<pre id=\"answer-content-1623235828\" accuse=\"aContent\" class=\"answer-text mb-10\">\u771F\u5B9E<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">\u9519\u8BEF<img src=\"htt
 p:\/\/img.iknow.bdimg.com\/question\/word\/comma.png\" class=\"word-replace\">\u5374<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/shi.png\" class=\"word-replace\">\u7B2C2\u5E45\u56FE<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">JDBC\u8FDE\u63A5MYSQL\u9519<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/sigh.png\" class=\"word-replace\">MYSQL<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/bu.png\" class=\"word-replace\">\u5141\u8BB8\u7F51\u7EDC\u8BBF\u95EE<\/pre>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:49:00 -0800","id":"1e3b2142882da600e0728adaf869aa08","link":"http:\/\/zhidao.baidu.com\/question\/710806556482464405.html#answer-1623235828","schema":{"version":3},"subtype":"post","title":"org.apache.jasper.JasperException: An exception occurred processing JSP page \/index.jsp at line 7","type":"board"},"language":{"confidence":68,"tag":"zh","tag_extended":"zh-cn"}}
-{"board":{"anchor":"post9602941","author":{"avatar":"http:\/\/forum.notebookreview.com\/image.php?u=57204&dateline=1311870329","link":"http:\/\/forum.notebookreview.com\/member.php?u=57204","location":"Miami Beach","name":"adyghost","registered":"Thu, 01 Mar 2007 00:00:00 +0000","username":"adyghost"},"boardname":"Laptop Forums and Notebook Computer Discussion","categories":"Hardware","content":"<div class=\"postrow has_after_content\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_9602941\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tIt's strange to me that the GE70 Apache has Windows 7 driver support but not the GE60... Most drivers seem to be the same in any case, with a few differences.\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"after_content\">\n\t\t\t\t\n\t\t\t\t<div class=\"vbseo
 _buttons\" id=\"lkbtn_1.748085.9602941\">\n\n    <\/ul>\n    <\/li>\n    \n    \n    \n    <\/ul>\n    \n    \n\n\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sun, 23 Mar 2014 06:54:08 +0000","created_at":"Sat, 22 Mar 2014 17:54:00 -0500","domain":"www.notebookreview.com","forumid":"4d810a673a7","forumname":"MSI","forumurl":"http:\/\/forum.notebookreview.com\/msi\/","gmt":"-5","id":"1e3b214db533a400e0728c679fd74da0","language":"English","link":"http:\/\/forum.notebookreview.com\/msi\/748085-ge60-apache-pro-questions.html#post9602941","siteid":"42ed25c80","thread":"http:\/\/forum.notebookreview.com\/msi\/748085-ge60-apache-pro-questions.html","threadid":"748085","title":"GE60 Apache Pro Questions","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.notebookreview.com\/image.php?u=57204&dateline=1311870329","link":"http:\/\/forum.notebookreview.com\/member.php?u=57204","location":"Miami Beach","name":"adyghost","registered":"Thu, 01 Ma
 r 2007 00:00:00 +0000","username":"adyghost"},"content":"<div class=\"postrow has_after_content\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_9602941\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tIt's strange to me that the GE70 Apache has Windows 7 driver support but not the GE60... Most drivers seem to be the same in any case, with a few differences.\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"after_content\">\n\t\t\t\t\n\t\t\t\t<div class=\"vbseo_buttons\" id=\"lkbtn_1.748085.9602941\">\n\n    <\/ul>\n    <\/li>\n    \n    \n    \n    <\/ul>\n    \n    \n\n\n<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 17:54:00 -0500","id":"1e3b214db533a400e0728c679fd74da0","link":"http:\/\/forum.notebookreview.com\/msi\/748085-ge60-apache-pro-questions.html#post9602941","received_a
 t":4743640264593543004,"schema":{"version":3},"subtype":"post","title":"GE60 Apache Pro Questions","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-3},"title":{"sentiment":0}}}
-{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"boardname":"Questions - Stack Overflow","categories":"Software","content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"postProcress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont
  understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 08:40:38 +0000","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","domain":"stackoverflow.com","forumid":"4e72d61036","forumname":"Active Forum","forumurl":"
 http:\/\/stackoverflow.com\/questions?sort=active","id":"1e3b214ff167aa00e0722e47b361eb38","language":"English","link":"http:\/\/stackoverflow.com\/q\/22567844#","siteid":"4b70e7b27","thread":"http:\/\/stackoverflow.com\/q\/22567844","threadid":"22567844","title":"Apache camel : Multithreading in route","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"post
 Procress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the 
 time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","id":"1e3b214ff167aa00e0722e47b361eb38","link":"http:\/\/stackoverflow.com\/q\/22567844#","received_at":4743640655020782990,"schema":{"version":3},"subtype":"post","title":"Apache camel : Multithreading in route","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"\"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\" String postProcessor = \"","sentiment":0,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0},{"name":"\"someId\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"bean:somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"postProcress\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","abou
 t":0},{"name":"\"bean:postProcessorBean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"Somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["incorrect results","problem statement"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["problem statement"]}],"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
-{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"boardname":"Questions - Stack Overflow","categories":"Software","content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"postProcress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont
  understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","countrycode":"US","crawled":"Sun, 06 Apr 2014 19:49:39 +0000","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","domain":"stackoverflow.com","forumid":"4e72d61036","forumname":"Active Forum","forumurl":"
 http:\/\/stackoverflow.com\/questions?sort=active","id":"1e3b214ff167aa00e072ccc892a03c12","language":"English","link":"http:\/\/stackoverflow.com\/q\/22567844#","siteid":"4b70e7b27","thread":"http:\/\/stackoverflow.com\/q\/22567844","threadid":"22567844","title":"Apache camel : Multithreading in route","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"post
 Procress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the 
 time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","id":"1e3b214ff167aa00e072ccc892a03c12","link":"http:\/\/stackoverflow.com\/q\/22567844#","received_at":4743645545817667587,"schema":{"version":3},"subtype":"post","title":"Apache camel : Multithreading in route","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"\"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\" String postProcessor = \"","sentiment":0,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0},{"name":"\"someId\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"bean:somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"postProcress\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","abou
 t":0},{"name":"\"bean:postProcessorBean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"Somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["incorrect results","problem statement"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["problem statement"]}],"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
-{"board":{"anchor":"p16374741","author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"<p>Comme je t&#039;ai dit, pourquoi veux tu red\u00E9marrer apache ?<\/p><p>Est ce que tu as param\u00E9tr\u00E9 quelque chose dans Apache ? Si oui, c&#039;est la manip que tu as faite qui doit planter ton syst\u00E8me.<\/p>","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e07217a3ca61bff8","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16374741","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissan
 ce d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"content":"<p>Comme je t&#039;ai dit, pourquoi veux tu red\u00E9marrer apache ?<\/p><p>Est ce que tu as param\u00E9tr\u00E9 quelque chose dans Apache ? Si oui, c&#039;est la manip que tu as faite qui doit planter ton syst\u00E8me.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e07217a3ca61bff8","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16374741","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["chose dans Apache","ton syst\u00E8me"]}],"sentiment":0},"title":{"entities":[{"name":"A
 pache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
-{"board":{"anchor":"p16373871","author":{"name":"machim","username":"machim"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"<p>\u00E7a ve dire!!!<\/p>","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e07235753fc71602","language":"Unknown","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373871","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"name":"machim","username":"machim"},"content":"<p>\u00E7a ve dire!!!<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e07235753fc71602","link":"http:\/\
 /forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373871","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":92,"tag":"fr","tag_extended":"fr"},"salience":{"title":{"entities":[{"name":"Apache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
-{"board":{"anchor":"p16373841","author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"dans un  premier temps :\n\nsudo \/etc\/...\n\nSinon, j'ai bien l'impression qu'Apache n'est pas sur ta machine. (Les fichiers sont l\u00E0 ?)\n\nDerni\u00E8re modification par nolem (Hier \u00E0 12:15)","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e072412679e481b8","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373841","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":
 "Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"content":"dans un  premier temps :\n\nsudo \/etc\/...\n\nSinon, j'ai bien l'impression qu'Apache n'est pas sur ta machine. (Les fichiers sont l\u00E0 ?)\n\nDerni\u00E8re modification par nolem (Hier \u00E0 12:15)","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e072412679e481b8","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373841","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":3},"title":{"entities":[{"name":"Apache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
-{"board":{"anchor":"p16378041","author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"<p>Si tu veux d\u00E9sinstaller compl\u00E8tement, il faut purger. Je pense que tu devras passer par cette \u00E9tape.<\/p>","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e0724979ede06068","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16378041","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.ub
 untu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"content":"<p>Si tu veux d\u00E9sinstaller compl\u00E8tement, il faut purger. Je pense que tu devras passer par cette \u00E9tape.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e0724979ede06068","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16378041","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
-{"board":{"anchor":"p16374901","author":{"name":"machim","username":"machim"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"Oui j'essayais d'installer les paquets ssmtp pour les mails. Puis j'ai fait certaine manipulations. je sais que j'ai fais des mauvaises manipulation mais je ne me rappelle plus. J'ai essay\u00E9 de desinstaller les paquets apache2, phpmyadmin, mysql, php5... pour reinstaller mais rien ne vas. Voila mon fichier \/etc\/apache2\/apache2.conf:\n\n# R\u00E9pertoire Racine du serveur\nServerRoot \"\/etc\/apache2\"\n\n# Fichier de v\u00E9rrouillage (lock) du serveur\n# IL DOIT SE TROUVER SUR LE DISQUE LOCAL\n#<IfModule !mpm_winnt.c>\n#<IfModule !mpm_netware.c>\nLockFile \/var\/lock\/apache2\/accept.lock\n#<\/IfModule>\n#<\/IfModule>\n\n# Fichier du PID: endroit o\u00F9, \u00E0 son d\u00E9marrage, apache doit stocker\n# son num\u00E9ro d'identification de processus\nPidFile \/var\/run\/apache2.pid\n\n# Delai d'attente d\u00E9pass\u00E9 : nombre d
 e secondes avant de recevoir et d'envoyer\n# un message de \"D\u00E9lai d'attente d\u00E9pass\u00E9\" (timeout)\nTimeout 300\n\n# Connexion persistante: Alloue ou non les requ\u00EAtes persistantes\n# (plus d'une requ\u00EAte par connexion ).\n# Mettre \u00E0 \"Off\" pour d\u00E9sactiver.\nKeepAlive On\n\n# Nombre Maximum de requ\u00EAtes allou\u00E9es durant une connexion persistante.\n# 0 = non limit\u00E9\n# Il est recommand\u00E9 de garder ce nombre assez haut pour des performances maximales\nMaxKeepAliveRequests 100\n\n# Nombre de secondes d'attente pour la prochaine requ\u00EAte\n# d'un m\u00EAme client sur une m\u00EAme connexion avant un timeout\nKeepAliveTimeout 15\n\n# Configuration du mpm charg\u00E9\n<IfModule mpm_prefork_module>\n# Nombre de processus serveurs fils \u00E0 cr\u00E9er au d\u00E9marrage.\n   StartServers          5\n# Nombre minimum de processus en attente d'intercepter des requ\u00EAtes\n   MinSpareServers       5\n# Nombre maximum de processus en attente
 \n   MaxSpareServers      15\n# Nombre maximum processus fils cr\u00E9\u00E9s\n# pour intercepter les requ\u00EAtes simultan\u00E9ment\n   MaxClients          150\n# Limite le nombre de requ\u00EAte qu'un processus fils intercepte\n# durant son temps de vie. Si 0 alors le processus n'expirera jamais.\n    MaxRequestsPerChild   0\n<\/IfModule>\n\n<IfModule mpm_worker_module>\n    StartServers          2\n    MaxClients          150\n# Nombre minimum de processus en attente d'intercepter les piques de requ\u00EAtes\n    MinSpareThreads      25\n# Nombre maximum de processus en attente\n    MaxSpareThreads      75\n    ThreadsPerChild      25\n    MaxRequestsPerChild   0\n<\/IfModule>\n\n# Utilisateur et Group sous lesquels les processus du serveur seront lanc\u00E9s\nUser machim\nGroup machim\n\n# Fichier de restriction des acc\u00E8s\n# non conseill\u00E9, pr\u00E9ferer les directives internes au fichier de configuration\n# voir [[http:\/\/httpd.apache.org\/docs\/2.2\/howto\/htaccess
 .html]]\nAccessFileName .htaccess\n\n# Les lignes suivantes emp\u00EAchent les fichiers .htaccess et .htpasswd d'\u00EAtre vus\n# par les clients Web (i.e. les navigateurs) .\n<Files ~ \"^\\.ht\">\n    Order allow,deny\n    Deny from all\n    Satisfy All\n<\/Files>\n\n# Restriction de la racine du serveur\n<Directory \/>\n  Order Deny,Allow\n  Deny from all\n  Options None\n  AllowOverride None\n<\/Directory>\n\n# Fichier contenant la liste des conversions des extensions de fichiers vers le type de contenu.\n# par d\u00E9faut ce fichier est reli\u00E9 au contenu enregistr\u00E9 \u00E0 l'IANA. http:\/\/www.iana.org\/assignments\/media-types\/index.html.\nTypesConfig \/etc\/mime.types\n\n# d\u00E9finit le type par d\u00E9faut des fichiers dont le type ne peut \u00EAtre d\u00E9termin\u00E9\n# par le serveur.\n# Il convient de le mettre \u00E0 \"none\" afin de ne pas fournir d'informations erron\u00E9es.\nDefaultType none\n\n# Active la r\u00E9solution DNS pour les noms d'h\u00F4tes\nHo
 stnameLookups Off\n\n# chemin du fichier de log des erreurs du serveur.\nErrorLog \/var\/log\/apache2\/error.log\n\n# niveau de log du serveur\n# emerg      Messages Urgents - Le syst\u00E8me est inutilisable.\n# alert     Messages d'actions qui doivent \u00EAtre effectu\u00E9es imm\u00E9diatement.\n# crit             Messages critiques.\n# error     Messages d'erreurs.\n# warn             Messages d'avertissement.\n# notice     Messages normales mais significatives.\n# info             Messages d'informations.\n# debug     Messages de d\u00E9bogage\nLogLevel warn\n\n# format des lignes contenues dans les logs\n# %a             Adresse ip distante.\n# %A             Adresse ip local.\n# %B             Taille de la r\u00E9ponse en octets, excluant l'ent\u00EAte HTTP.\n# %b             Taille de la r\u00E9ponse en octets, excluant l'ent\u00EAte HTTP au format CLF.\n# %{Foobar}C     Contenu du cookie \"Foobar\" de la requ\u00EAte envoy\u00E9e au serveur.\n# %D             Le temps mis 
 \u00E0 servir la requ\u00EAte .\n# %{FOOBAR}e     Contenue de la variable d'environnement \"FOOBAR\".\n# %f             Nom du fichier.\n# %h             H\u00F4te distant.\n# %H             Le protocole demand\u00E9.\n# %{Foobar}i     Le contenu de \"Foobar\": Ligne(s) d'en-t\u00EAte de la requ\u00EAte envoy\u00E9e au serveur.\n# %l             nom du fichier de log distant (de identd, si il est fournit).\n# cela retournera un tiret tant que \/\/mod_ident\/\/ n'est pas pr\u00E9sent\n# et \/\/IdentityCheck\/\/ n'est pas mis \u00E0 ON.\n# %m             M\u00E9thode de la requ\u00EAte.\n# %{Foobar}n     Contenu de la note \"Foobar\" provenant d'un autre module.\n# %{Foobar}o     Le contenu de \"Foobar\": Ligne(s) d'ent\u00EAte dans la r\u00E9ponse.\n# %p             Port canonique du serveur qui sert la r\u00E9ponse.\n# %P             Id du processus fils qui a servi la requ\u00EAte.\n# %{format}P     Id du processus ou du thread fils qui a servi la requ\u00EAte.\n# Les formats valid
 es sont pid, tid, et hextid.\n# hextid n\u00E9cessite APR 1.2.0 ou sup\u00E9rieur.\n# %q             Cha\u00EEnes de la requ\u00EAte (Commen\u00E7ant avec un ? si une chaine de requ\u00EAte existe, sinon une cha\u00EEne vide)\n# %r             Premi\u00E8re ligne de la requ\u00EAte.\n# %s             Statut. Pour les requ\u00EAte redirig\u00E9es en interne, ceci est la requ\u00EAte originale --- %>s pour la derni\u00E8re.\n# %t             Heure \u00E0 laquelle la requ\u00EAte a \u00E9t\u00E9 re\u00E7ue (format standard anglais mois jour ann\u00E9e )\n# %{format}t     L'heure, au format pr\u00E9cis\u00E9, qui doit \u00EAtre dans les formats de strftime(3). (potentiellement localis\u00E9).\n# %T             Le temps mis pour r\u00E9pondre \u00E0 la requ\u00EAte.\n# %u             Utilisateur distant (de l'authentification; peut \u00EAtre faux si le  code de retour de statut (%s) est 401)\n# %U             Url demand\u00E9e, n'inclue aucune cha\u00EEne de requ\u00EAte.\n# %v          
    Nom canonique de ServerName du serveur qui r\u00E9pond \u00E0 la requ\u00EAte.\n# %V             Nom du serveur en fonction du param\u00E8tre UseCanonicalName.\n# %X             Statut de la connexion une fois la r\u00E9ponse envoy\u00E9e.\n#               X = connexion annul\u00E9e avant la r\u00E9ponse compl\u00E8te.\n#               + = la connexion peut \u00EAtre maintenue apr\u00E8s l'envoi de la r\u00E9ponse.\n#               - = la connexion sera ferm\u00E9e apr\u00E8s l'envoi de la r\u00E9ponse.\n# %I             Octets re\u00E7us, incluant l'ent\u00EAte et la requ\u00EAte, ne peut \u00EAtre nul. Vous devez activer \/\/mod_logio\/\/ pour l'utiliser.\n# %O             Octets envoy\u00E9s, incluant l'ent\u00EAte, ne peut \u00EAtre nul. Vous devez activer \/\/mod_logio\/\/ pour l'utiliser.\n\nLogFormat \"%h %l %u %t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\"\" combined\nLogFormat \"%h %l %u %t \\\"%r\\\" %>s %b\" common\nLogFormat \"%{Referer}i -> %U\" refe
 rer\nLogFormat \"%{User-agent}i\" agent\n\n# ent\u00EAte envoy\u00E9e au client \u00E0 propos du serveur\n# Prod                    Server: Apache\n# Major                   Server: Apache\/2\n# Minor                   Server: Apache\/2.0\n# Min                     Server: Apache\/2.0.41\n# OS                      Server: Apache\/2.0.41 (Unix)\n# Full (ou non sp\u00E9cifi\u00E9)  Server: Apache\/2.0.41 (Unix) PHP\/4.2.2 MyMod\/1.2\nServerTokens Prod\n\n# Pied de page renvoy\u00E9 par le serveur\n# utile afin de d\u00E9terminer quelle est le serveur\n# qui dans une cha\u00EEne (proxy) qui g\u00E9n\u00E8re une erreur\nServerSignature Off\n\n# Inclusion des fichiers, contenus dans le dossier des mods, qui sont activ\u00E9s\nInclude \/etc\/apache2\/mods-enabled\/*.load\nInclude \/etc\/apache2\/mods-enabled\/*.conf\n\n# Inclusion de l'ancien fichier de configuration de apache\n# \u00E0 des fins de compatibilit\u00E9s ascendantes.\nInclude \/etc\/apache2\/httpd.conf\n\n# Inclusion du fich
 ier de configuration des adresses et ports\n# sur lesquels le serveur sera \u00E0 l'\u00E9coute\nInclude \/etc\/apache2\/ports.conf\n\n# Inclusion d'autres fichiers de configuration\nInclude \/etc\/apache2\/conf.d\/\n\n# inclusion des configurations des sites actifs\nInclude \/etc\/apache2\/sites-enabled\/\n\n# Directive des alias\n<IfModule alias_module>\n# alias des icones d'apache\n# nom de l'alias , r\u00E9pertoire vers lequel pointe l'alias\n    Alias \/icons \"\/usr\/share\/apache2\/icons\/\"\n    <Directory \"\/usr\/share\/apache2\/icons\">\n        Options None\n        AllowOverride None\n        Order allow,deny\n        Allow from all\n    <\/Directory>\n\n# alias pour awstats\n    Alias \/awstats-icon \"\/usr\/share\/awstats\/icon\"\n    ScriptAlias \/awstats \"\/usr\/lib\/cgi-bin\/\"\n    <Directory \"\/usr\/share\/awstats\/icon\">\n            Options None\n#Indexes MultiViews\n        AllowOverride None\n        Order allow,deny\n        Allow from all\n    <\/Directo
 ry>\n<\/IfModule>\n\n# Types images d'ic\u00F4ne\n<IfModule mod_autoindex.c>\n\n    IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*\n\n    AddIconByEncoding (CMP,\/icons\/compressed.gif) x-compress x-gzip\n\n    AddIconByType (TXT,\/icons\/text.gif) text\/*\n    AddIconByType (IMG,\/icons\/image2.gif) image\/*\n    AddIconByType (SND,\/icons\/sound2.gif) audio\/*\n    AddIconByType (VID,\/icons\/movie.gif) video\/*\n\n    AddIcon \/icons\/binary.gif .bin .exe\n    AddIcon \/icons\/binhex.gif .hqx\n    AddIcon \/icons\/tar.gif .tar\n    AddIcon \/icons\/world2.gif .wrl .wrl.gz .vrml .vrm .iv\n    AddIcon \/icons\/compressed.gif .Z .z .tgz .gz .zip\n    AddIcon \/icons\/a.gif .ps .ai .eps\n    AddIcon \/icons\/layout.gif .html .shtml .htm .pdf\n    AddIcon \/icons\/text.gif .txt\n    AddIcon \/icons\/c.gif .c\n    AddIcon \/icons\/p.gif .pl .py\n    AddIcon \/icons\/f.gif .for\n    AddIcon \/icons\/dvi.gif .dvi\n    AddIcon \/icons\/uuencoded.gif .uu\n    AddIcon \/icons\
 /script.gif .conf .sh .shar .csh .ksh .tcl\n    AddIcon \/icons\/tex.gif .tex\n    AddIcon \/icons\/bomb.gif core\n\n    AddIcon \/icons\/back.gif ..\n    AddIcon \/icons\/hand.right.gif README\n    AddIcon \/icons\/folder.gif ^^DIRECTORY^^\n    AddIcon \/icons\/blank.gif ^^BLANKICON^^\n\n\n    DefaultIcon \/icons\/unknown.gif\n\n    ReadmeName README.html\n    HeaderName HEADER.html\n\n    IndexIgnore .??* *~ *# RCS CVS *,v *,t\n<\/IfModule>\n\n# Type langages\n<IfModule mod_mime.c>\n    AddType application\/x-compress .Z\n    AddType application\/x-gzip .gz .tgz\n\n    AddLanguage ca .ca\n    AddLanguage cs .cz .cs\n    AddLanguage da .dk\n    AddLanguage de .de\n    AddLanguage el .el\n    AddLanguage en .en\n    AddLanguage eo .eo\n    AddLanguage es .es\n    AddLanguage et .et\n    AddLanguage fr .fr\n    AddLanguage he .he\n    AddLanguage hr .hr\n    AddLanguage it .it\n    AddLanguage ja .ja\n    AddLanguage ko .ko\n    AddLanguage ltz .ltz\n    AddLanguage nl .nl\n    AddLa
 nguage nn .nn\n    AddLanguage no .no\n    AddLanguage pl .po\n    AddLanguage pt .pt\n    AddLanguage pt-BR .pt-br\n    AddLanguage ru .ru\n    AddLanguage sv .sv\n    AddLanguage zh-CN .zh-cn\n    AddLanguage zh-TW .zh-tw\n<\/IfModule>\n\n# Langue prioritaire pour les pages de r\u00E9ponses (choisir l'ordre des langues des pages)\n<IfModule mod_negotiation.c>\n\n    LanguagePriority fr ca cs da de el eo es et en he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW\n\n    ForceLanguagePriority Prefer Fallback\n\n<\/IfModule>\n\n# Type d'encodage de caract\u00E8res\n<IfModule mod_mime.c>\n    AddCharset us-ascii    .ascii .us-ascii\n    AddCharset ISO-8859-1  .iso8859-1  .latin1\n    AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen\n    AddCharset ISO-8859-3  .iso8859-3  .latin3\n    AddCharset ISO-8859-4  .iso8859-4  .latin4\n    AddCharset ISO-8859-5  .iso8859-5  .cyr .iso-ru\n    AddCharset ISO-8859-6  .iso8859-6  .arb .arabic\n    AddCharset ISO-8859-7  .iso8859-7  .grk .gre
 ek\n    AddCharset ISO-8859-8  .iso8859-8  .heb .hebrew\n    AddCharset ISO-8859-9  .iso8859-9  .latin5 .trk\n    AddCharset ISO-8859-10  .iso8859-10  .latin6\n    AddCharset ISO-8859-13  .iso8859-13\n    AddCharset ISO-8859-14  .iso8859-14  .latin8\n    AddCharset ISO-8859-15  .iso8859-15  .latin9\n    AddCharset ISO-8859-16  .iso8859-16  .latin10\n    AddCharset ISO-2022-JP .iso2022-jp .jis\n    AddCharset ISO-2022-KR .iso2022-kr .kis\n    AddCharset ISO-2022-CN .iso2022-cn .cis\n    AddCharset Big5        .Big5       .big5 .b5\n    AddCharset cn-Big5     .cn-big5\n    # For russian, more than one charset is used (depends on client, mostly):\n    AddCharset WINDOWS-1251 .cp-1251   .win-1251\n    AddCharset CP866       .cp866\n    AddCharset KOI8      .koi8\n    AddCharset KOI8-E      .koi8-e\n    AddCharset KOI8-r      .koi8-r .koi8-ru\n    AddCharset KOI8-U      .koi8-u\n    AddCharset KOI8-ru     .koi8-uk .ua\n    AddCharset ISO-10646-UCS-2 .ucs2\n    AddCharset ISO-10646-UCS-4 
 .ucs4\n    AddCharset UTF-7       .utf7\n    AddCharset UTF-8       .utf8\n    AddCharset UTF-16      .utf16\n    AddCharset UTF-16BE    .utf16be\n    AddCharset UTF-16LE    .utf16le\n    AddCharset UTF-32      .utf32\n    AddCharset UTF-32BE    .utf32be\n    AddCharset UTF-32LE    .utf32le\n    AddCharset euc-cn      .euc-cn\n    AddCharset euc-gb      .euc-gb\n    AddCharset euc-jp      .euc-jp\n    AddCharset euc-kr      .euc-kr\n    #Not sure how euc-tw got in - IANA doesn't list it???\n    AddCharset EUC-TW      .euc-tw\n    AddCharset gb2312      .gb2312 .gb\n    AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2\n    AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4\n    AddCharset shift_jis   .shift_jis .sjis\n\n    AddHandler type-map var\n\n    AddType text\/html .shtml\n    AddOutputFilter INCLUDES .shtml\n<\/IfModule>\n\n<IfModule mod_setenvif.c>   \n    BrowserMatch \"Mozilla\/2\" nokeepalive\n    BrowserMatch \"MSIE 4\\.0b2;\" nokeepalive downgrade-1.0 force-response-
 1.0\n    BrowserMatch \"RealPlayer 4\\.0\" force-response-1.0\n    BrowserMatch \"Java\/1\\.0\" force-response-1.0\n    BrowserMatch \"JDK\/1\\.0\" force-response-1.0\n\n    BrowserMatch \"Microsoft Data Access Internet Publishing Provider\" redirect-carefully\n    BrowserMatch \"MS FrontPage\" redirect-carefully\n    BrowserMatch \"^WebDrive\" redirect-carefully\n    BrowserMatch \"^WebDAVFS\/1.[012]\" redirect-carefully\n    BrowserMatch \"^gnome-vfs\/1.0\" redirect-carefully\n    BrowserMatch \"^XML Spy\" redirect-carefully\n    BrowserMatch \"^Dreamweaver-WebDAV-SCM1\" redirect-carefully\n<\/IfModule>\n\n# module d'information sur le statut du serveur\n<IfModule mod_status.c>\n    <Location \/server-status>\n        SetHandler server-status\n        Order deny,allow\n        Deny from all\n        Allow from 127.0.0.1\n    <\/Location>\n<\/IfModule>\n\n# module des informations du serveur\n<IfModule mod_info.c>\n    <Location \/server-info>\n        SetHandler server-info\n     
    Order deny,allow\n        Deny from all\n        Allow from 127.0.0.1\n    <\/Location>\n<\/IfModule>\n\n\/etc\/apache2\/sites-available:\n\n<VirtualHost *:80>\n    # The ServerName directive sets the request scheme, hostname and port that\n    # the server uses to identify itself. This is used when creating\n    # redirection URLs. In the context of virtual hosts, the ServerName\n    # specifies what hostname must appear in the request's Host: header to\n    # match this virtual host. For the default virtual host (this file) this\n    # value is not decisive as it is used as a last resort host regardless.\n    # However, you must set it for any further virtual host explicitly.\n    #ServerName www.example.com\n\n    ServerAdmin webmaster@localhost\n    DocumentRoot \/var\/www\n\n    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,\n    # error, crit, alert, emerg.\n    # It is also possible to configure the loglevel for particular\n    # modules, e.g.\n    
 #LogLevel info ssl:warn\n\n    ErrorLog ${APACHE_LOG_DIR}\/error.log\n    CustomLog ${APACHE_LOG_DIR}\/access.log combined\n\n    # For most configuration files from conf-available\/, which are\n    # enabled or disabled at a global level, it is possible to\n    # include a line for only one particular virtual host. For example the\n    # following line enables the CGI configuration for this host only\n    # after it has been globally disabled with \"a2disconf\".\n    #Include conf-available\/serve-cgi-bin.conf\n<\/VirtualHost>\n\n# vim: syntax=apache ts=4 sw=4 sts=4 sr noet","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e0725913d5034b84","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16374901",
 "links":["http:\/\/httpd.apache.org\/docs\/2.2\/howto\/htaccess.html","http:\/\/www.iana.org\/assignments\/media-types\/index.html","www.example.com"],"siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"name":"machim","username":"machim"},"content":"Oui j'essayais d'installer les paquets ssmtp pour les mails. Puis j'ai fait certaine manipulations. je sais que j'ai fais des mauvaises manipulation mais je ne me rappelle plus. J'ai essay\u00E9 de desinstaller les paquets apache2, phpmyadmin, mysql, php5... pour reinstaller mais rien ne vas. Voila mon fichier \/etc\/apache2\/apache2.conf:\n\n# R\u00E9pertoire Racine du serveur\nServerRoot \"\/etc\/apache2\"\n\n# Fichier de v\u00E9rrouillage (lock) du serveur\n# IL DOIT SE TROUVER SUR LE DISQUE LOCAL\n#<IfModule !mpm_winnt.c>\n#<IfModule !mpm_netware.c>\nLockFile \/var\/lock\/apache2\
 /accept.lock\n#<\/IfModule>\n#<\/IfModule>\n\n# Fichier du PID: endroit o\u00F9, \u00E0 son d\u00E9marrage, apache doit stocker\n# son num\u00E9ro d'identification de processus\nPidFile \/var\/run\/apache2.pid\n\n# Delai d'attente d\u00E9pass\u00E9 : nombre de secondes avant de recevoir et d'envoyer\n# un message de \"D\u00E9lai d'attente d\u00E9pass\u00E9\" (timeout)\nTimeout 300\n\n# Connexion persistante: Alloue ou non les requ\u00EAtes persistantes\n# (plus d'une requ\u00EAte par connexion ).\n# Mettre \u00E0 \"Off\" pour d\u00E9sactiver.\nKeepAlive On\n\n# Nombre Maximum de requ\u00EAtes allou\u00E9es durant une connexion persistante.\n# 0 = non limit\u00E9\n# Il est recommand\u00E9 de garder ce nombre assez haut pour des performances maximales\nMaxKeepAliveRequests 100\n\n# Nombre de secondes d'attente pour la prochaine requ\u00EAte\n# d'un m\u00EAme client sur une m\u00EAme connexion avant un timeout\nKeepAliveTimeout 15\n\n# Configuration du mpm charg\u00E9\n<IfModule mpm_pr
 efork_module>\n# Nombre de processus serveurs fils \u00E0 cr\u00E9er au d\u00E9marrage.\n   StartServers          5\n# Nombre minimum de processus en attente d'intercepter des requ\u00EAtes\n   MinSpareServers       5\n# Nombre maximum de processus en attente\n   MaxSpareServers      15\n# Nombre maximum processus fils cr\u00E9\u00E9s\n# pour intercepter les requ\u00EAtes simultan\u00E9ment\n   MaxClients          150\n# Limite le nombre de requ\u00EAte qu'un processus fils intercepte\n# durant son temps de vie. Si 0 alors le processus n'expirera jamais.\n    MaxRequestsPerChild   0\n<\/IfModule>\n\n<IfModule mpm_worker_module>\n    StartServers          2\n    MaxClients          150\n# Nombre minimum de processus en attente d'intercepter les piques de requ\u00EAtes\n    MinSpareThreads      25\n# Nombre maximum de processus en attente\

<TRUNCATED>

[13/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
new file mode 100644
index 0000000..8f40373
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
@@ -0,0 +1,4136 @@
+{"board":{"anchor":"post8881971","author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"boardname":"Tech Support Guy - Free help for Windows 7, Vista, XP, and more!","categories":"Software","content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\"
  alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisible(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","countrycode":"US","crawled":"Sun, 23 Mar 2014 09:18:13 +0000","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","domain":"www.techguy.org","forumid":"469bbbf115a","forumname":"All Other Software","forumurl":"http:\/\/forums.techguy.org\/18-all-other-software\/","gmt":"-5","id":"1e3b20559a7daa00e072105aaa3de61e","language":"English","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","siteid":"3cbc7f773","thread":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html","threadid":"1122437","title":"Apache Open Office","topics":"Computers","type":"post
 "},"interaction":{"author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\" alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisibl
 e(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","id":"1e3b20559a7daa00e072105aaa3de61e","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","schema":{"version":3},"subtype":"post","title":"Apache Open Office","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-4},"title":{"sentiment":0}}}
+{"board":{"anchor":"post11387078","author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"boardname":"ZWAME F\u00F3rum","categories":"Hardware","content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APACHE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P
 170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIn
 tel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nBluetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","countrycode":"PT","crawled":"Sun, 23 Mar 2014 19:41:39 +0000","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","domain":"www.zwame.pt","forumid":"4e9be0585b","forumname":"Por
 t\u00E1teis","forumurl":"http:\/\/forum.zwame.pt\/forumdisplay.php?f=136","gmt":"+1","id":"1e3b20677c20aa00e072a04d81597bd0","language":"Portuguese","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","siteid":"4e9bdf6356","thread":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2","threadid":"852065","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","topics":"Computers","type":"post"},"interaction":{"author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APAC
 HE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=
 \"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIntel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nB
 luetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","id":"1e3b20677c20aa00e072a04d81597bd0","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","received_at":4743640457867795261,"schema":{"version":3},"subtype":"post","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","type":"board"},"language":{"confidence":66,"tag":"es","tag_extended":"es"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]},{"name":"GE70 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]}],"sentiment":0},"title":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":4,"type":"Place","about":1},{"name":"GE6
 0 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
+{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"boardname":"Questions - Server Fault","categories":"Hardware","content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.ChannelSocket.pause(ChannelSocket.
 java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCaused by: java.net.UnknownHos
 tException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HTTP\/1.1 on http-8080\nMar 2
 2, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol start\nINFO: Starting Coyo
 te HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 08:30:47 +0000","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","domain":"serverfault.com","forumid":"4c8963bd4","forumname":"Forum","forumurl":"http:\/\/serverfault.com\/questions?sort=newest","id":"1e3b20ba2fb2a800e072aadb0d45650a","language":"English","link":"http:\/\/serverfault.com\/q\/583910#","siteid":"4c8963bc2","thread":"http:\/\/serverfault.com\/q\/583910","threadid":"583910","threadstarter":1,"title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: 
 hostname: hostname: Name or service not known","topics":"Computers","type":"thread"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.Channel
 Socket.pause(ChannelSocket.java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCau
 sed by: java.net.UnknownHostException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HT
 TP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol
  start\nINFO: Starting Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","id":"1e3b20ba2fb2a800e072aadb0d45650a","link":"http:\/\/serverfault.com\/q\/583910#","received_at":4743640653856312918,"schema":{"version":3},"subtype":"thread","title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: hostname: hostname: Name or service not known","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Mar 22, 2014","sentiment":-5,"confident":1,"label"
 :"Date","evidence":6,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","tomcat6 service configured","pause INFO","optimal performance","production environments"]},{"name":"INFO","sentiment":-7,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"8080 Mar 22","sentiment":-19,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"6.0.24 Mar 22","sentiment":-17,"confident":1,"label":"Date","evidence":3,"type":"Pattern","about":1,"themes":["optimal performance","production environments","previous errors","init INFO","ajp13 listening"]},{"name":"8009 Mar 22","sentiment":-7,"confident":1,"label":"Date","evidence":5,"type":"Pattern","about":0,"themes":["previous error
 s","init INFO","ajp13 listening"]}],"sentiment":-2},"title":{"sentiment":-5}}}
+{"board":{"anchor":"117232","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":
 "html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04:35:09 +0000","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20c55cb8a600e0722dd61ff7876a","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"content":"<div class=\"kmsgtext\">\n\
 t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","id":"1e3b20c55cb8a600e0722dd61ff7876a","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"sa
 lience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.58399718999863,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Automotriz","score":0.57611888647079,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9
 n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Energ\u00EDa natural","score":0.4619414806366,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u
 00E9 comentando como me va con ella.","hits":0}]},"title":{"sentiment":0}}}
+{"board":{"anchor":"117233","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"kmsgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les s
 eguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04
 :35:10 +0000","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20eb5c32ac00e072bf86636ba614","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"km
 sgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y q
 ue no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","id":"1e3b20eb5c32ac00e072bf86636ba614","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.54232031106949,"additional":"KrOnK89 
 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser u
 n da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Automotriz","score":0.52735489606857,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\
 u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... por que veo que te quedas sin moto hasta que te la arreglen.","hits":0},{"name":"Ciencia","score":0.52646517753601,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema inf
 inito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Inmobiliaria","score":0.49977034330368,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\
 u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0}]},"title":{"sentiment":0}}}
+{"board":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"boardname":"\u767E\u5EA6\u77E5\u9053 - \u5168\u7403\u6700\u5927\u4E2D\u6587\u4E92\u52A8\u95EE\u7B54\u5E73\u53F0","categories":"General Talk","content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=\"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","conten
 ttype":"html","countrycode":"CN","crawled":"Sun, 23 Mar 2014 09:26:43 +0000","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","domain":"zhidao.baidu.com","forumid":"52c374722","forumname":"\u670D\u52A1\u5668\u8F6F\u4EF6","forumurl":"http:\/\/zhidao.baidu.com\/browse\/1245","gmt":"-8","id":"1e3b21086adbaa00e0726da0291633ce","language":"Chinese - Simplified","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","siteid":"52bca2440","thread":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html","threadid":"2074162451508708028","threadstarter":1,"title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","topics":"Social","type":"thread"},"interaction":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=
 \"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","id":"1e3b21086adbaa00e0726da0291633ce","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","received_at":4743640302542788965,"schema":{"version":3},"subtype":"thread","title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","type":"board"},"language":{"confidence":79,"tag":"zh","tag_extended":"zh-cn"}}
+{"board":{"anchor":"entry746084","author":{"link":"http:\/\/forums.pcworld.com\/index.php?\/user\/549576-goforit\/","name":"GOFORIT","registered":"Sat, 22 Mar 2014 00:00:00 +0000","username":"GOFORIT"},"boardname":"PC World","categories":"Hardware","content":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\n\t\t\t\t\t\t\n\t\t\t\t\t\t<br \/>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 04:14:57 +0000","created_at":"Sat, 22 Mar 2014 14:24:00 -0800","domain":"www.pcworld.com","forumid":"4b4147791c6","forumname":"Laptops","forumurl":"http:\/\/forums.pcworld.com\/index.php?\/forum\/2005-laptops\/","gmt":"-8","id":"1e3b210aa710a000e072ee89b1bdcb58","language":"English","link":"http:\/\/forums.pcworld.com\/index.php?\/topic\/169738-msi-ge60-apac
 he-033-vs-asus-g750jw-nh71\/#entry746084","siteid":"450b0aed0","thread":"http:\/\/forums.pcworld.com\/index.php?\/topic\/169738-msi-ge60-apache-033-vs-asus-g750jw-nh71\/","threadid":"169738","threadstarter":1,"title":"Msi Ge60 Apache-033 Vs Asus G750jw-nh71","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"http:\/\/forums.pcworld.com\/index.php?\/user\/549576-goforit\/","name":"GOFORIT","registered":"Sat, 22 Mar 2014 00:00:00 +0000","username":"GOFORIT"},"content":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\n\t\t\t\t\t\t\n\t\t\t\t\t\t<br \/>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:24:00 -0800","id":"1e3b210aa710a000e072ee89b1bdcb58","link":"http:\/\/forums.pcworld.com\/index.php?\/topic\/169738-msi-ge60-apache-033-vs-as
 us-g750jw-nh71\/#entry746084","received_at":4743640586005838089,"schema":{"version":3},"subtype":"thread","title":"Msi Ge60 Apache-033 Vs Asus G750jw-nh71","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["gaming laptop"]}],"sentiment":2,"topics":[{"name":"Video Games","score":0.57882922887802,"additional":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!","hits":0},{"name":"Mobile Devices","score":0.55213981866837,"additional":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus 
 is a 17 inch and that the MSI has the newer Nvidia graphics card.","hits":0},{"name":"Hardware","score":0.48072889447211997,"additional":"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!","hits":0}]},"title":{"sentiment":0}}}
+{"board":{"anchor":"answer-1623235828","author":{"name":"Anonymous","username":"Anonymous"},"boardname":"\u767E\u5EA6\u77E5\u9053 - \u5168\u7403\u6700\u5927\u4E2D\u6587\u4E92\u52A8\u95EE\u7B54\u5E73\u53F0","categories":"General Talk","content":"<pre id=\"answer-content-1623235828\" accuse=\"aContent\" class=\"answer-text mb-10\">\u771F\u5B9E<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">\u9519\u8BEF<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/comma.png\" class=\"word-replace\">\u5374<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/shi.png\" class=\"word-replace\">\u7B2C2\u5E45\u56FE<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">JDBC\u8FDE\u63A5MYSQL\u9519<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/sigh.png\" class=\"word-replace\">MYSQL<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/bu.png\" class=\"word-replace\">\u5141\u8BB8\u7F51\u7EDC\u8BBF\u95EE<\/pre>",
 "contenttype":"html","countrycode":"CN","crawled":"Wed, 26 Mar 2014 04:29:29 +0000","created_at":"Sat, 22 Mar 2014 14:49:00 -0800","domain":"zhidao.baidu.com","forumid":"52c3747313","forumname":"JAVA\u76F8\u5173","forumurl":"http:\/\/zhidao.baidu.com\/browse\/870","gmt":"-8","id":"1e3b2142882da600e0728adaf869aa08","language":"Chinese - Simplified","link":"http:\/\/zhidao.baidu.com\/question\/710806556482464405.html#answer-1623235828","siteid":"52bca2440","thread":"http:\/\/zhidao.baidu.com\/question\/710806556482464405.html","threadid":"710806556482464405","title":"org.apache.jasper.JasperException: An exception occurred processing JSP page \/index.jsp at line 7","topics":"Social","type":"post"},"interaction":{"author":{"name":"Anonymous","username":"Anonymous"},"content":"<pre id=\"answer-content-1623235828\" accuse=\"aContent\" class=\"answer-text mb-10\">\u771F\u5B9E<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">\u9519\u8BEF<img src=\"htt
 p:\/\/img.iknow.bdimg.com\/question\/word\/comma.png\" class=\"word-replace\">\u5374<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/shi.png\" class=\"word-replace\">\u7B2C2\u5E45\u56FE<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/de.png\" class=\"word-replace\">JDBC\u8FDE\u63A5MYSQL\u9519<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/sigh.png\" class=\"word-replace\">MYSQL<img src=\"http:\/\/img.iknow.bdimg.com\/question\/word\/bu.png\" class=\"word-replace\">\u5141\u8BB8\u7F51\u7EDC\u8BBF\u95EE<\/pre>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:49:00 -0800","id":"1e3b2142882da600e0728adaf869aa08","link":"http:\/\/zhidao.baidu.com\/question\/710806556482464405.html#answer-1623235828","schema":{"version":3},"subtype":"post","title":"org.apache.jasper.JasperException: An exception occurred processing JSP page \/index.jsp at line 7","type":"board"},"language":{"confidence":68,"tag":"zh","tag_extended":"zh-cn"}}
+{"board":{"anchor":"post9602941","author":{"avatar":"http:\/\/forum.notebookreview.com\/image.php?u=57204&dateline=1311870329","link":"http:\/\/forum.notebookreview.com\/member.php?u=57204","location":"Miami Beach","name":"adyghost","registered":"Thu, 01 Mar 2007 00:00:00 +0000","username":"adyghost"},"boardname":"Laptop Forums and Notebook Computer Discussion","categories":"Hardware","content":"<div class=\"postrow has_after_content\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_9602941\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tIt's strange to me that the GE70 Apache has Windows 7 driver support but not the GE60... Most drivers seem to be the same in any case, with a few differences.\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"after_content\">\n\t\t\t\t\n\t\t\t\t<div class=\"vbseo
 _buttons\" id=\"lkbtn_1.748085.9602941\">\n\n    <\/ul>\n    <\/li>\n    \n    \n    \n    <\/ul>\n    \n    \n\n\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sun, 23 Mar 2014 06:54:08 +0000","created_at":"Sat, 22 Mar 2014 17:54:00 -0500","domain":"www.notebookreview.com","forumid":"4d810a673a7","forumname":"MSI","forumurl":"http:\/\/forum.notebookreview.com\/msi\/","gmt":"-5","id":"1e3b214db533a400e0728c679fd74da0","language":"English","link":"http:\/\/forum.notebookreview.com\/msi\/748085-ge60-apache-pro-questions.html#post9602941","siteid":"42ed25c80","thread":"http:\/\/forum.notebookreview.com\/msi\/748085-ge60-apache-pro-questions.html","threadid":"748085","title":"GE60 Apache Pro Questions","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.notebookreview.com\/image.php?u=57204&dateline=1311870329","link":"http:\/\/forum.notebookreview.com\/member.php?u=57204","location":"Miami Beach","name":"adyghost","registered":"Thu, 01 Ma
 r 2007 00:00:00 +0000","username":"adyghost"},"content":"<div class=\"postrow has_after_content\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_9602941\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tIt's strange to me that the GE70 Apache has Windows 7 driver support but not the GE60... Most drivers seem to be the same in any case, with a few differences.\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"after_content\">\n\t\t\t\t\n\t\t\t\t<div class=\"vbseo_buttons\" id=\"lkbtn_1.748085.9602941\">\n\n    <\/ul>\n    <\/li>\n    \n    \n    \n    <\/ul>\n    \n    \n\n\n<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 17:54:00 -0500","id":"1e3b214db533a400e0728c679fd74da0","link":"http:\/\/forum.notebookreview.com\/msi\/748085-ge60-apache-pro-questions.html#post9602941","received_a
 t":4743640264593543004,"schema":{"version":3},"subtype":"post","title":"GE60 Apache Pro Questions","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-3},"title":{"sentiment":0}}}
+{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"boardname":"Questions - Stack Overflow","categories":"Software","content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"postProcress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont
  understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 08:40:38 +0000","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","domain":"stackoverflow.com","forumid":"4e72d61036","forumname":"Active Forum","forumurl":"
 http:\/\/stackoverflow.com\/questions?sort=active","id":"1e3b214ff167aa00e0722e47b361eb38","language":"English","link":"http:\/\/stackoverflow.com\/q\/22567844#","siteid":"4b70e7b27","thread":"http:\/\/stackoverflow.com\/q\/22567844","threadid":"22567844","title":"Apache camel : Multithreading in route","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"post
 Procress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the 
 time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","id":"1e3b214ff167aa00e0722e47b361eb38","link":"http:\/\/stackoverflow.com\/q\/22567844#","received_at":4743640655020782990,"schema":{"version":3},"subtype":"post","title":"Apache camel : Multithreading in route","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"\"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\" String postProcessor = \"","sentiment":0,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0},{"name":"\"someId\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"bean:somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"postProcress\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","abou
 t":0},{"name":"\"bean:postProcessorBean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"Somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["incorrect results","problem statement"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["problem statement"]}],"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
+{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"boardname":"Questions - Stack Overflow","categories":"Software","content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"postProcress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont
  understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","countrycode":"US","crawled":"Sun, 06 Apr 2014 19:49:39 +0000","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","domain":"stackoverflow.com","forumid":"4e72d61036","forumname":"Active Forum","forumurl":"
 http:\/\/stackoverflow.com\/questions?sort=active","id":"1e3b214ff167aa00e072ccc892a03c12","language":"English","link":"http:\/\/stackoverflow.com\/q\/22567844#","siteid":"4b70e7b27","thread":"http:\/\/stackoverflow.com\/q\/22567844","threadid":"22567844","title":"Apache camel : Multithreading in route","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1","link":"http:\/\/stackoverflow.com\/users\/3447812\/user3447812","name":"user3447812","username":"user3447812"},"content":"<blockquote>\n  <p>String processFiles= \"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\"<\/p>\n  \n  <p>String postProcessor = \"file:\/\/somedirectory\/inprogress\";  <\/p>\n  \n  <p>from(processFiles)\n      .threads(10)\n      .routeId(\"someId\")<br>\n      .to(\"bean:somebean\");<\/p>\n  \n  <p>from(postProcessor)\n      .routeId(\"post
 Procress\")\n      .to(\"bean:postProcessorBean\");<\/p>\n<\/blockquote>\n\n<p>Reading files from certain location using multiple threads. Then processing is done in \"somebean\".<\/p>\n\n<p>Now, i want to do some post processing once all the threads completes first route.\ni dont understand when exactly to call postprocessor.\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \"Somebean\" is completed by all the threads.\nI want to know how do i call postProcess once all the threads finish \"somebean\"<\/p>\n\n<p>Just to give a problem statement : \n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \n2. Once done update status in other table. <\/p>\n\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \nNow with this we are able to minimize the 
 time but not able to do postprocessing (i.e step 2 )<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:55:00 +0000","id":"1e3b214ff167aa00e072ccc892a03c12","link":"http:\/\/stackoverflow.com\/q\/22567844#","received_at":4743645545817667587,"schema":{"version":3},"subtype":"post","title":"Apache camel : Multithreading in route","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"\"file:\/\/somedirectory?readLock=rename&preMove=inprogress\/&move=..\/processed\/&moveFailed=..\/error\/\" String postProcessor = \"","sentiment":0,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0},{"name":"\"someId\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"bean:somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0},{"name":"\"postProcress\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","abou
 t":0},{"name":"\"bean:postProcessorBean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["certain location","multiple threads"]},{"name":"\"Somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["incorrect results","problem statement"]},{"name":"\"somebean\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["problem statement"]}],"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
+{"board":{"anchor":"p16374741","author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"<p>Comme je t&#039;ai dit, pourquoi veux tu red\u00E9marrer apache ?<\/p><p>Est ce que tu as param\u00E9tr\u00E9 quelque chose dans Apache ? Si oui, c&#039;est la manip que tu as faite qui doit planter ton syst\u00E8me.<\/p>","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e07217a3ca61bff8","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16374741","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissan
 ce d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"content":"<p>Comme je t&#039;ai dit, pourquoi veux tu red\u00E9marrer apache ?<\/p><p>Est ce que tu as param\u00E9tr\u00E9 quelque chose dans Apache ? Si oui, c&#039;est la manip que tu as faite qui doit planter ton syst\u00E8me.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e07217a3ca61bff8","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16374741","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["chose dans Apache","ton syst\u00E8me"]}],"sentiment":0},"title":{"entities":[{"name":"A
 pache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
+{"board":{"anchor":"p16373871","author":{"name":"machim","username":"machim"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"<p>\u00E7a ve dire!!!<\/p>","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e07235753fc71602","language":"Unknown","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373871","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"name":"machim","username":"machim"},"content":"<p>\u00E7a ve dire!!!<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e07235753fc71602","link":"http:\/\
 /forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373871","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":92,"tag":"fr","tag_extended":"fr"},"salience":{"title":{"entities":[{"name":"Apache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
+{"board":{"anchor":"p16373841","author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"dans un  premier temps :\n\nsudo \/etc\/...\n\nSinon, j'ai bien l'impression qu'Apache n'est pas sur ta machine. (Les fichiers sont l\u00E0 ?)\n\nDerni\u00E8re modification par nolem (Hier \u00E0 12:15)","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e072412679e481b8","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373841","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":
 "Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"content":"dans un  premier temps :\n\nsudo \/etc\/...\n\nSinon, j'ai bien l'impression qu'Apache n'est pas sur ta machine. (Les fichiers sont l\u00E0 ?)\n\nDerni\u00E8re modification par nolem (Hier \u00E0 12:15)","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e072412679e481b8","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16373841","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":3},"title":{"entities":[{"name":"Apache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
+{"board":{"anchor":"p16378041","author":{"avatar":"http:\/\/forum.ubuntu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"<p>Si tu veux d\u00E9sinstaller compl\u00E8tement, il faut purger. Je pense que tu devras passer par cette \u00E9tape.<\/p>","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e0724979ede06068","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16378041","siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"avatar":"http:\/\/forum.ub
 untu-fr.org\/img\/avatars\/151067.png?m=1392158364","name":"nolem","username":"nolem"},"content":"<p>Si tu veux d\u00E9sinstaller compl\u00E8tement, il faut purger. Je pense que tu devras passer par cette \u00E9tape.<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","id":"1e3b215b1e6da800e0724979ede06068","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16378041","schema":{"version":3},"subtype":"post","title":"Non reconnaissance d'Apache","type":"board"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":-3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["reconnaissance d'Apache"]}],"sentiment":-3}}}
+{"board":{"anchor":"p16374901","author":{"name":"machim","username":"machim"},"boardname":"Forum Ubuntu-fr.org","categories":"Software","content":"Oui j'essayais d'installer les paquets ssmtp pour les mails. Puis j'ai fait certaine manipulations. je sais que j'ai fais des mauvaises manipulation mais je ne me rappelle plus. J'ai essay\u00E9 de desinstaller les paquets apache2, phpmyadmin, mysql, php5... pour reinstaller mais rien ne vas. Voila mon fichier \/etc\/apache2\/apache2.conf:\n\n# R\u00E9pertoire Racine du serveur\nServerRoot \"\/etc\/apache2\"\n\n# Fichier de v\u00E9rrouillage (lock) du serveur\n# IL DOIT SE TROUVER SUR LE DISQUE LOCAL\n#<IfModule !mpm_winnt.c>\n#<IfModule !mpm_netware.c>\nLockFile \/var\/lock\/apache2\/accept.lock\n#<\/IfModule>\n#<\/IfModule>\n\n# Fichier du PID: endroit o\u00F9, \u00E0 son d\u00E9marrage, apache doit stocker\n# son num\u00E9ro d'identification de processus\nPidFile \/var\/run\/apache2.pid\n\n# Delai d'attente d\u00E9pass\u00E9 : nombre d
 e secondes avant de recevoir et d'envoyer\n# un message de \"D\u00E9lai d'attente d\u00E9pass\u00E9\" (timeout)\nTimeout 300\n\n# Connexion persistante: Alloue ou non les requ\u00EAtes persistantes\n# (plus d'une requ\u00EAte par connexion ).\n# Mettre \u00E0 \"Off\" pour d\u00E9sactiver.\nKeepAlive On\n\n# Nombre Maximum de requ\u00EAtes allou\u00E9es durant une connexion persistante.\n# 0 = non limit\u00E9\n# Il est recommand\u00E9 de garder ce nombre assez haut pour des performances maximales\nMaxKeepAliveRequests 100\n\n# Nombre de secondes d'attente pour la prochaine requ\u00EAte\n# d'un m\u00EAme client sur une m\u00EAme connexion avant un timeout\nKeepAliveTimeout 15\n\n# Configuration du mpm charg\u00E9\n<IfModule mpm_prefork_module>\n# Nombre de processus serveurs fils \u00E0 cr\u00E9er au d\u00E9marrage.\n   StartServers          5\n# Nombre minimum de processus en attente d'intercepter des requ\u00EAtes\n   MinSpareServers       5\n# Nombre maximum de processus en attente
 \n   MaxSpareServers      15\n# Nombre maximum processus fils cr\u00E9\u00E9s\n# pour intercepter les requ\u00EAtes simultan\u00E9ment\n   MaxClients          150\n# Limite le nombre de requ\u00EAte qu'un processus fils intercepte\n# durant son temps de vie. Si 0 alors le processus n'expirera jamais.\n    MaxRequestsPerChild   0\n<\/IfModule>\n\n<IfModule mpm_worker_module>\n    StartServers          2\n    MaxClients          150\n# Nombre minimum de processus en attente d'intercepter les piques de requ\u00EAtes\n    MinSpareThreads      25\n# Nombre maximum de processus en attente\n    MaxSpareThreads      75\n    ThreadsPerChild      25\n    MaxRequestsPerChild   0\n<\/IfModule>\n\n# Utilisateur et Group sous lesquels les processus du serveur seront lanc\u00E9s\nUser machim\nGroup machim\n\n# Fichier de restriction des acc\u00E8s\n# non conseill\u00E9, pr\u00E9ferer les directives internes au fichier de configuration\n# voir [[http:\/\/httpd.apache.org\/docs\/2.2\/howto\/htaccess
 .html]]\nAccessFileName .htaccess\n\n# Les lignes suivantes emp\u00EAchent les fichiers .htaccess et .htpasswd d'\u00EAtre vus\n# par les clients Web (i.e. les navigateurs) .\n<Files ~ \"^\\.ht\">\n    Order allow,deny\n    Deny from all\n    Satisfy All\n<\/Files>\n\n# Restriction de la racine du serveur\n<Directory \/>\n  Order Deny,Allow\n  Deny from all\n  Options None\n  AllowOverride None\n<\/Directory>\n\n# Fichier contenant la liste des conversions des extensions de fichiers vers le type de contenu.\n# par d\u00E9faut ce fichier est reli\u00E9 au contenu enregistr\u00E9 \u00E0 l'IANA. http:\/\/www.iana.org\/assignments\/media-types\/index.html.\nTypesConfig \/etc\/mime.types\n\n# d\u00E9finit le type par d\u00E9faut des fichiers dont le type ne peut \u00EAtre d\u00E9termin\u00E9\n# par le serveur.\n# Il convient de le mettre \u00E0 \"none\" afin de ne pas fournir d'informations erron\u00E9es.\nDefaultType none\n\n# Active la r\u00E9solution DNS pour les noms d'h\u00F4tes\nHo
 stnameLookups Off\n\n# chemin du fichier de log des erreurs du serveur.\nErrorLog \/var\/log\/apache2\/error.log\n\n# niveau de log du serveur\n# emerg      Messages Urgents - Le syst\u00E8me est inutilisable.\n# alert     Messages d'actions qui doivent \u00EAtre effectu\u00E9es imm\u00E9diatement.\n# crit             Messages critiques.\n# error     Messages d'erreurs.\n# warn             Messages d'avertissement.\n# notice     Messages normales mais significatives.\n# info             Messages d'informations.\n# debug     Messages de d\u00E9bogage\nLogLevel warn\n\n# format des lignes contenues dans les logs\n# %a             Adresse ip distante.\n# %A             Adresse ip local.\n# %B             Taille de la r\u00E9ponse en octets, excluant l'ent\u00EAte HTTP.\n# %b             Taille de la r\u00E9ponse en octets, excluant l'ent\u00EAte HTTP au format CLF.\n# %{Foobar}C     Contenu du cookie \"Foobar\" de la requ\u00EAte envoy\u00E9e au serveur.\n# %D             Le temps mis 
 \u00E0 servir la requ\u00EAte .\n# %{FOOBAR}e     Contenue de la variable d'environnement \"FOOBAR\".\n# %f             Nom du fichier.\n# %h             H\u00F4te distant.\n# %H             Le protocole demand\u00E9.\n# %{Foobar}i     Le contenu de \"Foobar\": Ligne(s) d'en-t\u00EAte de la requ\u00EAte envoy\u00E9e au serveur.\n# %l             nom du fichier de log distant (de identd, si il est fournit).\n# cela retournera un tiret tant que \/\/mod_ident\/\/ n'est pas pr\u00E9sent\n# et \/\/IdentityCheck\/\/ n'est pas mis \u00E0 ON.\n# %m             M\u00E9thode de la requ\u00EAte.\n# %{Foobar}n     Contenu de la note \"Foobar\" provenant d'un autre module.\n# %{Foobar}o     Le contenu de \"Foobar\": Ligne(s) d'ent\u00EAte dans la r\u00E9ponse.\n# %p             Port canonique du serveur qui sert la r\u00E9ponse.\n# %P             Id du processus fils qui a servi la requ\u00EAte.\n# %{format}P     Id du processus ou du thread fils qui a servi la requ\u00EAte.\n# Les formats valid
 es sont pid, tid, et hextid.\n# hextid n\u00E9cessite APR 1.2.0 ou sup\u00E9rieur.\n# %q             Cha\u00EEnes de la requ\u00EAte (Commen\u00E7ant avec un ? si une chaine de requ\u00EAte existe, sinon une cha\u00EEne vide)\n# %r             Premi\u00E8re ligne de la requ\u00EAte.\n# %s             Statut. Pour les requ\u00EAte redirig\u00E9es en interne, ceci est la requ\u00EAte originale --- %>s pour la derni\u00E8re.\n# %t             Heure \u00E0 laquelle la requ\u00EAte a \u00E9t\u00E9 re\u00E7ue (format standard anglais mois jour ann\u00E9e )\n# %{format}t     L'heure, au format pr\u00E9cis\u00E9, qui doit \u00EAtre dans les formats de strftime(3). (potentiellement localis\u00E9).\n# %T             Le temps mis pour r\u00E9pondre \u00E0 la requ\u00EAte.\n# %u             Utilisateur distant (de l'authentification; peut \u00EAtre faux si le  code de retour de statut (%s) est 401)\n# %U             Url demand\u00E9e, n'inclue aucune cha\u00EEne de requ\u00EAte.\n# %v          
    Nom canonique de ServerName du serveur qui r\u00E9pond \u00E0 la requ\u00EAte.\n# %V             Nom du serveur en fonction du param\u00E8tre UseCanonicalName.\n# %X             Statut de la connexion une fois la r\u00E9ponse envoy\u00E9e.\n#               X = connexion annul\u00E9e avant la r\u00E9ponse compl\u00E8te.\n#               + = la connexion peut \u00EAtre maintenue apr\u00E8s l'envoi de la r\u00E9ponse.\n#               - = la connexion sera ferm\u00E9e apr\u00E8s l'envoi de la r\u00E9ponse.\n# %I             Octets re\u00E7us, incluant l'ent\u00EAte et la requ\u00EAte, ne peut \u00EAtre nul. Vous devez activer \/\/mod_logio\/\/ pour l'utiliser.\n# %O             Octets envoy\u00E9s, incluant l'ent\u00EAte, ne peut \u00EAtre nul. Vous devez activer \/\/mod_logio\/\/ pour l'utiliser.\n\nLogFormat \"%h %l %u %t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-Agent}i\\\"\" combined\nLogFormat \"%h %l %u %t \\\"%r\\\" %>s %b\" common\nLogFormat \"%{Referer}i -> %U\" refe
 rer\nLogFormat \"%{User-agent}i\" agent\n\n# ent\u00EAte envoy\u00E9e au client \u00E0 propos du serveur\n# Prod                    Server: Apache\n# Major                   Server: Apache\/2\n# Minor                   Server: Apache\/2.0\n# Min                     Server: Apache\/2.0.41\n# OS                      Server: Apache\/2.0.41 (Unix)\n# Full (ou non sp\u00E9cifi\u00E9)  Server: Apache\/2.0.41 (Unix) PHP\/4.2.2 MyMod\/1.2\nServerTokens Prod\n\n# Pied de page renvoy\u00E9 par le serveur\n# utile afin de d\u00E9terminer quelle est le serveur\n# qui dans une cha\u00EEne (proxy) qui g\u00E9n\u00E8re une erreur\nServerSignature Off\n\n# Inclusion des fichiers, contenus dans le dossier des mods, qui sont activ\u00E9s\nInclude \/etc\/apache2\/mods-enabled\/*.load\nInclude \/etc\/apache2\/mods-enabled\/*.conf\n\n# Inclusion de l'ancien fichier de configuration de apache\n# \u00E0 des fins de compatibilit\u00E9s ascendantes.\nInclude \/etc\/apache2\/httpd.conf\n\n# Inclusion du fich
 ier de configuration des adresses et ports\n# sur lesquels le serveur sera \u00E0 l'\u00E9coute\nInclude \/etc\/apache2\/ports.conf\n\n# Inclusion d'autres fichiers de configuration\nInclude \/etc\/apache2\/conf.d\/\n\n# inclusion des configurations des sites actifs\nInclude \/etc\/apache2\/sites-enabled\/\n\n# Directive des alias\n<IfModule alias_module>\n# alias des icones d'apache\n# nom de l'alias , r\u00E9pertoire vers lequel pointe l'alias\n    Alias \/icons \"\/usr\/share\/apache2\/icons\/\"\n    <Directory \"\/usr\/share\/apache2\/icons\">\n        Options None\n        AllowOverride None\n        Order allow,deny\n        Allow from all\n    <\/Directory>\n\n# alias pour awstats\n    Alias \/awstats-icon \"\/usr\/share\/awstats\/icon\"\n    ScriptAlias \/awstats \"\/usr\/lib\/cgi-bin\/\"\n    <Directory \"\/usr\/share\/awstats\/icon\">\n            Options None\n#Indexes MultiViews\n        AllowOverride None\n        Order allow,deny\n        Allow from all\n    <\/Directo
 ry>\n<\/IfModule>\n\n# Types images d'ic\u00F4ne\n<IfModule mod_autoindex.c>\n\n    IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*\n\n    AddIconByEncoding (CMP,\/icons\/compressed.gif) x-compress x-gzip\n\n    AddIconByType (TXT,\/icons\/text.gif) text\/*\n    AddIconByType (IMG,\/icons\/image2.gif) image\/*\n    AddIconByType (SND,\/icons\/sound2.gif) audio\/*\n    AddIconByType (VID,\/icons\/movie.gif) video\/*\n\n    AddIcon \/icons\/binary.gif .bin .exe\n    AddIcon \/icons\/binhex.gif .hqx\n    AddIcon \/icons\/tar.gif .tar\n    AddIcon \/icons\/world2.gif .wrl .wrl.gz .vrml .vrm .iv\n    AddIcon \/icons\/compressed.gif .Z .z .tgz .gz .zip\n    AddIcon \/icons\/a.gif .ps .ai .eps\n    AddIcon \/icons\/layout.gif .html .shtml .htm .pdf\n    AddIcon \/icons\/text.gif .txt\n    AddIcon \/icons\/c.gif .c\n    AddIcon \/icons\/p.gif .pl .py\n    AddIcon \/icons\/f.gif .for\n    AddIcon \/icons\/dvi.gif .dvi\n    AddIcon \/icons\/uuencoded.gif .uu\n    AddIcon \/icons\
 /script.gif .conf .sh .shar .csh .ksh .tcl\n    AddIcon \/icons\/tex.gif .tex\n    AddIcon \/icons\/bomb.gif core\n\n    AddIcon \/icons\/back.gif ..\n    AddIcon \/icons\/hand.right.gif README\n    AddIcon \/icons\/folder.gif ^^DIRECTORY^^\n    AddIcon \/icons\/blank.gif ^^BLANKICON^^\n\n\n    DefaultIcon \/icons\/unknown.gif\n\n    ReadmeName README.html\n    HeaderName HEADER.html\n\n    IndexIgnore .??* *~ *# RCS CVS *,v *,t\n<\/IfModule>\n\n# Type langages\n<IfModule mod_mime.c>\n    AddType application\/x-compress .Z\n    AddType application\/x-gzip .gz .tgz\n\n    AddLanguage ca .ca\n    AddLanguage cs .cz .cs\n    AddLanguage da .dk\n    AddLanguage de .de\n    AddLanguage el .el\n    AddLanguage en .en\n    AddLanguage eo .eo\n    AddLanguage es .es\n    AddLanguage et .et\n    AddLanguage fr .fr\n    AddLanguage he .he\n    AddLanguage hr .hr\n    AddLanguage it .it\n    AddLanguage ja .ja\n    AddLanguage ko .ko\n    AddLanguage ltz .ltz\n    AddLanguage nl .nl\n    AddLa
 nguage nn .nn\n    AddLanguage no .no\n    AddLanguage pl .po\n    AddLanguage pt .pt\n    AddLanguage pt-BR .pt-br\n    AddLanguage ru .ru\n    AddLanguage sv .sv\n    AddLanguage zh-CN .zh-cn\n    AddLanguage zh-TW .zh-tw\n<\/IfModule>\n\n# Langue prioritaire pour les pages de r\u00E9ponses (choisir l'ordre des langues des pages)\n<IfModule mod_negotiation.c>\n\n    LanguagePriority fr ca cs da de el eo es et en he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW\n\n    ForceLanguagePriority Prefer Fallback\n\n<\/IfModule>\n\n# Type d'encodage de caract\u00E8res\n<IfModule mod_mime.c>\n    AddCharset us-ascii    .ascii .us-ascii\n    AddCharset ISO-8859-1  .iso8859-1  .latin1\n    AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen\n    AddCharset ISO-8859-3  .iso8859-3  .latin3\n    AddCharset ISO-8859-4  .iso8859-4  .latin4\n    AddCharset ISO-8859-5  .iso8859-5  .cyr .iso-ru\n    AddCharset ISO-8859-6  .iso8859-6  .arb .arabic\n    AddCharset ISO-8859-7  .iso8859-7  .grk .gre
 ek\n    AddCharset ISO-8859-8  .iso8859-8  .heb .hebrew\n    AddCharset ISO-8859-9  .iso8859-9  .latin5 .trk\n    AddCharset ISO-8859-10  .iso8859-10  .latin6\n    AddCharset ISO-8859-13  .iso8859-13\n    AddCharset ISO-8859-14  .iso8859-14  .latin8\n    AddCharset ISO-8859-15  .iso8859-15  .latin9\n    AddCharset ISO-8859-16  .iso8859-16  .latin10\n    AddCharset ISO-2022-JP .iso2022-jp .jis\n    AddCharset ISO-2022-KR .iso2022-kr .kis\n    AddCharset ISO-2022-CN .iso2022-cn .cis\n    AddCharset Big5        .Big5       .big5 .b5\n    AddCharset cn-Big5     .cn-big5\n    # For russian, more than one charset is used (depends on client, mostly):\n    AddCharset WINDOWS-1251 .cp-1251   .win-1251\n    AddCharset CP866       .cp866\n    AddCharset KOI8      .koi8\n    AddCharset KOI8-E      .koi8-e\n    AddCharset KOI8-r      .koi8-r .koi8-ru\n    AddCharset KOI8-U      .koi8-u\n    AddCharset KOI8-ru     .koi8-uk .ua\n    AddCharset ISO-10646-UCS-2 .ucs2\n    AddCharset ISO-10646-UCS-4 
 .ucs4\n    AddCharset UTF-7       .utf7\n    AddCharset UTF-8       .utf8\n    AddCharset UTF-16      .utf16\n    AddCharset UTF-16BE    .utf16be\n    AddCharset UTF-16LE    .utf16le\n    AddCharset UTF-32      .utf32\n    AddCharset UTF-32BE    .utf32be\n    AddCharset UTF-32LE    .utf32le\n    AddCharset euc-cn      .euc-cn\n    AddCharset euc-gb      .euc-gb\n    AddCharset euc-jp      .euc-jp\n    AddCharset euc-kr      .euc-kr\n    #Not sure how euc-tw got in - IANA doesn't list it???\n    AddCharset EUC-TW      .euc-tw\n    AddCharset gb2312      .gb2312 .gb\n    AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2\n    AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4\n    AddCharset shift_jis   .shift_jis .sjis\n\n    AddHandler type-map var\n\n    AddType text\/html .shtml\n    AddOutputFilter INCLUDES .shtml\n<\/IfModule>\n\n<IfModule mod_setenvif.c>   \n    BrowserMatch \"Mozilla\/2\" nokeepalive\n    BrowserMatch \"MSIE 4\\.0b2;\" nokeepalive downgrade-1.0 force-response-
 1.0\n    BrowserMatch \"RealPlayer 4\\.0\" force-response-1.0\n    BrowserMatch \"Java\/1\\.0\" force-response-1.0\n    BrowserMatch \"JDK\/1\\.0\" force-response-1.0\n\n    BrowserMatch \"Microsoft Data Access Internet Publishing Provider\" redirect-carefully\n    BrowserMatch \"MS FrontPage\" redirect-carefully\n    BrowserMatch \"^WebDrive\" redirect-carefully\n    BrowserMatch \"^WebDAVFS\/1.[012]\" redirect-carefully\n    BrowserMatch \"^gnome-vfs\/1.0\" redirect-carefully\n    BrowserMatch \"^XML Spy\" redirect-carefully\n    BrowserMatch \"^Dreamweaver-WebDAV-SCM1\" redirect-carefully\n<\/IfModule>\n\n# module d'information sur le statut du serveur\n<IfModule mod_status.c>\n    <Location \/server-status>\n        SetHandler server-status\n        Order deny,allow\n        Deny from all\n        Allow from 127.0.0.1\n    <\/Location>\n<\/IfModule>\n\n# module des informations du serveur\n<IfModule mod_info.c>\n    <Location \/server-info>\n        SetHandler server-info\n     
    Order deny,allow\n        Deny from all\n        Allow from 127.0.0.1\n    <\/Location>\n<\/IfModule>\n\n\/etc\/apache2\/sites-available:\n\n<VirtualHost *:80>\n    # The ServerName directive sets the request scheme, hostname and port that\n    # the server uses to identify itself. This is used when creating\n    # redirection URLs. In the context of virtual hosts, the ServerName\n    # specifies what hostname must appear in the request's Host: header to\n    # match this virtual host. For the default virtual host (this file) this\n    # value is not decisive as it is used as a last resort host regardless.\n    # However, you must set it for any further virtual host explicitly.\n    #ServerName www.example.com\n\n    ServerAdmin webmaster@localhost\n    DocumentRoot \/var\/www\n\n    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,\n    # error, crit, alert, emerg.\n    # It is also possible to configure the loglevel for particular\n    # modules, e.g.\n    
 #LogLevel info ssl:warn\n\n    ErrorLog ${APACHE_LOG_DIR}\/error.log\n    CustomLog ${APACHE_LOG_DIR}\/access.log combined\n\n    # For most configuration files from conf-available\/, which are\n    # enabled or disabled at a global level, it is possible to\n    # include a line for only one particular virtual host. For example the\n    # following line enables the CGI configuration for this host only\n    # after it has been globally disabled with \"a2disconf\".\n    #Include conf-available\/serve-cgi-bin.conf\n<\/VirtualHost>\n\n# vim: syntax=apache ts=4 sw=4 sts=4 sr noet","contenttype":"html","countrycode":"FR","crawled":"Mon, 24 Mar 2014 02:11:36 +0000","created_at":"Sun, 23 Mar 2014 00:00:00 +0100","domain":"www.ubuntu-fr.org","forumid":"44cd9a2333","forumname":"Serveurs","forumurl":"http:\/\/forum.ubuntu-fr.org\/viewforum.php?id=28","gmt":"+1","id":"1e3b215b1e6da800e0725913d5034b84","language":"French","link":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771#p16374901",
 "links":["http:\/\/httpd.apache.org\/docs\/2.2\/howto\/htaccess.html","http:\/\/www.iana.org\/assignments\/media-types\/index.html","www.example.com"],"siteid":"44cd99800","thread":"http:\/\/forum.ubuntu-fr.org\/viewtopic.php?id=1528771","threadid":"1528771","title":"Non reconnaissance d'Apache","topics":"Computers","type":"post"},"interaction":{"author":{"name":"machim","username":"machim"},"content":"Oui j'essayais d'installer les paquets ssmtp pour les mails. Puis j'ai fait certaine manipulations. je sais que j'ai fais des mauvaises manipulation mais je ne me rappelle plus. J'ai essay\u00E9 de desinstaller les paquets apache2, phpmyadmin, mysql, php5... pour reinstaller mais rien ne vas. Voila mon fichier \/etc\/apache2\/apache2.conf:\n\n# R\u00E9pertoire Racine du serveur\nServerRoot \"\/etc\/apache2\"\n\n# Fichier de v\u00E9rrouillage (lock) du serveur\n# IL DOIT SE TROUVER SUR LE DISQUE LOCAL\n#<IfModule !mpm_winnt.c>\n#<IfModule !mpm_netware.c>\nLockFile \/var\/lock\/apache2\
 /accept.lock\n#<\/IfModule>\n#<\/IfModule>\n\n# Fichier du PID: endroit o\u00F9, \u00E0 son d\u00E9marrage, apache doit stocker\n# son num\u00E9ro d'identification de processus\nPidFile \/var\/run\/apache2.pid\n\n# Delai d'attente d\u00E9pass\u00E9 : nombre de secondes avant de recevoir et d'envoyer\n# un message de \"D\u00E9lai d'attente d\u00E9pass\u00E9\" (timeout)\nTimeout 300\n\n# Connexion persistante: Alloue ou non les requ\u00EAtes persistantes\n# (plus d'une requ\u00EAte par connexion ).\n# Mettre \u00E0 \"Off\" pour d\u00E9sactiver.\nKeepAlive On\n\n# Nombre Maximum de requ\u00EAtes allou\u00E9es durant une connexion persistante.\n# 0 = non limit\u00E9\n# Il est recommand\u00E9 de garder ce nombre assez haut pour des performances maximales\nMaxKeepAliveRequests 100\n\n# Nombre de secondes d'attente pour la prochaine requ\u00EAte\n# d'un m\u00EAme client sur une m\u00EAme connexion avant un timeout\nKeepAliveTimeout 15\n\n# Configuration du mpm charg\u00E9\n<IfModule mpm_pr
 efork_module>\n# Nombre de processus serveurs fils \u00E0 cr\u00E9er au d\u00E9marrage.\n   StartServers          5\n# Nombre minimum de processus en attente d'intercepter des requ\u00EAtes\n   MinSpareServers       5\n# Nombre maximum de processus en attente\n   MaxSpareServers      15\n# Nombre maximum processus fils cr\u00E9\u00E9s\n# pour intercepter les requ\u00EAtes simultan\u00E9ment\n   MaxClients          150\n# Limite le nombre de requ\u00EAte qu'un processus fils intercepte\n# durant son temps de vie. Si 0 alors le processus n'expirera jamais.\n    MaxRequestsPerChild   0\n<\/IfModule>\n\n<IfModule mpm_worker_module>\n    StartServers          2\n    MaxClients          150\n# Nombre minimum de processus en attente d'intercepter les piques de requ\u00EAtes\n    MinSpareThreads      25\n# Nombre maximum de processus en attente\n    MaxSpareThreads      75\n    ThreadsPerChild      25\n    Max

<TRUNCATED>

[09/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
new file mode 100644
index 0000000..c738e80
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
@@ -0,0 +1,1547 @@
+{"amazon":{"anchor":"533193","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/
 SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy s
 etup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"darkgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 0
 2:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","links":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwo
 wski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<
 br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy setup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"dar
 kgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL
  (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text\/html","text\/html","text\/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined
  configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,
 "confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+{"amazon":{"anchor":"533271","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.c
 om\/forum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the
  SSLRequireSSL directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+{"blog":{"atomversion":"1.0","author":{"name":"basyura"},"blog":{"link":"http:\/\/d.hatena.ne.jp\/basyura\/","title":"basyura's blog"},"blogid":"55821125","content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> 
 \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","domain":"d.hatena.ne.jp","guid":"1e2c1f54e6c6548c4381b6e9a6361cea","id":"1e3b279c65cbac00e0729be4b09bfd5c","lang":"ja","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","links":["http:\/\/localhost:3000","http:\/\/localhost\/sample","http:\/\/localhost:3000\/sample"],"parseddate":"Sun, 23 Mar 2014 15:32:03 +0000","postid":"1426a00d-f33f-4144-b396-5160bda65a31","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"post","updated":"Sun, 23 Mar 2014 10:56:24 +0000"},"interaction":
 {"author":{"name":"basyura"},"content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304
 B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","id":"1e3b279c65cbac00e0729be4b09bfd5c","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","schema":{"version":3},"subtype":"post","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"blog"},"language":{"confidence":49,"tag":"ja","tag_extended":"ja"},"links":{"code":[404],"created_at":["Sun, 23 Mar 2014 15:41:17 +0000"],"hops":[["http:\/\/localhost\/sample"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["http:\/\/localhost\/sample"]}}
+{"blog":{"author":{"name":"FunPonsel"},"blog":{"link":"http:\/\/funponsel.org\/","title":"PonSeL Indonesia."},"blogid":"71176595","content":"Jakarta\u00A0-4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu [\u2026]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","domain":"funponsel.org","guid":"0633391e1e9c865bb976c4605ca9d22f","id":"1e3b2b3b5c93a780e072555ff59c6636","lang":"id","link":"http:\/\/funponsel.org\/33180\/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","parseddate":"Sun, 23 Mar 2014 19:07:40 +0000","postid":"df16f773-3ac0-4de5-9e15-2923aac2b119","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"author":{"name":"FunPon
 sel"},"content":"Jakarta\u00A0-4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu [\u2026]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","id":"1e3b2b3b5c93a780e072555ff59c6636","link":"http:\/\/funponsel.org\/33180\/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","schema":{"version":3},"subtype":"post","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
+{"blog":{"author":{"name":"hh58"},"blog":{"link":"http:\/\/blog.sina.com.cn\/hu263","title":"hh58"},"blogid":"73188486","content":"\u73B0\u4ECA\u5B58\u5728\u7684\u5F00\u6E90\u534F\u8BAE\u5F88\u591A\uFF0C\u800C\u7ECF\u8FC7Open\u00A0Source\u00A0Initiative\u7EC4\u7EC7\u901A\u8FC7\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u76EE\u524D\u670958\u79CD\uFF08http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD,\u00A0GPL,\u00A0LGPL,MIT\u7B49\u90FD\u662FOSI\u6279\u51C6\u7684\u534F\u8BAE\u3002\u5982\u679C\u8981\u5F00\u6E90\u81EA\u5DF1\u7684\u4EE3\u7801\uFF0C\u6700\u597D\u4E5F\u662F\u9009\u62E9\u8FD9\u4E9B\u88AB\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u3002<br \/>\n\n\u8FD9\u91CC\u6211\u4EEC\u6765\u770B\u56DB\u79CD\u6700\u5E38\u7528\u7684\u5F00\u6E90\u534F\u8BAE\u53CA\u5B83\u4EEC\u7684\u9002\u7528\u8303\u56F4\uFF0C\u4F9B\u90A3\u4E9B\u51C6\u5907\u5F00\u6E90\u6216\u8005\u4F7F\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u5F00\
 u53D1\u4EBA\u5458\/\u5382\u5BB6\u53C2\u8003\u3002<br \/>\n<br \/>\nBSD\u5F00\u6E90\u534F\u8BAE\uFF08original\u00A0BSD\u00A0license\u3001FreeBSD\u00A0license\u3001Original\u00A0BSD\u00A0license\uFF09\u00A0BSD\u5F00\u6E90\u534F\u8BAE\u662F\u4E00\u4E2A\u7ED9\u4E8E\u4F7F\u7528\u8005\u5F88\u5927\u81EA\u7531\u7684\u534F\u8BAE\u3002\u57FA\u672C\u4E0A\u4F7F\u7528\u8005\u53EF\u4EE5\u201D\u4E3A\u6240\u6B32\u4E3A\u201D,\u53EF\u4EE5\u81EA\u7531\u7684\u4F7F\u7528\uFF0C\u4FEE\u6539\u6E90\u4EE3\u7801\uFF0C\u4E5F\u53EF\u4EE5\u5C06\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u4F5C\u4E3A\u5F00\u6E90\u6216\u8005\u4E13\u6709\u8F6F\u4EF6\u518D\u53D1\u5E03\u3002<br \/>\n\n\u4F46\u201D\u4E3A\u6240\u6B32\u4E3A\u201D\u7684\u524D\u63D0\u5F53\u4F60\u53D1\u5E03\u4F7F\u7528\u4E86BSD\u534F\u8BAE\u7684\u4EE3\u7801\uFF0C\u6216\u5219\u4EE5BSD\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\u505A\u4E8C\u6B21\u5F00\u53D1\u81EA\u5DF1\u7684\u4EA7\u54C1\u65F6\uFF0C\u9700\u8981\u6EE1\u8DB3\u4E09\u4E2A\u6761\u4EF6\uFF1A<br \/>\n1.\u00A
 0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u6E90\u4EE3\u7801\uFF0C\u5219\u5728\u6E90\u4EE3\u7801\u4E2D\u5FC5\u987B\u5E26\u6709\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002\u00A02.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u53EA\u662F\u4E8C\u8FDB\u5236\u7C7B\u5E93\/\u8F6F\u4EF6\uFF0C\u5219\u9700\u8981\u5728\u7C7B\u5E93\/\u8F6F\u4EF6\u7684\u6587\u6863\u548C\u7248\u6743\u58F0\u660E\u4E2D\u5305\u542B<br \/>\n\n\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002<br \/>\n3.\u00A0\u4E0D\u53EF\u4EE5\u7528\u5F00\u6E90\u4EE3\u7801\u7684\u4F5C\u8005\/\u673A\u6784\u540D\u5B57\u548C\u539F\u6765\u4EA7\u54C1\u7684\u540D\u5B57\u505A\u5E02\u573A\u63A8\u5E7F\u3002\u00A0BSD\u00A0\u4EE3\u7801\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\uFF0C\u4F46\u9700\u8981\u5C0A\u91CD\u4EE3\u7801\u4F5C\u8005\u7684\u8457\u4F5C\u6743\u3002BSD\u7531\u4E8E\u5141\u8BB8\u4F7F\u7528\u8005\u4FEE\u6539\u548C\u91CD\u65B0\u53D1\u5E03\u4EE3\u7801\uFF0C\u4E5F\u5141\u8BB8\u4F7F\u7528\u6216\u5728
 BSD\u4EE3\u7801\u4E0A\u5F00\u53D1\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\uFF0C\u56E0\u6B64\u662F\u5BF9\u5546\u4E1A\u96C6\u6210\u5F88\u53CB\u597D\u7684\u534F\u8BAE\u3002\u800C\u5F88\u591A\u7684\u516C\u53F8\u4F01\u4E1A\u5728\u9009\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u65F6\u5019\u90FD\u9996\u9009BSD\u534F\u8BAE\uFF0C\u56E0\u4E3A\u53EF\u4EE5\u5B8C\u5168\u63A7\u5236\u8FD9\u4E9B\u7B2C\u4E09\u65B9\u7684\u4EE3\u7801\uFF0C\u5728\u5FC5\u8981\u7684\u65F6\u5019\u53EF\u4EE5\u4FEE\u6539\u6216\u8005\u4E8C\u6B21\u5F00\u53D1\u3002<br \/>\n\nApache\u00A0Licence\u00A02.0\uFF08Apache\u00A0License,\u00A0Version\u00A02.0\u3001Apache\u00A0License,\u00A0Version\u00A01.1\u3001Apache\u00A0License,\u00A0Version\u00A01.0\uFF09<br \/>\n\nApache\u00A0Licence\u662F\u8457\u540D\u7684\u975E\u76C8\u5229\u5F00\u6E90\u7EC4\u7EC7Apache\u91C7\u7528\u7684\u534F\u8BAE\u3002\u8BE5\u534F\u8BAE\u548CBSD\u7C7B\u4F3C\uFF0C\u540C\u6837\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\u548C\u5C0A\u91CD\u539F\u4F5C\u8005\u7684\
 u8457\u4F5C\u6743\uFF0C\u540C\u6837\u5141\u8BB8\u4EE3\u7801\u4FEE\u6539\uFF0C\u518D\u53D1\u5E03\uFF08\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u8F6F\u4EF6\uFF09\u3002\u9700\u8981\u6EE1\u8DB3\u7684\u6761\u4EF6\u4E5F\u548CBSD\u7C7B\u4F3C\uFF1A<br \/>\n\n1.\u00A0\u9700\u8981\u7ED9\u4EE3\u7801\u7684\u7528\u6237\u4E00\u4EFDApache\u00A0Licence<br \/>\n2.\u00A0\u5982\u679C\u4F60\u4FEE\u6539\u4E86\u4EE3\u7801\uFF0C\u9700\u8981\u518D\u88AB\u4FEE\u6539\u7684\u6587\u4EF6\u4E2D\u8BF4\u660E\u3002<br \/>\n3.\u00A0\u5728\u5EF6\u4F38\u7684\u4EE3\u7801\u4E2D\uFF08\u4FEE\u6539\u548C\u6709\u6E90\u4EE3\u7801\u884D\u751F\u7684\u4EE3\u7801\u4E2D\uFF09\u9700\u8981\u5E26\u6709\u539F\u6765\u4EE3\u7801\u4E2D\u7684\u534F\u8BAE\uFF0C\u5546<br \/>\n\u6807\uFF0C\u4E13\u5229\u58F0\u660E\u548C\u5176\u4ED6\u539F\u6765\u4F5C\u8005\u89C4\u5B9A\u9700\u8981\u5305\u542B\u7684\u8BF4\u660E\u3002<br \/>\n4.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u4E00\u4E2ANotice\u6587\u4EF6\uFF0C\u5219\u5
 728Notice\u6587\u4EF6\u4E2D\u9700\u8981\u5E26\u6709Apache<br \/>\n\nLicence\u3002\u4F60\u53EF\u4EE5\u5728Notice\u4E2D\u589E\u52A0\u81EA\u5DF1\u7684\u8BB8\u53EF\uFF0C\u4F46\u4E0D\u53EF\u4EE5\u8868\u73B0\u4E3A\u5BF9Apache\u00A0Licence\u6784\u6210\u66F4\u6539\u3002<br \/>\n\nApache\u00A0Licence\u4E5F\u662F\u5BF9\u5546\u4E1A\u5E94\u7528\u53CB\u597D\u7684\u8BB8\u53EF\u3002\u4F7F\u7528\u8005\u4E5F\u53EF\u4EE5\u5728\u9700\u8981\u7684\u65F6\u5019\u4FEE\u6539\u4EE3\u7801\u6765\u6EE1\u8DB3\u9700\u8981\u5E76\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u4EA7\u54C1\u53D1\u5E03\/\u9500\u552E\u3002\u00A0GPL\uFF08GNU\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\n\u6211\u4EEC\u5F88\u719F\u6089\u7684Linux\u5C31\u662F\u91C7\u7528\u4E86GPL\u3002GPL\u534F\u8BAE\u548CBSD,\u00A0Apache\u00A0Licence\u7B49\u9F13\u52B1\u4EE3\u7801\u91CD\u7528\u7684\u8BB8\u53EF\u5F88\u4E0D\u4E00\u6837\u3002GPL\u7684\u51FA\u53D1\u70B9\u662F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\u548C\u5F15\u7528\/\u4FEE\
 u6539\/\u884D\u751F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\uFF0C\u4F46\u4E0D\u5141\u8BB8\u4FEE\u6539\u540E\u548C\u884D\u751F\u7684\u4EE3\u7801\u505A\u4E3A\u95ED\u6E90\u7684\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\u3002\u8FD9\u4E5F\u5C31\u662F\u4E3A\u4EC0\u4E48\u6211\u4EEC\u80FD\u7528\u514D\u8D39\u7684\u5404\u79CDlinux\uFF0C\u5305\u62EC\u5546\u4E1A\u516C\u53F8\u7684linux\u548Clinux\u4E0A\u5404\u79CD\u5404\u6837\u7684\u7531\u4E2A\u4EBA\uFF0C\u7EC4\u7EC7\uFF0C\u4EE5\u53CA\u5546\u4E1A\u8F6F\u4EF6\u516C\u53F8\u5F00\u53D1\u7684\u514D\u8D39\u8F6F\u4EF6\u4E86\u3002<br \/>\n\nGPL\u534F\u8BAE\u7684\u4E3B\u8981\u5185\u5BB9\u662F\u53EA\u8981\u5728\u4E00\u4E2A\u8F6F\u4EF6\u4E2D\u4F7F\u7528(\u201C\u4F7F\u7528\u201D\u6307\u7C7B\u5E93\u5F15\u7528\uFF0C\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\u4EE3\u7801)GPL\u00A0\u534F\u8BAE\u7684\u4EA7\u54C1\uFF0C\u5219\u8BE5\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4E5F\u91C7\u7528GPL\u534F\u8BAE\uFF0C\u65E2\u5FC5\u9
 87B\u4E5F\u662F\u5F00\u6E90\u548C\u514D\u8D39\u3002\u8FD9\u5C31\u662F\u6240\u8C13\u7684\u201D\u4F20\u67D3\u6027\u201D\u3002GPL\u534F\u8BAE\u7684\u4EA7\u54C1\u4F5C\u4E3A\u4E00\u4E2A\u5355\u72EC\u7684\u4EA7\u54C1\u4F7F\u7528\u6CA1\u6709\u4EFB\u4F55\u95EE\u9898\uFF0C\u8FD8\u53EF\u4EE5\u4EAB\u53D7\u514D\u8D39\u7684\u4F18\u52BF\u3002<br \/>\n\n\u7531\u4E8EGPL\u4E25\u683C\u8981\u6C42\u4F7F\u7528\u4E86GPL\u7C7B\u5E93\u7684\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4F7F\u7528GPL\u534F\u8BAE\uFF0C\u5BF9\u4E8E\u4F7F\u7528GPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\uFF0C\u5546\u4E1A\u8F6F\u4EF6\u6216\u8005\u5BF9\u4EE3\u7801\u6709\u4FDD\u5BC6\u8981\u6C42\u7684\u90E8\u95E8\u5C31\u4E0D\u9002\u5408\u96C6\u6210\/\u91C7\u7528\u4F5C\u4E3A\u7C7B\u5E93\u548C\u4E8C\u6B21\u5F00\u53D1\u7684\u57FA\u7840\u3002<br \/>\n\n\u5176\u5B83\u7EC6\u8282\u5982\u518D\u53D1\u5E03\u7684\u65F6\u5019\u9700\u8981\u4F34\u968FGPL\u534F\u8BAE\u7B49\u548CBSD\/Apache\u7B49\u7C7B\u4F3C\u3002<br \/>\n<br \/>\nLGPL\uFF08GNU\u00A0Less
 er\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\nLGPL\u662FGPL\u7684\u4E00\u4E2A\u4E3A\u4E3B\u8981\u4E3A\u7C7B\u5E93\u4F7F\u7528\u8BBE\u8BA1\u7684\u5F00\u6E90\u534F\u8BAE\u3002\u548CGPL\u8981\u6C42\u4EFB\u4F55\u4F7F\u7528\/\u4FEE\u6539\/\u884D\u751F\u4E4BGPL\u7C7B\u5E93\u7684\u7684\u8F6F\u4EF6\u5FC5\u987B\u91C7\u7528GPL\u534F\u8BAE\u4E0D\u540C\u3002LGPL\u5141\u8BB8\u5546\u4E1A\u8F6F\u4EF6\u901A\u8FC7\u7C7B\u5E93\u5F15\u7528(link)\u65B9\u5F0F\u4F7F\u7528LGPL\u7C7B\u5E93\u800C\u4E0D\u9700\u8981\u5F00\u6E90\u5546\u4E1A\u8F6F\u4EF6\u7684\u4EE3\u7801\u3002\u8FD9\u4F7F\u5F97\u91C7\u7528LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u53EF\u4EE5\u88AB\u5546\u4E1A\u8F6F\u4EF6\u4F5C\u4E3A\u7C7B\u5E93\u5F15\u7528\u5E76\u53D1\u5E03\u548C\u9500\u552E\u3002<br \/>\n\n\u4F46\u662F\u5982\u679C\u4FEE\u6539LGPL\u534F\u8BAE\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\uFF0C\u5219\u6240\u6709\u4FEE\u6539\u7684\u4EE3\u7801\uFF0C\u6D89\u53CA\u4FEE\u6539\u90E8\u5206\u7684\u989D\u5916\u4EE3\u7801\u548
 C\u884D\u751F\u7684\u4EE3\u7801\u90FD\u5FC5\u987B\u91C7\u7528LGPL\u534F\u8BAE\u3002\u56E0\u6B64LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u5F88\u9002\u5408\u4F5C\u4E3A\u7B2C\u4E09\u65B9\u7C7B\u5E93\u88AB\u5546\u4E1A\u8F6F\u4EF6\u5F15\u7528\uFF0C\u4F46\u4E0D\u9002\u5408\u5E0C\u671B\u4EE5LGPL\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\uFF0C\u901A\u8FC7\u4FEE\u6539\u548C\u884D\u751F\u7684\u65B9\u5F0F\u505A\u4E8C\u6B21\u5F00\u53D1\u7684\u5546\u4E1A\u8F6F\u4EF6\u91C7\u7528\u3002<br \/>\n\nGPL\/LGPL\u90FD\u4FDD\u969C\u539F\u4F5C\u8005\u7684\u77E5\u8BC6\u4EA7\u6743\uFF0C\u907F\u514D\u6709\u4EBA\u5229\u7528\u5F00\u6E90\u4EE3\u7801\u590D\u5236\u5E76\u5F00\u53D1\u7C7B\u4F3C\u7684\u4EA7\u54C1\u00A0MIT\uFF08MIT\uFF09<br \/>\n\nMIT\u662F\u548CBSD\u4E00\u6837\u5BBD\u8303\u7684\u8BB8\u53EF\u534F\u8BAE,\u4F5C\u8005\u53EA\u60F3\u4FDD\u7559\u7248\u6743,\u800C\u65E0\u4EFB\u4F55\u5176\u4ED6\u4E86\u9650\u5236.\u4E5F\u5C31\u662F\u8BF4,\u4F60\u5FC5\u987B\u5728\u4F60\u7684\u53D1\u884C\u7248\u91CC\u5305\
 u542B\u539F\u8BB8\u53EF\u534F\u8BAE\u7684\u58F0\u660E,\u65E0\u8BBA\u4F60\u662F\u4EE5\u4E8C\u8FDB\u5236\u53D1\u5E03\u7684\u8FD8\u662F\u4EE5\u6E90\u4EE3\u7801\u53D1\u5E03\u7684.\u00A0<br \/>\n\n<br \/>\n<br \/>\nReference: \u767E\u5EA6\u767E\u79D1<br \/>\nhttp:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br \/>\n\n<br \/><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target
 =\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Mon, 24 Mar 2014 03:14:12 +0000","domain":"blog.sina.com.cn","guid":"672664163c8d436f36cd797e5134ac78","id":"1e3b3025f371aa00e072242f15612c08","lang":"zh-cn","link":"http:\/\/blog.sina.com.cn\/s\/blog_844c1d8b0101fv02.html","links":["http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u
 5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD","http:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"parseddate":"Fri, 28 Mar 2014 18:25:03 +0000","postid":"7fc3321c-ce75-43af-9b5a-24486d45df88","title":"\u4E94\u79CD\u5F00\u6E90\u534F\u8BAE\u7684\u6BD4\u8F83(BSD,Apache,GPL,LGPL,MIT)","type":"post"},"interaction":{"author":{"name":"hh58"},"content":"\u73B0\u4ECA\u5B58\u5728\u7684\u5F00\u6E90\u534F\u8BAE\u5F88\u591A\uFF0C\u800C\u7ECF\u8FC7Open\u00A0Source\u00A0Initiative\u7EC4\u7EC7\u901A\u8FC7\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u76EE\u524D\u670958\u79CD\uFF08http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD,\u00A0GPL,\u00A0LGPL,MIT\u7B49\u90FD\u662FOSI\u6279\u51C6\u7684\u534F\u8BAE\u3002\u5982\u679C\u8981\u5F00\u6E90\u81EA\u5DF1\u7684\u4EE3\u7801\uFF0C\u6700\u597D\u4E5F\u662F\u9009\u62E9\u8FD9\u4E9B\
 u88AB\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u3002<br \/>\n\n\u8FD9\u91CC\u6211\u4EEC\u6765\u770B\u56DB\u79CD\u6700\u5E38\u7528\u7684\u5F00\u6E90\u534F\u8BAE\u53CA\u5B83\u4EEC\u7684\u9002\u7528\u8303\u56F4\uFF0C\u4F9B\u90A3\u4E9B\u51C6\u5907\u5F00\u6E90\u6216\u8005\u4F7F\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u5F00\u53D1\u4EBA\u5458\/\u5382\u5BB6\u53C2\u8003\u3002<br \/>\n<br \/>\nBSD\u5F00\u6E90\u534F\u8BAE\uFF08original\u00A0BSD\u00A0license\u3001FreeBSD\u00A0license\u3001Original\u00A0BSD\u00A0license\uFF09\u00A0BSD\u5F00\u6E90\u534F\u8BAE\u662F\u4E00\u4E2A\u7ED9\u4E8E\u4F7F\u7528\u8005\u5F88\u5927\u81EA\u7531\u7684\u534F\u8BAE\u3002\u57FA\u672C\u4E0A\u4F7F\u7528\u8005\u53EF\u4EE5\u201D\u4E3A\u6240\u6B32\u4E3A\u201D,\u53EF\u4EE5\u81EA\u7531\u7684\u4F7F\u7528\uFF0C\u4FEE\u6539\u6E90\u4EE3\u7801\uFF0C\u4E5F\u53EF\u4EE5\u5C06\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u4F5C\u4E3A\u5F00\u6E90\u6216\u8005\u4E13\u6709\u8F6F\u4EF6\u518D\u53D1\u5E03\u3002<br \/>\n\n\u4F46\u201D\u4E3A\u6240\u6B3
 2\u4E3A\u201D\u7684\u524D\u63D0\u5F53\u4F60\u53D1\u5E03\u4F7F\u7528\u4E86BSD\u534F\u8BAE\u7684\u4EE3\u7801\uFF0C\u6216\u5219\u4EE5BSD\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\u505A\u4E8C\u6B21\u5F00\u53D1\u81EA\u5DF1\u7684\u4EA7\u54C1\u65F6\uFF0C\u9700\u8981\u6EE1\u8DB3\u4E09\u4E2A\u6761\u4EF6\uFF1A<br \/>\n1.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u6E90\u4EE3\u7801\uFF0C\u5219\u5728\u6E90\u4EE3\u7801\u4E2D\u5FC5\u987B\u5E26\u6709\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002\u00A02.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u53EA\u662F\u4E8C\u8FDB\u5236\u7C7B\u5E93\/\u8F6F\u4EF6\uFF0C\u5219\u9700\u8981\u5728\u7C7B\u5E93\/\u8F6F\u4EF6\u7684\u6587\u6863\u548C\u7248\u6743\u58F0\u660E\u4E2D\u5305\u542B<br \/>\n\n\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002<br \/>\n3.\u00A0\u4E0D\u53EF\u4EE5\u7528\u5F00\u6E90\u4EE3\u7801\u7684\u4F5C\u8005\/\u673A\u6784\u540D\u5B57\u548C\u539F\u6765\u4EA7\u54C1\u7684\u540D\u5B57\u505A\u5E02\u573A\
 u63A8\u5E7F\u3002\u00A0BSD\u00A0\u4EE3\u7801\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\uFF0C\u4F46\u9700\u8981\u5C0A\u91CD\u4EE3\u7801\u4F5C\u8005\u7684\u8457\u4F5C\u6743\u3002BSD\u7531\u4E8E\u5141\u8BB8\u4F7F\u7528\u8005\u4FEE\u6539\u548C\u91CD\u65B0\u53D1\u5E03\u4EE3\u7801\uFF0C\u4E5F\u5141\u8BB8\u4F7F\u7528\u6216\u5728BSD\u4EE3\u7801\u4E0A\u5F00\u53D1\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\uFF0C\u56E0\u6B64\u662F\u5BF9\u5546\u4E1A\u96C6\u6210\u5F88\u53CB\u597D\u7684\u534F\u8BAE\u3002\u800C\u5F88\u591A\u7684\u516C\u53F8\u4F01\u4E1A\u5728\u9009\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u65F6\u5019\u90FD\u9996\u9009BSD\u534F\u8BAE\uFF0C\u56E0\u4E3A\u53EF\u4EE5\u5B8C\u5168\u63A7\u5236\u8FD9\u4E9B\u7B2C\u4E09\u65B9\u7684\u4EE3\u7801\uFF0C\u5728\u5FC5\u8981\u7684\u65F6\u5019\u53EF\u4EE5\u4FEE\u6539\u6216\u8005\u4E8C\u6B21\u5F00\u53D1\u3002<br \/>\n\nApache\u00A0Licence\u00A02.0\uFF08Apache\u00A0License,\u00A0Version\u00A02.0\u3001Apache\u00A0License,\u00A0Version\u00A01.1\u3001Apach
 e\u00A0License,\u00A0Version\u00A01.0\uFF09<br \/>\n\nApache\u00A0Licence\u662F\u8457\u540D\u7684\u975E\u76C8\u5229\u5F00\u6E90\u7EC4\u7EC7Apache\u91C7\u7528\u7684\u534F\u8BAE\u3002\u8BE5\u534F\u8BAE\u548CBSD\u7C7B\u4F3C\uFF0C\u540C\u6837\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\u548C\u5C0A\u91CD\u539F\u4F5C\u8005\u7684\u8457\u4F5C\u6743\uFF0C\u540C\u6837\u5141\u8BB8\u4EE3\u7801\u4FEE\u6539\uFF0C\u518D\u53D1\u5E03\uFF08\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u8F6F\u4EF6\uFF09\u3002\u9700\u8981\u6EE1\u8DB3\u7684\u6761\u4EF6\u4E5F\u548CBSD\u7C7B\u4F3C\uFF1A<br \/>\n\n1.\u00A0\u9700\u8981\u7ED9\u4EE3\u7801\u7684\u7528\u6237\u4E00\u4EFDApache\u00A0Licence<br \/>\n2.\u00A0\u5982\u679C\u4F60\u4FEE\u6539\u4E86\u4EE3\u7801\uFF0C\u9700\u8981\u518D\u88AB\u4FEE\u6539\u7684\u6587\u4EF6\u4E2D\u8BF4\u660E\u3002<br \/>\n3.\u00A0\u5728\u5EF6\u4F38\u7684\u4EE3\u7801\u4E2D\uFF08\u4FEE\u6539\u548C\u6709\u6E90\u4EE3\u7801\u884D\u751F\u7684\u4EE3\u7801\u4E2D\uFF09\u9700\u8981\u5E26\u6709\u539F\u6765\u4EE3
 \u7801\u4E2D\u7684\u534F\u8BAE\uFF0C\u5546<br \/>\n\u6807\uFF0C\u4E13\u5229\u58F0\u660E\u548C\u5176\u4ED6\u539F\u6765\u4F5C\u8005\u89C4\u5B9A\u9700\u8981\u5305\u542B\u7684\u8BF4\u660E\u3002<br \/>\n4.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u4E00\u4E2ANotice\u6587\u4EF6\uFF0C\u5219\u5728Notice\u6587\u4EF6\u4E2D\u9700\u8981\u5E26\u6709Apache<br \/>\n\nLicence\u3002\u4F60\u53EF\u4EE5\u5728Notice\u4E2D\u589E\u52A0\u81EA\u5DF1\u7684\u8BB8\u53EF\uFF0C\u4F46\u4E0D\u53EF\u4EE5\u8868\u73B0\u4E3A\u5BF9Apache\u00A0Licence\u6784\u6210\u66F4\u6539\u3002<br \/>\n\nApache\u00A0Licence\u4E5F\u662F\u5BF9\u5546\u4E1A\u5E94\u7528\u53CB\u597D\u7684\u8BB8\u53EF\u3002\u4F7F\u7528\u8005\u4E5F\u53EF\u4EE5\u5728\u9700\u8981\u7684\u65F6\u5019\u4FEE\u6539\u4EE3\u7801\u6765\u6EE1\u8DB3\u9700\u8981\u5E76\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u4EA7\u54C1\u53D1\u5E03\/\u9500\u552E\u3002\u00A0GPL\uFF08GNU\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\n\u6211\u4EEC\u5F88\
 u719F\u6089\u7684Linux\u5C31\u662F\u91C7\u7528\u4E86GPL\u3002GPL\u534F\u8BAE\u548CBSD,\u00A0Apache\u00A0Licence\u7B49\u9F13\u52B1\u4EE3\u7801\u91CD\u7528\u7684\u8BB8\u53EF\u5F88\u4E0D\u4E00\u6837\u3002GPL\u7684\u51FA\u53D1\u70B9\u662F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\u548C\u5F15\u7528\/\u4FEE\u6539\/\u884D\u751F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\uFF0C\u4F46\u4E0D\u5141\u8BB8\u4FEE\u6539\u540E\u548C\u884D\u751F\u7684\u4EE3\u7801\u505A\u4E3A\u95ED\u6E90\u7684\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\u3002\u8FD9\u4E5F\u5C31\u662F\u4E3A\u4EC0\u4E48\u6211\u4EEC\u80FD\u7528\u514D\u8D39\u7684\u5404\u79CDlinux\uFF0C\u5305\u62EC\u5546\u4E1A\u516C\u53F8\u7684linux\u548Clinux\u4E0A\u5404\u79CD\u5404\u6837\u7684\u7531\u4E2A\u4EBA\uFF0C\u7EC4\u7EC7\uFF0C\u4EE5\u53CA\u5546\u4E1A\u8F6F\u4EF6\u516C\u53F8\u5F00\u53D1\u7684\u514D\u8D39\u8F6F\u4EF6\u4E86\u3002<br \/>\n\nGPL\u534F\u8BAE\u7684\u4E3B\u8981\u5185\u5BB9\u662F\u53EA\u8981\u5728\u4E00
 \u4E2A\u8F6F\u4EF6\u4E2D\u4F7F\u7528(\u201C\u4F7F\u7528\u201D\u6307\u7C7B\u5E93\u5F15\u7528\uFF0C\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\u4EE3\u7801)GPL\u00A0\u534F\u8BAE\u7684\u4EA7\u54C1\uFF0C\u5219\u8BE5\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4E5F\u91C7\u7528GPL\u534F\u8BAE\uFF0C\u65E2\u5FC5\u987B\u4E5F\u662F\u5F00\u6E90\u548C\u514D\u8D39\u3002\u8FD9\u5C31\u662F\u6240\u8C13\u7684\u201D\u4F20\u67D3\u6027\u201D\u3002GPL\u534F\u8BAE\u7684\u4EA7\u54C1\u4F5C\u4E3A\u4E00\u4E2A\u5355\u72EC\u7684\u4EA7\u54C1\u4F7F\u7528\u6CA1\u6709\u4EFB\u4F55\u95EE\u9898\uFF0C\u8FD8\u53EF\u4EE5\u4EAB\u53D7\u514D\u8D39\u7684\u4F18\u52BF\u3002<br \/>\n\n\u7531\u4E8EGPL\u4E25\u683C\u8981\u6C42\u4F7F\u7528\u4E86GPL\u7C7B\u5E93\u7684\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4F7F\u7528GPL\u534F\u8BAE\uFF0C\u5BF9\u4E8E\u4F7F\u7528GPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\uFF0C\u5546\u4E1A\u8F6F\u4EF6\u6216\u8005\u5BF9\u4EE3\u7801\u6709\u4FDD\u5BC6\u8981\u6C42\u7684\u90E8\u95E8\u5C31\u4E0D\u9
 002\u5408\u96C6\u6210\/\u91C7\u7528\u4F5C\u4E3A\u7C7B\u5E93\u548C\u4E8C\u6B21\u5F00\u53D1\u7684\u57FA\u7840\u3002<br \/>\n\n\u5176\u5B83\u7EC6\u8282\u5982\u518D\u53D1\u5E03\u7684\u65F6\u5019\u9700\u8981\u4F34\u968FGPL\u534F\u8BAE\u7B49\u548CBSD\/Apache\u7B49\u7C7B\u4F3C\u3002<br \/>\n<br \/>\nLGPL\uFF08GNU\u00A0Lesser\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\nLGPL\u662FGPL\u7684\u4E00\u4E2A\u4E3A\u4E3B\u8981\u4E3A\u7C7B\u5E93\u4F7F\u7528\u8BBE\u8BA1\u7684\u5F00\u6E90\u534F\u8BAE\u3002\u548CGPL\u8981\u6C42\u4EFB\u4F55\u4F7F\u7528\/\u4FEE\u6539\/\u884D\u751F\u4E4BGPL\u7C7B\u5E93\u7684\u7684\u8F6F\u4EF6\u5FC5\u987B\u91C7\u7528GPL\u534F\u8BAE\u4E0D\u540C\u3002LGPL\u5141\u8BB8\u5546\u4E1A\u8F6F\u4EF6\u901A\u8FC7\u7C7B\u5E93\u5F15\u7528(link)\u65B9\u5F0F\u4F7F\u7528LGPL\u7C7B\u5E93\u800C\u4E0D\u9700\u8981\u5F00\u6E90\u5546\u4E1A\u8F6F\u4EF6\u7684\u4EE3\u7801\u3002\u8FD9\u4F7F\u5F97\u91C7\u7528LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u53EF\u4EE5\u88AB\u5546\u4E1A\u8F6F\u4
 EF6\u4F5C\u4E3A\u7C7B\u5E93\u5F15\u7528\u5E76\u53D1\u5E03\u548C\u9500\u552E\u3002<br \/>\n\n\u4F46\u662F\u5982\u679C\u4FEE\u6539LGPL\u534F\u8BAE\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\uFF0C\u5219\u6240\u6709\u4FEE\u6539\u7684\u4EE3\u7801\uFF0C\u6D89\u53CA\u4FEE\u6539\u90E8\u5206\u7684\u989D\u5916\u4EE3\u7801\u548C\u884D\u751F\u7684\u4EE3\u7801\u90FD\u5FC5\u987B\u91C7\u7528LGPL\u534F\u8BAE\u3002\u56E0\u6B64LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u5F88\u9002\u5408\u4F5C\u4E3A\u7B2C\u4E09\u65B9\u7C7B\u5E93\u88AB\u5546\u4E1A\u8F6F\u4EF6\u5F15\u7528\uFF0C\u4F46\u4E0D\u9002\u5408\u5E0C\u671B\u4EE5LGPL\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\uFF0C\u901A\u8FC7\u4FEE\u6539\u548C\u884D\u751F\u7684\u65B9\u5F0F\u505A\u4E8C\u6B21\u5F00\u53D1\u7684\u5546\u4E1A\u8F6F\u4EF6\u91C7\u7528\u3002<br \/>\n\nGPL\/LGPL\u90FD\u4FDD\u969C\u539F\u4F5C\u8005\u7684\u77E5\u8BC6\u4EA7\u6743\uFF0C\u907F\u514D\u6709\u4EBA\u5229\u7528\u5F00\u6E90\u4EE3\u7801\u590D\u5236\u5E76\u5F00\u53D1\u7C7B\u4F3C\u768
 4\u4EA7\u54C1\u00A0MIT\uFF08MIT\uFF09<br \/>\n\nMIT\u662F\u548CBSD\u4E00\u6837\u5BBD\u8303\u7684\u8BB8\u53EF\u534F\u8BAE,\u4F5C\u8005\u53EA\u60F3\u4FDD\u7559\u7248\u6743,\u800C\u65E0\u4EFB\u4F55\u5176\u4ED6\u4E86\u9650\u5236.\u4E5F\u5C31\u662F\u8BF4,\u4F60\u5FC5\u987B\u5728\u4F60\u7684\u53D1\u884C\u7248\u91CC\u5305\u542B\u539F\u8BB8\u53EF\u534F\u8BAE\u7684\u58F0\u660E,\u65E0\u8BBA\u4F60\u662F\u4EE5\u4E8C\u8FDB\u5236\u53D1\u5E03\u7684\u8FD8\u662F\u4EE5\u6E90\u4EE3\u7801\u53D1\u5E03\u7684.\u00A0<br \/>\n\n<br \/>\n<br \/>\nReference: \u767E\u5EA6\u767E\u79D1<br \/>\nhttp:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br \/>\n\n<br \/><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/ta
 g\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"
 Mon, 24 Mar 2014 03:14:12 +0000","id":"1e3b3025f371aa00e072242f15612c08","link":"http:\/\/blog.sina.com.cn\/s\/blog_844c1d8b0101fv02.html","schema":{"version":3},"subtype":"post","title":"\u4E94\u79CD\u5F00\u6E90\u534F\u8BAE\u7684\u6BD4\u8F83(BSD,Apache,GPL,LGPL,MIT)","type":"blog"},"language":{"confidence":82,"tag":"zh","tag_extended":"zh-cn"},"links":{"code":[404,200],"created_at":["Fri, 28 Mar 2014 18:36:08 +0000","Fri, 28 Mar 2014 18:36:11 +0000"],"hops":[["http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD","http:\/\/opensource.org\/licenses\/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD"],[]],"meta":{"charset":["","GB2312"],"content_type":["","text\/html"],"description":["","\u5728\u7EBF\u4E92\u52A8\u5F0F\u6587\u6863\u5206\u4EAB\u5E73\u53F0\uFF0C\u5728\u8FD9\u91CC\uFF0C\u60A8\u53EF\u4EE5\u548C\u5343\u4E07\u7F51
 \u53CB\u5206\u4EAB\u81EA\u5DF1\u624B\u4E2D\u7684\u6587\u6863\uFF0C\u5168\u6587\u9605\u8BFB\u5176\u4ED6\u7528\u6237\u7684\u6587\u6863\uFF0C\u540C\u65F6\uFF0C\u4E5F\u53EF\u4EE5\u5229\u7528\u5206\u4EAB\u6587\u6863\u83B7\u53D6\u7684\u79EF\u5206\u4E0B\u8F7D\u6587\u6863"],"lang":["","unknown"]},"normalized_url":[null,"http:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"retweet_count":[0,0],"title":["null","\u4E94\u79CD\u5F00\u6E90\u534F\u8BAE\u7684\u6BD4\u8F83(BSD,Apache,GPL,LGPL,MIT)_\u767E\u5EA6\u6587\u5E93"],"url":["http:\/\/opensource.org\/licenses\/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD","http:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"]}}
+{"blog":{"author":{"name":"Reset"},"blog":{"link":"http:\/\/linux.org.ru\/","title":"Linux.org.ru: \u041D\u043E\u0432\u043E\u0441\u0442\u0438"},"blogid":"42212478","content":"<p>Apache Kafka\u00A0\u2014 \u044D\u0442\u043E \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043F\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0439, \u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043D\u043D\u0430\u044F \u043D\u0430 \u0432\u044B\u0441\u043E\u043A\u0443\u044E \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u043D\u0443\u044E \u0441\u043F\u043E\u0441\u043E\u0431\u043D\u043E\u0441\u0442\u044C.<\/p><p>\u041A\u043B\u044E\u0447\u0435\u0432\u044B\u0435 \u043E\u0441\u043E\u0431\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u044B:\n<\/p><ul><li> \u0421\u043A\u043E\u0440\u043E\u0441\u0442\u044C: \u043E\u0434\u0438\u043D \u0443\u0437\u0435\u043B \u
 043A\u043B\u0430\u0441\u0442\u0435\u0440\u0430 \u043C\u043E\u0436\u0435\u0442 \u043E\u0431\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0441\u043E\u0442\u043D\u0438 \u043C\u0435\u0433\u0430\u0431\u0430\u0439\u0442 \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0443.\n<\/li><li> \u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043C\u043E\u0441\u0442\u044C: \u043A\u043B\u0430\u0441\u0442\u0435\u0440 \u043C\u043E\u0436\u043D\u043E \u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u043E \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u0442\u044C \u0431\u0435\u0437 \u043F\u0440\u043E\u0441\u0442\u043E\u044F, \u043F\u043E\u0442\u043E\u043A\u0438 \u0434\u0430\u043D\u043D\u044B\u0445 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B.\n<\/li><li> \u041D\u0430\u0434\u0435\u0436\u043D\u043E\u0441\u0442\u044C: \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u0432 \u043A\u043B\u0430\u0441\
 u0442\u0435\u0440\u0435 \u043E\u0442\u0440\u0435\u043F\u043B\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B, \u043A\u0430\u0436\u0434\u044B\u0439 \u0443\u0437\u0435\u043B \u043C\u043E\u0436\u0435\u0442 \u0434\u0435\u0440\u0436\u0430\u0442\u044C \u0442\u0435\u0440\u0430\u0431\u0430\u0439\u0442\u044B \u0434\u0430\u043D\u043D\u044B\u0445 \u0431\u0435\u0437 \u043F\u043E\u0442\u0435\u0440\u044C \u0432 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438.\n<\/li><\/ul><p>\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 0.8.1:\n<\/p><ul><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0434\u0435\u0434\u0443\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0438 \u043B\u043E\u0433\u043E\u0432.\n<\/li><li> \u0423\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u0438\u0435 \u0441\u043A\u043E\u0440\u043E\u0441\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u0438 \u0437\u0430 \u0441\u044
 7\u0435\u0442 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F fsync.\n<\/li><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0447\u0438\u0441\u043B\u0430 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439 \u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u0442\u043E\u043F\u0438\u043A\u043E\u0432.\n<\/li><li> \u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0431\u0430\u043B\u0430\u043D\u0441\u0438\u0440\u043E\u0432\u043A\u0430 \u043B\u0438\u0434\u0435\u0440\u043E\u0432 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439.\n<\/li><li> \u0411\u0430\u0433\u0444\u0438\u043A\u0441\u044B.\n<\/li><\/ul><p><a href=\"http:\/\/blog.empathybox.com\/post\/79427855885\/whats-new-in-kafka-0-8-1\">\u041D\u043E\u0432\u043E\u0435 \u0432 \u0432\u0435\u
 0440\u0441\u0438\u0438 0.8.1<\/a><br>\n<a href=\"http:\/\/kafka.apache.org\/downloads.html\">\u0421\u043A\u0430\u0447\u0430\u0442\u044C<\/a>\n<\/p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i class=\"icon-tag\"><\/i>\u00A0<a class=tag rel=tag href=\"\/tag\/apache\">apache<\/a>, <a class=tag rel=tag href=\"\/tag\/kafka\">kafka<\/a><\/p><img src=\"http:\/\/feeds.feedburner.com\/~r\/org\/LOR\/~4\/0Cl5cgvj20E\" height=\"1\" width=\"1\"\/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","domain":"linux.org.ru","guid":"c8e402c6f69616765379b32b6edf23d6","id":"1e3b3148d255aa00e072d1c6eda76db0","lang":"ru","link":"http:\/\/www.linux.org.ru\/news\/opensource\/10310499","parseddate":"Mon, 24 Mar 2014 07:36:23 +0000","postid":"ad06b468-00fd-4934-858a-758a5d1d80c9","title":"\u0412\u044B\u0448\u043B\u0430 \u043D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Apache Kafka","type":"post"},"interaction":{"author":{"name":"Reset"},"content":"<p>Apache Kafka\u00A
 0\u2014 \u044D\u0442\u043E \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043F\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0439, \u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043D\u043D\u0430\u044F \u043D\u0430 \u0432\u044B\u0441\u043E\u043A\u0443\u044E \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u043D\u0443\u044E \u0441\u043F\u043E\u0441\u043E\u0431\u043D\u043E\u0441\u0442\u044C.<\/p><p>\u041A\u043B\u044E\u0447\u0435\u0432\u044B\u0435 \u043E\u0441\u043E\u0431\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u044B:\n<\/p><ul><li> \u0421\u043A\u043E\u0440\u043E\u0441\u0442\u044C: \u043E\u0434\u0438\u043D \u0443\u0437\u0435\u043B \u043A\u043B\u0430\u0441\u0442\u0435\u0440\u0430 \u043C\u043E\u0436\u0435\u0442 \u043E\u0431\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0441\u043E\u0442\u043D\u0438 \u043C\u0435\
 u0433\u0430\u0431\u0430\u0439\u0442 \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0443.\n<\/li><li> \u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043C\u043E\u0441\u0442\u044C: \u043A\u043B\u0430\u0441\u0442\u0435\u0440 \u043C\u043E\u0436\u043D\u043E \u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u043E \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u0442\u044C \u0431\u0435\u0437 \u043F\u0440\u043E\u0441\u0442\u043E\u044F, \u043F\u043E\u0442\u043E\u043A\u0438 \u0434\u0430\u043D\u043D\u044B\u0445 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B.\n<\/li><li> \u041D\u0430\u0434\u0435\u0436\u043D\u043E\u0441\u0442\u044C: \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u0432 \u043A\u043B\u0430\u0441\u0442\u0435\u0440\u0435 \u043E\u0442\u0440\u0435\u043F\u043B\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B, \u043A\u0430\u0436\u0434\u044B\u0439 \u0443\u0437\u0435\u043B \u043C\u043E\u043
 6\u0435\u0442 \u0434\u0435\u0440\u0436\u0430\u0442\u044C \u0442\u0435\u0440\u0430\u0431\u0430\u0439\u0442\u044B \u0434\u0430\u043D\u043D\u044B\u0445 \u0431\u0435\u0437 \u043F\u043E\u0442\u0435\u0440\u044C \u0432 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438.\n<\/li><\/ul><p>\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 0.8.1:\n<\/p><ul><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0434\u0435\u0434\u0443\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0438 \u043B\u043E\u0433\u043E\u0432.\n<\/li><li> \u0423\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u0438\u0435 \u0441\u043A\u043E\u0440\u043E\u0441\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u0438 \u0437\u0430 \u0441\u0447\u0435\u0442 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043
 8\u044F fsync.\n<\/li><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0447\u0438\u0441\u043B\u0430 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439 \u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u0442\u043E\u043F\u0438\u043A\u043E\u0432.\n<\/li><li> \u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0431\u0430\u043B\u0430\u043D\u0441\u0438\u0440\u043E\u0432\u043A\u0430 \u043B\u0438\u0434\u0435\u0440\u043E\u0432 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439.\n<\/li><li> \u0411\u0430\u0433\u0444\u0438\u043A\u0441\u044B.\n<\/li><\/ul><p><a href=\"http:\/\/blog.empathybox.com\/post\/79427855885\/whats-new-in-kafka-0-8-1\">\u041D\u043E\u0432\u043E\u0435 \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 0.8.1<\/a><br>\n<a href=\"http:\/\/kafka.apache.org\/downloads.html\">\u0421\u043A\u0430\u0447\u0430\u0442\u044C<\/a>\n<\/p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i
  class=\"icon-tag\"><\/i>\u00A0<a class=tag rel=tag href=\"\/tag\/apache\">apache<\/a>, <a class=tag rel=tag href=\"\/tag\/kafka\">kafka<\/a><\/p><img src=\"http:\/\/feeds.feedburner.com\/~r\/org\/LOR\/~4\/0Cl5cgvj20E\" height=\"1\" width=\"1\"\/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","id":"1e3b3148d255aa00e072d1c6eda76db0","link":"http:\/\/www.linux.org.ru\/news\/opensource\/10310499","schema":{"version":3},"subtype":"post","title":"\u0412\u044B\u0448\u043B\u0430 \u043D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Apache Kafka","type":"blog"},"language":{"confidence":95,"tag":"ru","tag_extended":"ru"}}
+{"blog":{"author":{"name":"jay"},"blog":{"link":"http:\/\/gilamotor.com\/","title":"Gilamotor Evalube"},"blogid":"56981296","category":"News,headline,Andry Berlianto,Round The Borneo,tvs apache rtr 180","content":"<p><strong>GILAMOTORcom \u2013<\/strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.<\/p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.<\/p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi 
 tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.<\/p>\n<p>\u201CDisektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,\u201D papar Andry Berlianto, Road Captain RTB.<\/p>\n<p>\u201CTerbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,\u201D sambung Agoy yang juga ikut dalam tim RTB.<\/p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau \u00A0TVSApache juga handal dijadikan motor petualang.<\/p>\n<p>\u201CProject Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS 
 Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,\u201D tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.<\/p>\n\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-1\/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-2\/' title='TVS Apache RTR Round The Borneo 2'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apach
 e RTR Round The Borneo 2\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-3\/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-4\/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" \/><\/a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","domain":"gilamotor.com","guid":"d61190c66d456eb1694e4
 25f2f101864","id":"1e3b33725343ab00e0724a3022b9fdfe","lang":"id","link":"http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/","parseddate":"Mon, 24 Mar 2014 09:50:09 +0000","postid":"eecec8d4-4a11-45b0-93d4-3cbfcecd5865","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"jay"},"content":"<p><strong>GILAMOTORcom \u2013<\/strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.<\/p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesunggu
 hnya dimulai.<\/p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.<\/p>\n<p>\u201CDisektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,\u201D papar Andry Berlianto, Road Captain RTB.<\/p>\n<p>\u201CTerbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,\u201D sambung Agoy yang juga ikut dalam tim RTB.<\/p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau \u00A0TVSApache juga 
 handal dijadikan motor petualang.<\/p>\n<p>\u201CProject Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,\u201D tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.<\/p>\n\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-1\/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-2\/' title='TVS Apache RTR Roun
 d The Borneo 2'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 2\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-3\/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-4\/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" 
 class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" \/><\/a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","id":"1e3b33725343ab00e0724a3022b9fdfe","link":"http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/","received_at":4743640609237236502,"schema":{"version":3},"subtype":"post","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
+{"blog":{"author":{"name":"admin"},"blog":{"link":"http:\/\/www.joinebook.com\/","title":"Join eBook, Free eBook Download"},"blogid":"72892858","content":"<div id=\"iframeContent\">\n<h3>Book Description<\/h3>\n<p>Build and integrate Accumulo clusters with various cloud platforms<\/p>\n<p><b>Overview<\/b><\/p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux<\/li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms<\/li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease<\/li>\n<\/ul>\n<p><b>In Detail<\/b><\/p>\n<p>Accumulo is a sorted and distributed key\/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google\u2019s BigTable design and is built on top of Apache Had
 oop, Zookeeper, and Thrift.<\/p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.<\/p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems \u2013 Hadoop, ZooKeeper, and Accumulo \u2013 and configuring, monitoring, and securing them.<\/p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.<\/p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo
  cell-level security to secure your data.<\/p>\n<p><b>What you will learn from this book<\/b><\/p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo<\/li>\n<li>Monitor clusters \u2013 both performance and application logs<\/li>\n<li>Secure your data in Accumulo<\/li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance<\/li>\n<li>Integrate to various cloud platforms<\/li>\n<li>Use the Accumulo command-line shell<\/li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs<\/li>\n<li>Understand what tools are needed to optimize Accumulo performance<\/li>\n<\/ul>\n<p><b>Approach<\/b><\/p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.<\/p>\n<p><b>Who this book is written for<\/b><\/p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how 
 to use Accumulo. It\u2019s assumed that you have an understanding of how Hadoop works, both HDFS and the Map\/Reduce. No prior knowledge of ZooKeeper is assumed.<\/p>\n<h3>Book Details<\/h3>\n<div>\n<ul>\n<li><b>Paperback:<\/b> 120 pages<\/li>\n<li><b>Publisher:<\/b> Packt Publishing (October 16, 2013)<\/li>\n<li><b>Language:<\/b> English<\/li>\n<li><b>ISBN-10:<\/b> 1783285990<\/li>\n<li><b>ISBN-13:<\/b> 978-1783285990<\/li>\n<\/ul>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","domain":"www.joinebook.com","guid":"7e2ed225f2be5b7a8f3ee6d7defa89b3","id":"1e3b38071f03a400e072d82a1cb03a68","lang":"en","link":"http:\/\/www.joinebook.com\/apache-accumulo-for-developers\/","parseddate":"Tue, 25 Mar 2014 14:15:02 +0000","postid":"0b3e093d-4e84-42ca-bcb1-eb140b008ff6","title":"Apache Accumulo for Developers","type":"post"},"interaction":{"author":{"name":"admin"},"content":"<div id=\"iframeContent\">\n<h3>Book Description<\/h3>\n<p>Build and integrat
 e Accumulo clusters with various cloud platforms<\/p>\n<p><b>Overview<\/b><\/p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux<\/li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms<\/li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease<\/li>\n<\/ul>\n<p><b>In Detail<\/b><\/p>\n<p>Accumulo is a sorted and distributed key\/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google\u2019s BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift.<\/p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabyte
 s of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.<\/p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems \u2013 Hadoop, ZooKeeper, and Accumulo \u2013 and configuring, monitoring, and securing them.<\/p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.<\/p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data.<\/p>\n<p><b>What you will learn from this book<\/b><\/p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo<\/li>\n<li>Monitor clusters \u2013 both performance and application logs<\/li>\n<li
 >Secure your data in Accumulo<\/li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance<\/li>\n<li>Integrate to various cloud platforms<\/li>\n<li>Use the Accumulo command-line shell<\/li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs<\/li>\n<li>Understand what tools are needed to optimize Accumulo performance<\/li>\n<\/ul>\n<p><b>Approach<\/b><\/p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.<\/p>\n<p><b>Who this book is written for<\/b><\/p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It\u2019s assumed that you have an understanding of how Hadoop works, both HDFS and the Map\/Reduce. No prior knowledge of ZooKeeper is assumed.<\/p>\n<h3>Book Details<\/h3>\n<div>\n<ul>\n<li><b>Paperback:<\/b> 120 
 pages<\/li>\n<li><b>Publisher:<\/b> Packt Publishing (October 16, 2013)<\/li>\n<li><b>Language:<\/b> English<\/li>\n<li><b>ISBN-10:<\/b> 1783285990<\/li>\n<li><b>ISBN-13:<\/b> 978-1783285990<\/li>\n<\/ul>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","id":"1e3b38071f03a400e072d82a1cb03a68","link":"http:\/\/www.joinebook.com\/apache-accumulo-for-developers\/","schema":{"version":3},"subtype":"post","title":"Apache Accumulo for Developers","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Apache Accumulo","sentiment":35,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examp
 les","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"ZooKeeper","sentiment":22,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"Windows","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes":["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust"]},{"name":"Linux","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes"
 :["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust"]},{"name":"Amazon.com","sentiment":7,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","performance bottlenecks","cloud platforms","monitoring tools","cell-level security"]},{"name":"Google","sentiment":4,"confident":1,"label":"Company","evidence":5,"type":"Company","about":0,"themes":["real-time data storage","highly robust"]},{"name":"October 16, 2013","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0,"themes":["Book Details Paperback","prior knowledge"]}],"sentiment":2,"topics":[{"name":"Software and Internet","score":0.50457036495209,"additional":"Apache Accumulo for Developers looks at the process of settin
 g up three systems \u2013 Hadoop, ZooKeeper, and Accumulo \u2013 and configuring, monitoring, and securing them. You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data. What you will learn from this book Set up Hadoop, ZooKeeper, and Accumulo Monitor clusters \u2013 both performance and application logs Secure your data in Accumulo Optimize Hadoop, ZooKeeper, and Accumulo performance Integrate to various cloud platforms Use the Accumulo command-line shell Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs Understand what tools are needed to optimize Accumulo performance Approach The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.","hits":0}]},"title":{"sentiment":0,"topics":[{"name":"Software and Internet","score":0.5521121621131
 9,"additional":"Apache Accumulo for Developers","hits":0}]}}}
+{"blog":{"blog":{"link":"http:\/\/ibm.ulitzer.com\/","title":"Latest News from IBM News on Ulitzer"},"blogid":"71106617","content":"<p><span class=\"xn-location\">FOREST HILL, Md.<\/span>, <span class=\"xn-chron\">March 25, 2014<\/span> \/PRNewswire\/ --\u00A0The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.<\/p><p><a href=\"http:\/\/ibm.ulitzer.com\/node\/3026607\" target=\"_blank\">read more<\/a><\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","domain":"ibm.ulitzer.com","guid":"3032fcc90b1d53e13ec24b46bf6ad3a3","id":"1e3b41519b74a180e072fbcdee35ca7e","lang":"en","link":"http:\/\/ibm.ulitzer.com\/node\/3026607","parseddate":"Tue, 25 Mar 2014 14:51:38 +0000","postid":"6eeaec5e-861b-4640-8276-f7ab8b8a3523","title":"The Apache Software Foundation Ann
 ounces Apache\u2122 CloudStack\u2122 v4.3","type":"post"},"interaction":{"content":"<p><span class=\"xn-location\">FOREST HILL, Md.<\/span>, <span class=\"xn-chron\">March 25, 2014<\/span> \/PRNewswire\/ --\u00A0The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.<\/p><p><a href=\"http:\/\/ibm.ulitzer.com\/node\/3026607\" target=\"_blank\">read more<\/a><\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","id":"1e3b41519b74a180e072fbcdee35ca7e","link":"http:\/\/ibm.ulitzer.com\/node\/3026607","schema":{"version":3},"subtype":"post","title":"The Apache Software Foundation Announces Apache\u2122 CloudStack\u2122 v4.3","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"FOREST HILL, Md.","sen
 timent":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1,"themes":["latest feature release","all-volunteer developers"]},{"name":"March 25, 2014","sentiment":-1,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["latest feature release","all-volunteer developers"]}],"sentiment":-1},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"Apache"},"comment":{"id":"650dba80c6b04a2124e0075cff28af4b"},"content":"<p>C&rsquo;est triste pour ces hommes sinc\u00E8res et lucides, amoureux de la v\u00E9rit\u00E9<br \/>\nLes int\u00E9gristes n&rsquo;aiment pas la v\u00E9rit\u00E9 tant ils sont aveugl\u00E9s par LEUR V\u00C9RIT\u00C9 qu&rsquo;ils veulent nous imposer par la force et par la mort.<br \/>\nDans toutes les religions l&rsquo;int\u00E9grisme est dangereux.<br \/>\nNous avons excell\u00E9 dans l&rsquo;inquisition en tant que chr\u00E9tiens .<br \/>\nMaintenant nous subissons \u00E0 notre tour les exc\u00E8s de gens \u00E9lev\u00E9s dans de fausses id\u00E9es moyen\u00E2geuses.<br \/>\nJe souhaite de tout mon c\u0153ur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les prot\u00E8ge .<br \/>\nIls sont peut \u00EAtre sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la v\u00E9rit\u00E9 et pratiquant le bien e
 st agr\u00E9able \u00E0 ses yeux.Et que sa main ne sera pas assez courte pour les sauver.<\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","domain":"leblogdrzz.over-blog.com","id":"1e3b4580ed1da080e072338f47a54b24","lang":"fr","link":"http:\/\/www.dreuz.info\/2014\/03\/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens\/","parseddate":"Tue, 25 Mar 2014 20:22:24 +0000","post":{"created_at":"Tue, 25 Mar 2014 09:46:53 +0000","guid":"287825f6c2bd7e5f1a5615286d028e56","link":"http:\/\/www.dreuz.info\/2014\/03\/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens\/","title":"Salem Ben Ammar, auteur chez Dreuz, est menac\u00E9 de mort par des islamistes tunisiens"},"source":{"crawled":"Tue, 25 Mar 2014 11:43:43 +0000","guid":"5c3074412dceeb8b550f4f8467bdce0d","id":"48710360","language":"fr","link":"leblogdrzz.over-blog.com","title":"Dreuz.info","type":"blogs"},"title":"Par : Apache","type":"comment"},"inte
 raction":{"author":{"name":"Apache"},"content":"<p>C&rsquo;est triste pour ces hommes sinc\u00E8res et lucides, amoureux de la v\u00E9rit\u00E9<br \/>\nLes int\u00E9gristes n&rsquo;aiment pas la v\u00E9rit\u00E9 tant ils sont aveugl\u00E9s par LEUR V\u00C9RIT\u00C9 qu&rsquo;ils veulent nous imposer par la force et par la mort.<br \/>\nDans toutes les religions l&rsquo;int\u00E9grisme est dangereux.<br \/>\nNous avons excell\u00E9 dans l&rsquo;inquisition en tant que chr\u00E9tiens .<br \/>\nMaintenant nous subissons \u00E0 notre tour les exc\u00E8s de gens \u00E9lev\u00E9s dans de fausses id\u00E9es moyen\u00E2geuses.<br \/>\nJe souhaite de tout mon c\u0153ur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les prot\u00E8ge .<br \/>\nIls sont peut \u00EAtre sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la v\u00E9rit\u00E9 et pratiquant le bien est agr\u00E9able \u00E0 ses yeux.Et que sa main ne 
 sera pas assez courte pour les sauver.<\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","id":"1e3b4580ed1da080e072338f47a54b24","link":"http:\/\/www.dreuz.info\/2014\/03\/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens\/","schema":{"version":3},"subtype":"comment","title":"Par : Apache","type":"blog"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
+{"blog":{"author":{"name":"Tip Meister"},"blog":{"link":"http:\/\/www.lamp-tips.com\/","title":"Linux Apache MySQL PHP Tips"},"blogid":"71186799","content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","domain":"www.lamp-tips.com","guid":"eb93f438e4191fd92fc1664a71c30a83","id":"1e3b4799c71ea800e07243367e6972b4","lang":"en","link":"http:\/\/www.lamp-tips.com\/apache\/what-does-apache-camel-do\/","parseddate":"Wed, 26 Mar 2014 00:16:44 +0000","postid":"33815629-a87b-488f-9ca5-98c7359733d1","title":"What does Apache Camel do?","type":"post"},"interaction":{"author":{"name":"Tip Meister"},"content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","id":"1e3b4799c71ea800e07243367e6972b4","link":"http:\/\/www.lamp-tips.com\/apache\/what-does-apache-camel-do\/","received_at":4743641192805852774,"schema":{"version":3},"subtype":"post","title":"What does Apache Camel do?"
 ,"type":"blog"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"blog":{"author":{"name":"Sv\u011Bt knihy"},"blog":{"link":"http:\/\/ceske-knizky.cz\/","title":"\u010Cesk\u00E9 kn\u00ED\u017Eky"},"blogid":"71098056","content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech slu\u017Eby v britsk\u00E9 arm\u00E1d\u011B pl\u00E1nuje Ed Macy odchod do v\u00FDslu\u017Eby. Ale tento pl\u00E1n odkl\u00E1d\u00E1, proto\u017Ee souhlasil s je\u0161t\u011B jedn\u00EDm turnusem v ji\u017En\u00EDm Afgh\u00E1nist\u00E1nu jako zbra\u0148ov\u00FD specialista, l\u00E9taj\u00EDc\u00ED na \u00FApln\u011B nov\u00E9m vrtuln\u00EDku Apache. Je to nejsmrtonosn\u011Bj\u0161\u00ED a technicky nejvysp\u011Blej\u0161\u00ED vrtuln\u00EDk na sv\u011Bt\u011B. Let\u011Bt s vrtuln\u00EDkem Apache do boje je jako hr\u00E1t sou\u010Dasn\u011B na Xboxu, PlayStationu a velmistrovskou partii \u0161achu \u2013 a p\u0159itom se v\u00E9zt na nejv\u011Bt\u0161\u00ED horsk\u00E9 dr\u00E1ze v Disneylandu. Podle zji\u0161t\u011Bn\u00ED americk\u
 00FDch studi\u00ED dok\u00E1\u017Ee jen mal\u00E9 procento lidsk\u00FDch mozk\u016F soub\u011B\u017En\u011B zvl\u00E1dnout v\u0161echny po\u017Eadovan\u00E9 \u010Dinnosti p\u0159i pilotov\u00E1n\u00ED tohoto letounu.\u2026A nejenom jednu nebo dv\u011B minuty, ale t\u0159i hodiny bez p\u0159est\u00E1vky. Pokud jste p\u0159ehl\u00E9dl jednu kl\u00ED\u010Dovou v\u011Bc, mohl jste okam\u017Eit\u011B zab\u00EDt sebe i sv\u00E9ho kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvaln\u011B zn\u00E1m\u00E9 afgh\u00E1nsk\u00E9 provincii Hilmand, v drsn\u00E9 a nehostinn\u00E9 oblasti, m\u00EDstn\u00EDmi naz\u00FDvan\u00E9 Da\u0161t-e-Margo (Pou\u0161\u0165 smrti). Operace dostala n\u00E1zev Herrick. Posl\u00E1n\u00EDm Macyho a jeho letky Apache bylo bojovat spolu s mu\u017Ei na zemi a chr\u00E1nit je v\u0161emi nezbytn\u00FDmi prost\u0159edky. Kdy\u017E se jeden p\u0159\u00EDslu\u0161n\u00EDk n\u00E1mo\u0159n\u00ED p\u011Bchoty poh\u0159e\u0161oval v akci, Ed a jeho t\u00FD
 m byli jedinou nad\u011Bj\u00ED arm\u00E1dy na to, \u017Ee ho doprav\u00ED zp\u00E1tky \u017Eiv\u00E9ho. S voj\u00E1ky, p\u0159ipoutan\u00FDmi po obou stran\u00E1ch bitevn\u00EDch vrtuln\u00EDk\u016F musel p\u0159ist\u00E1t v srdci pevnosti Jugroom, t\u00E1lib\u00E1nsk\u00E9m op\u011Brn\u00E9m bod\u011B a postavit se tv\u00E1\u0159\u00ED v tv\u00E1\u0159 hord\u00E1m ne\u00FAprosn\u00E9ho nep\u0159\u00EDtele. N\u00E1sledoval dech berouc\u00ED pokus o z\u00E1chranu. Kniha Pilotem Apache, n\u011Bco mezi \u010Cern\u00FD jest\u0159\u00E1b sest\u0159elen a T\u011Bsn\u011B vedle, popisuje odv\u00E1\u017Enou misi, za ni\u017E byl Ed Macy jako prvn\u00ED pilot v historii britsk\u00E9ho letectva vyznamen\u00E1n velmi presti\u017En\u00EDm Vojensk\u00FDm k\u0159\u00ED\u017Eem. Pilotem Apache je p\u0159\u00EDb\u011Bh Macyho, story o odvaze, nebezpe\u010D\u00ED a kamar\u00E1dstv\u00ED, kterou p\u0159e\u010Dtete jedn\u00EDm dechem. Kniha je dopln\u011Bna situa\u010Dn\u00EDmi mapkami a barevnou obr
 azovou p\u0159\u00EDlohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelstv\u00ED: Omnibooks  Rok vyd\u00E1n\u00ED: 2012  Doporu\u010Den\u00E1 cena: 349  Po\u010Det stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je mo\u017En\u011B koupit v klasick\u00E9m internetov\u00E9m knihkupectv\u00ED Beletrie nebo modern\u00EDm internetov\u00E9m knihkupectv\u00ED U Mobi . Koupen\u00E9 knihy si m\u016F\u017Eete ulo\u017Eit do kabelky \u00A0\u010D\u00ED aktovky z internetov\u00E9ho obchodu www.purses-kabelky.cz \n \nDal\u0161\u00ED knihy:   \u010Ceskoslovensk\u00E1 lidov\u00E1 arm\u00E1da\u2026  Nejv\u011Bt\u0161\u00ED tajemn\u00E1 spiknut\u00ED (G\u2026  Krugo Bajkalka (Turek V\u00E1clav)  Report\u00E9rem na t\u0159ech kontinen\u2026  M\u016Fj \u017Eivot \u2013 Fascinuj\u00EDc\u00ED a in\u2026  Ilumin\u00E1ti (Makow Henri)  Pra\u017Esk\u00E9 katastrofy  Glob\u00E1ln\u00ED Minotaurus \u2013 Amerik\u2026  Mordcentr\u00E1la X (C\u00EDlek Roman)  V\u00FDbuch nad 
 tajgou (Jir\u00E1nek J\u2026  Radik\u00E1ln\u00ED pravice v N\u011Bmecku \u2026  Nepoko\u0159en\u00E1 (Val\u010Deva Kristiana)  Tenkr\u00E1t za prvn\u00ED republiky (\u2026  V\u011Bchi (Miln\u00EDky) (Ber\u010Fajev Ni\u2026  Belze, Sobibor, Treblinka (A\u2026","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","domain":"ceske-knizky.cz","guid":"f6d6c4a76240a3d4ef20ea2a75f80893","id":"1e3b4809fbcaa200e072eade39a77334","lang":"cs","link":"http:\/\/ceske-knizky.cz\/pilotem-apache-macy-ed-2\/","parseddate":"Wed, 26 Mar 2014 02:37:30 +0000","postid":"858cfa87-6b6a-49a8-aa1c-7bf5449976d8","title":"Pilotem Apache (Macy Ed)","type":"post"},"interaction":{"author":{"name":"Sv\u011Bt knihy"},"content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech slu\u017Eby v britsk\u00E9 arm\u00E1d\u011B pl\u00E1nuje Ed Macy odchod do v\u00FDslu\u017Eby. Ale tento pl\u00E1n odkl\u00E1d\u00E1, proto\u017Ee souhlasil s je\u0161t\u011B jedn\u00EDm 
 turnusem v ji\u017En\u00EDm Afgh\u00E1nist\u00E1nu jako zbra\u0148ov\u00FD specialista, l\u00E9taj\u00EDc\u00ED na \u00FApln\u011B nov\u00E9m vrtuln\u00EDku Apache. Je to nejsmrtonosn\u011Bj\u0161\u00ED a technicky nejvysp\u011Blej\u0161\u00ED vrtuln\u00EDk na sv\u011Bt\u011B. Let\u011Bt s vrtuln\u00EDkem Apache do boje je jako hr\u00E1t sou\u010Dasn\u011B na Xboxu, PlayStationu a velmistrovskou partii \u0161achu \u2013 a p\u0159itom se v\u00E9zt na nejv\u011Bt\u0161\u00ED horsk\u00E9 dr\u00E1ze v Disneylandu. Podle zji\u0161t\u011Bn\u00ED americk\u00FDch studi\u00ED dok\u00E1\u017Ee jen mal\u00E9 procento lidsk\u00FDch mozk\u016F soub\u011B\u017En\u011B zvl\u00E1dnout v\u0161echny po\u017Eadovan\u00E9 \u010Dinnosti p\u0159i pilotov\u00E1n\u00ED tohoto letounu.\u2026A nejenom jednu nebo dv\u011B minuty, ale t\u0159i hodiny bez p\u0159est\u00E1vky. Pokud jste p\u0159ehl\u00E9dl jednu kl\u00ED\u010Dovou v\u011Bc, mohl jste okam\u017Eit\u011B zab\u00EDt sebe i sv\u00E9ho kopilota. Konc
 em roku 2006 byla Macyho letka Apache nasazena v nechvaln\u011B zn\u00E1m\u00E9 afgh\u00E1nsk\u00E9 provincii Hilmand, v drsn\u00E9 a nehostinn\u00E9 oblasti, m\u00EDstn\u00EDmi naz\u00FDvan\u00E9 Da\u0161t-e-Margo (Pou\u0161\u0165 smrti). Operace dostala n\u00E1zev Herrick. Posl\u00E1n\u00EDm Macyho a jeho letky Apache bylo bojovat spolu s mu\u017Ei na zemi a chr\u00E1nit je v\u0161emi nezbytn\u00FDmi prost\u0159edky. Kdy\u017E se jeden p\u0159\u00EDslu\u0161n\u00EDk n\u00E1mo\u0159n\u00ED p\u011Bchoty poh\u0159e\u0161oval v akci, Ed a jeho t\u00FDm byli jedinou nad\u011Bj\u00ED arm\u00E1dy na to, \u017Ee ho doprav\u00ED zp\u00E1tky \u017Eiv\u00E9ho. S voj\u00E1ky, p\u0159ipoutan\u00FDmi po obou stran\u00E1ch bitevn\u00EDch vrtuln\u00EDk\u016F musel p\u0159ist\u00E1t v srdci pevnosti Jugroom, t\u00E1lib\u00E1nsk\u00E9m op\u011Brn\u00E9m bod\u011B a postavit se tv\u00E1\u0159\u00ED v tv\u00E1\u0159 hord\u00E1m ne\u00FAprosn\u00E9ho nep\u0159\u00EDtele. N\u00E1sledoval dech berouc\u0
 0ED pokus o z\u00E1chranu. Kniha Pilotem Apache, n\u011Bco mezi \u010Cern\u00FD jest\u0159\u00E1b sest\u0159elen a T\u011Bsn\u011B vedle, popisuje odv\u00E1\u017Enou misi, za ni\u017E byl Ed Macy jako prvn\u00ED pilot v historii britsk\u00E9ho letectva vyznamen\u00E1n velmi presti\u017En\u00EDm Vojensk\u00FDm k\u0159\u00ED\u017Eem. Pilotem Apache je p\u0159\u00EDb\u011Bh Macyho, story o odvaze, nebezpe\u010D\u00ED a kamar\u00E1dstv\u00ED, kterou p\u0159e\u010Dtete jedn\u00EDm dechem. Kniha je dopln\u011Bna situa\u010Dn\u00EDmi mapkami a barevnou obrazovou p\u0159\u00EDlohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelstv\u00ED: Omnibooks  Rok vyd\u00E1n\u00ED: 2012  Doporu\u010Den\u00E1 cena: 349  Po\u010Det stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je mo\u017En\u011B koupit v klasick\u00E9m internetov\u00E9m knihkupectv\u00ED Beletrie nebo modern\u00EDm internetov\u00E9m knihkupectv\u00ED U Mobi . Koupen\u00E9 knihy si m\u016F\u017Eete ulo
 \u017Eit do kabelky \u00A0\u010D\u00ED aktovky z internetov\u00E9ho obchodu www.purses-kabelky.cz \n \nDal\u0161\u00ED knihy:   \u010Ceskoslovensk\u00E1 lidov\u00E1 arm\u00E1da\u2026  Nejv\u011Bt\u0161\u00ED tajemn\u00E1 spiknut\u00ED (G\u2026  Krugo Bajkalka (Turek V\u00E1clav)  Report\u00E9rem na t\u0159ech kontinen\u2026  M\u016Fj \u017Eivot \u2013 Fascinuj\u00EDc\u00ED a in\u2026  Ilumin\u00E1ti (Makow Henri)  Pra\u017Esk\u00E9 katastrofy  Glob\u00E1ln\u00ED Minotaurus \u2013 Amerik\u2026  Mordcentr\u00E1la X (C\u00EDlek Roman)  V\u00FDbuch nad tajgou (Jir\u00E1nek J\u2026  Radik\u00E1ln\u00ED pravice v N\u011Bmecku \u2026  Nepoko\u0159en\u00E1 (Val\u010Deva Kristiana)  Tenkr\u00E1t za prvn\u00ED republiky (\u2026  V\u011Bchi (Miln\u00EDky) (Ber\u010Fajev Ni\u2026  Belze, Sobibor, Treblinka (A\u2026","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","id":"1e3b4809fbcaa200e072eade39a77334","link":"http:\/\/ceske-knizky.cz\/pilotem-apache-macy-ed-2\/","schema":{"
 version":3},"subtype":"post","title":"Pilotem Apache (Macy Ed)","type":"blog"},"language":{"confidence":99,"tag":"cs","tag_extended":"cs"}}
+{"blog":{"author":{"name":"Benjamin D. Thomas"},"blog":{"link":"http:\/\/lxer.com\/","title":"LXer Linux News"},"blogid":"40458952","content":"Apache HTTP server could be made to crash if it received specially craftednetwork 

<TRUNCATED>

[17/45] git commit: Removed commented code per request

Posted by mf...@apache.org.
Removed commented code per request


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/7337b09b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/7337b09b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/7337b09b

Branch: refs/heads/master
Commit: 7337b09b63c5507131bb8ee9c709a3b77a93260a
Parents: 997c691
Author: rebanks <re...@w2odigital.com>
Authored: Mon Jun 16 11:56:05 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Mon Jun 16 11:56:05 2014 -0500

----------------------------------------------------------------------
 .../DatasiftTypeConverterProcessor.java         | 25 ++++++++++----------
 .../DatasiftTweetActivitySerializer.java        |  2 +-
 2 files changed, 13 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/7337b09b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
index 33439ba..d04c04b 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
@@ -21,8 +21,7 @@ package org.apache.streams.datasift.provider;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
-import org.apache.streams.core.StreamsDatum;
-import org.apache.streams.core.StreamsProcessor;
+import org.apache.streams.core.*;
 import org.apache.streams.datasift.Datasift;
 import org.apache.streams.datasift.serializer.DatasiftActivitySerializer;
 import org.apache.streams.jackson.StreamsJacksonMapper;
@@ -35,7 +34,7 @@ import java.util.List;
 /**
  *
  */
-public class DatasiftTypeConverterProcessor implements StreamsProcessor {
+public class DatasiftTypeConverterProcessor implements StreamsProcessor,DatumStatusCountable {
 
     private final static Logger LOGGER = LoggerFactory.getLogger(DatasiftTypeConverterProcessor.class);
 
@@ -43,6 +42,7 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
     private Class outClass;
     private DatasiftActivitySerializer datasiftInteractionActivitySerializer;
     private DatasiftConverter converter;
+    private DatumStatusCounter counter;
 
     public final static String TERMINATE = new String("TERMINATE");
 
@@ -52,6 +52,7 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
 
     @Override
     public List<StreamsDatum> process(StreamsDatum entry) {
+        this.counter.incrementAttempt();
         List<StreamsDatum> result = Lists.newLinkedList();
         Object doc;
         try {
@@ -61,7 +62,9 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
             }
         } catch (Exception e) {
             LOGGER.error("Exception converting Datasift Interaction to "+this.outClass.getName()+ " : {}", e);
+            this.counter.incrementStatus(DatumStatus.FAIL);
         }
+        this.counter.incrementStatus(DatumStatus.SUCCESS);
         return result;
     }
 
@@ -77,6 +80,7 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
             LOGGER.warn("Using defaulting datasift converter");
             this.converter = new DefaultConverter(this.outClass);
         }
+        this.counter = new DatumStatusCounter();
     }
 
     @Override
@@ -84,6 +88,11 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
 
     }
 
+    @Override
+    public DatumStatusCounter getDatumStatusCounter() {
+        return this.counter;
+    }
+
     private class ActivityConverter implements DatasiftConverter {
 
         @Override
@@ -109,17 +118,12 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
         public Object convert(Object toConvert, ObjectMapper mapper) {
             try {
                 if(toConvert instanceof String){
-//                    LOGGER.debug(mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class)));
                     return mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class));
                 } else {
                     if(toConvert.getClass().equals(Activity.class)) { //hack to remove additional properties
                         ObjectNode node = mapper.convertValue(toConvert, ObjectNode.class);
                         if(node.has("additionalProperties")) {
                             ObjectNode additionalProperties = (ObjectNode) node.get("additionalProperties");
-//                            node.put("keywords", additionalProperties.get("keywords"));
-//                            node.put("location", additionalProperties.get("location"));
-//                            node.put("hashtags", additionalProperties.get("hashtags"));
-//                            node.put("datasift", additionalProperties.get("datasift"));
 //                            node.put("user_mentions", additionalProperties.get("user_mentions"));
                             node.putAll(additionalProperties);
                             node.remove("additionalProperties");
@@ -128,11 +132,6 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
                             ObjectNode actor = (ObjectNode) node.get("actor");
                             if(actor.has("additionalProperties")) {
                                 ObjectNode additionalProperties = (ObjectNode) actor.get("additionalProperties");
-//                                actor.put("followers", additionalProperties.get("followers"));
-//                                actor.put("location", additionalProperties.get("location"));
-//                                actor.put("screenName", additionalProperties.get("screenName"));
-//                                actor.put("posts", additionalProperties.get("posts"));
-//                                actor.put("favorites", additionalProperties.get("favorties"));
                                 actor.putAll(additionalProperties);
                                 actor.remove("additionalProperties");
                             }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/7337b09b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
index e2394ce..f5c4d12 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
@@ -42,7 +42,7 @@ import java.util.Map;
 import static org.apache.streams.data.util.ActivityUtil.ensureExtensions;
 
 /**
- * 
+ *
  */
 public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySerializer {
 


[37/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
index 426faef..9ffaa30 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
@@ -1,1547 +1,1547 @@
-"{\"amazon\":{\"anchor\":\"533193\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/el
 asticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it h
 as to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font color=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"
 US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193\",\"links\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"threadstarter\":1,\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":
 {\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be
  improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it has to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font co
 lor=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=149131&tstart=0#533193\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200,200,200],\"created_at\":[\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:12 +0000\"],\"hops\":[[],[],[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"]],\"meta\":{\"charset\":[\"CP1252\",\"CP1252\",\"CP1252\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.\",\"Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.\",\"AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, a
 nd Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy.\"],\"lang\":[\"unknown\",\"unknown\",\"unknown\"]},\"normalized_url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"],\"retweet_count\":[0,0,0],\"title\":[\"Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk\",\"SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk\",\"Supported Platforms - AWS Elastic Beanstalk\"],\"url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInst
 ance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":1,\"type\":\"Company\",\"about\":0}],\"sentiment\":-2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
-"{\"amazon\":{\"anchor\":\"533271\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"
 AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only g
 rants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
-"{\"blog\":{\"atomversion\":\"1.0\",\"author\":{\"name\":\"basyura\"},\"blog\":{\"link\":\"http://d.hatena.ne.jp/basyura/\",\"title\":\"basyura's blog\"},\"blogid\":\"55821125\",\"content\":\"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\\n<pre class=\\\"code\\\" data-unlink><VirtualHost *:80>\\n  ProxyPass /sample http://localhost:3000/sample\\n  ProxyPassReverse /sample http://localhost:3000/sample\\n</VirtualHost></pre><p>config/environments/development.rb</p>\\n<pre class=\\\"code\\\" data-unlink>config.relative_url_root = <span class=\\\"synSpecial\\\">\\\"</span><span class=\\\"synConstant\\\">/sample</span><span class=\\\"synSpecial\\\">\\\"</span>\\n</pre><p>起動</p>\\n<pre class=\\\"code\\\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \\\"/sample/assets/\\\"</
 code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:56:24 +0000\",\"domain\":\"d.hatena.ne.jp\",\"guid\":\"1e2c1f54e6c6548c4381b6e9a6361cea\",\"id\":\"1e3b279c65cbac00e0729be4b09bfd5c\",\"lang\":\"ja\",\"link\":\"http://blog.basyura.org/entry/2014/03/23/195624\",\"links\":[\"http://localhost:3000\",\"http://localhost/sample\",\"http://localhost:3000/sample\"],\"parseddate\":\"Sun, 23 Mar 2014 15:32:03 +0000\",\"postid\":\"1426a00d-f33f-4144-b396-5160bda65a31\",\"title\":\"apache + rails をサブディレクトリで動かしたい\",\"type\":\"post\",\"updated\":\"Sun, 23 Mar 2014 10:56:24 +0000\"},\"interaction\":{\"author\":{\"name\":\"basyura\"},\"content\":\"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\\n<pre class=\\\"code\
 \\" data-unlink><VirtualHost *:80>\\n  ProxyPass /sample http://localhost:3000/sample\\n  ProxyPassReverse /sample http://localhost:3000/sample\\n</VirtualHost></pre><p>config/environments/development.rb</p>\\n<pre class=\\\"code\\\" data-unlink>config.relative_url_root = <span class=\\\"synSpecial\\\">\\\"</span><span class=\\\"synConstant\\\">/sample</span><span class=\\\"synSpecial\\\">\\\"</span>\\n</pre><p>起動</p>\\n<pre class=\\\"code\\\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \\\"/sample/assets/\\\"</code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:56:24 +0000\",\"id\":\"1e3b279c65cbac00e0729be4b09bfd5c\",\"link\":\"http://blog.basyura.org/entry/2014/03/23/195624\",\"schema\":{
 \"version\":3},\"subtype\":\"post\",\"title\":\"apache + rails をサブディレクトリで動かしたい\",\"type\":\"blog\"},\"language\":{\"confidence\":49,\"tag\":\"ja\",\"tag_extended\":\"ja\"},\"links\":{\"code\":[404],\"created_at\":[\"Sun, 23 Mar 2014 15:41:17 +0000\"],\"hops\":[[\"http://localhost/sample\"]],\"normalized_url\":[null],\"retweet_count\":[0],\"title\":[\"null\"],\"url\":[\"http://localhost/sample\"]}}"
-"{\"blog\":{\"author\":{\"name\":\"FunPonsel\"},\"blog\":{\"link\":\"http://funponsel.org/\",\"title\":\"PonSeL Indonesia.\"},\"blogid\":\"71176595\",\"content\":\"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:51:07 +0000\",\"domain\":\"funponsel.org\",\"guid\":\"0633391e1e9c865bb976c4605ca9d22f\",\"id\":\"1e3b2b3b5c93a780e072555ff59c6636\",\"lang\":\"id\",\"link\":\"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html\",\"parseddate\":\"Sun, 23 Mar 2014 19:07:40 +0000\",\"postid\":\"df16f773-3ac0-4de5-9e15-2923aac2b119\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\
 "type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"FunPonsel\"},\"content\":\"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:51:07 +0000\",\"id\":\"1e3b2b3b5c93a780e072555ff59c6636\",\"link\":\"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"id\",\"tag_extended\":\"id\"}}"
-"{\"blog\":{\"author\":{\"name\":\"hh58\"},\"blog\":{\"link\":\"http://blog.sina.com.cn/hu263\",\"title\":\"hh58\"},\"blogid\":\"73188486\",\"content\":\"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源协议。<br />\\n\\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。<br />\\n<br />\\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\\n\\n�
 �”为所欲为”的前提当你发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\\n\\n原来代码中的BSD协议。<br />\\n3. 不可以用开源代码的作者/机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\\n\\nApache Licence 2.0(A
 pache License, Version 2.0、Apache License, Version 1.1、Apache License, Version 1.0)<br />\\n\\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\\n\\n1. 需要给代码的用户一份Apache Licence<br />\\n2. 如果你修改了代码,需要再被修改的文件中说明。<br />\\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\\n标,专利声明和其他原来作者规定需要包含的说明。<br />\\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\\n\\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\\n\\nApache Licence也是对商业应用友好的
 许可。使用者也可以在需要的时候修改代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\\n\\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\\n\\nGPL协议的主要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问�
 ��,还可以享受免费的优势。<br />\\n\\n由于GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\\n\\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\\n<br />\\nLGPL(GNU Lesser General Public License)<br />\\n\\nLGPL是GPL的一个为主要为类库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需要开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\\n\\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因�
 �LGPL协议的开源代码很适合作为第三方类库被商业软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\\n\\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\\n\\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\\n\\n<br />\\n<br />\\nReference: 百度百科<br />\\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\\n\\n<br /><br /><img src=\\\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\\\"> <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&s
 how=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\\\" target=\\\"_blank\\\">青春就应该这样绽放</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\\\" target=\\\"_blank\\\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\\\" target=\\\"_blank\\\">你不得不信的星座秘密</a><img src=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\\\">\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 03:14:12 +0000\",\"domain\":\"blog.sina.com.cn\",\"guid\":\
 "672664163c8d436f36cd797e5134ac78\",\"id\":\"1e3b3025f371aa00e072242f15612c08\",\"lang\":\"zh-cn\",\"link\":\"http://blog.sina.com.cn/s/blog_844c1d8b0101fv02.html\",\"links\":[\"http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD\",\"http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3\"],\"parseddate\":\"Fri, 28 Mar 2014 18:25:03 +0000\",\"postid\":\"7fc3321c-ce75-43af-9b5a-24486d45df88\",\"title\":\"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"hh58\"},\"content\":\"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源�
 ��议。<br />\\n\\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。<br />\\n<br />\\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\\n\\n但”为所欲为”的前提当你发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\\n\\n原来代码中的BSD协议。<br />\\n3. 不可以用开源代码的作者
 /机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\\n\\nApache Licence 2.0(Apache License, Version 2.0、Apache License, Version 1.1、Apache License, Version 1.0)<br />\\n\\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\\n\\n1. 需要给代码的用户一份Apache Licence<br />\\n2. 如果你修改了代码,需要再�
 ��修改的文件中说明。<br />\\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\\n标,专利声明和其他原来作者规定需要包含的说明。<br />\\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\\n\\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\\n\\nApache Licence也是对商业应用友好的许可。使用者也可以在需要的时候修改代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\\n\\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就
 是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\\n\\nGPL协议的主要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问题,还可以享受免费的优势。<br />\\n\\n由于GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\\n\\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\\n<br />\\nLGPL(GNU Lesser General Public License)<br />\\n\\nLGPL是GPL的一个为主要为�
 ��库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需要开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\\n\\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因此LGPL协议的开源代码很适合作为第三方类库被商业软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\\n\\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\\n\\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原
 许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\\n\\n<br />\\n<br />\\nReference: 百度百科<br />\\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\\n\\n<br /><br /><img src=\\\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\\\"> <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\\\" target=\\\"_blank\\\">青春就应该这样绽放</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\\\" target=\\\"_blank\\\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,4696
 46,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\\\" target=\\\"_blank\\\">你不得不信的星座秘密</a><img src=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\\\">\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 03:14:12 +0000\",\"id\":\"1e3b3025f371aa00e072242f15612c08\",\"link\":\"http://blog.sina.com.cn/s/blog_844c1d8b0101fv02.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)\",\"type\":\"blog\"},\"language\":{\"confidence\":82,\"tag\":\"zh\",\"tag_extended\":\"zh-cn\"},\"links\":{\"code\":[404,200],\"created_at\":[\"Fri, 28 Mar 2014 18:36:08 +0000\",\"Fri, 28 Mar 2014 18:36:11 +0000\"],\"hops\":[[\"http://www.opensource.org/licenses/alphabetical)。我们在常见的开�
 �协议如BSD\",\"http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD\"],[]],\"meta\":{\"charset\":[\"\",\"GB2312\"],\"content_type\":[\"\",\"text/html\"],\"description\":[\"\",\"在线互动式文档分享平台,在这里,您可以和千万网友分享自己手中的文档,全文阅读其他用户的文档,同时,也可以利用分享文档获取的积分下载文档\"],\"lang\":[\"\",\"unknown\"]},\"normalized_url\":[null,\"http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3\"],\"retweet_count\":[0,0],\"title\":[\"null\",\"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)_百度文库\"],\"url\":[\"http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD\",\"http://w
 enku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3\"]}}"
-"{\"blog\":{\"author\":{\"name\":\"Reset\"},\"blog\":{\"link\":\"http://linux.org.ru/\",\"title\":\"Linux.org.ru: Новости\"},\"blogid\":\"42212478\",\"content\":\"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мегабайт записей в секунду.\\n</li><li> Масштабируемость: кластер можно прозрачно расширять без простоя, потоки данных партицированы.\\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в пр�
 �изводительности.\\n</li></ul><p>Изменения в версии 0.8.1:\\n</p><ul><li> Поддержка дедупликации логов.\\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\\n</li><li> Поддержка расширения числа партиций и удаления топиков.\\n</li><li> Автоматическая балансировка лидеров партиций.\\n</li><li> Багфиксы.\\n</li></ul><p><a href=\\\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\\\">Новое в версии 0.8.1</a><br>\\n<a href=\\\"http://kafka.apache.org/downloads.html\\\">Скачать</a>\\n</p>\\n\\n  \\n\\n  \\n  \\n  \\n      <p class=\\\"tags\\\"><i class=\\\"icon-tag\\\"></i> <a class=tag rel=tag href=\\\"/tag/apache\\\">apache</a>, <a class=tag rel=tag href=\\\"/tag/kafka\\\">kafka</a></p><img src=\\\"h
 ttp://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\\\" height=\\\"1\\\" width=\\\"1\\\"/>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 05:24:20 +0000\",\"domain\":\"linux.org.ru\",\"guid\":\"c8e402c6f69616765379b32b6edf23d6\",\"id\":\"1e3b3148d255aa00e072d1c6eda76db0\",\"lang\":\"ru\",\"link\":\"http://www.linux.org.ru/news/opensource/10310499\",\"parseddate\":\"Mon, 24 Mar 2014 07:36:23 +0000\",\"postid\":\"ad06b468-00fd-4934-858a-758a5d1d80c9\",\"title\":\"Вышла новая версия Apache Kafka\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Reset\"},\"content\":\"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мега
 байт записей в секунду.\\n</li><li> Масштабируемость: кластер можно прозрачно расширять без простоя, потоки данных партицированы.\\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в производительности.\\n</li></ul><p>Изменения в версии 0.8.1:\\n</p><ul><li> Поддержка дедупликации логов.\\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\\n</li><li> Поддержка расширения числа партиций и удаления топиков.\\n</li><li> Автоматическая балансировка лидеров партиций.\\n</li><li> Багфиксы.
 \\n</li></ul><p><a href=\\\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\\\">Новое в версии 0.8.1</a><br>\\n<a href=\\\"http://kafka.apache.org/downloads.html\\\">Скачать</a>\\n</p>\\n\\n  \\n\\n  \\n  \\n  \\n      <p class=\\\"tags\\\"><i class=\\\"icon-tag\\\"></i> <a class=tag rel=tag href=\\\"/tag/apache\\\">apache</a>, <a class=tag rel=tag href=\\\"/tag/kafka\\\">kafka</a></p><img src=\\\"http://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\\\" height=\\\"1\\\" width=\\\"1\\\"/>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 05:24:20 +0000\",\"id\":\"1e3b3148d255aa00e072d1c6eda76db0\",\"link\":\"http://www.linux.org.ru/news/opensource/10310499\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Вышла новая версия Apache Kafka\",\"type\":\"blog\"},\"language\":{\"confidence\":95,\"tag\":\"ru\",\"tag_extended\":\"ru\"}}"
-"{\"blog\":{\"author\":{\"name\":\"jay\"},\"blog\":{\"link\":\"http://gilamotor.com/\",\"title\":\"Gilamotor Evalube\"},\"blogid\":\"56981296\",\"category\":\"News,headline,Andry Berlianto,Round The Borneo,tvs apache rtr 180\",\"content\":\"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya dik
 laim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi 
 TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\\n\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 1\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" 
 title=\\\"TVS Apache RTR Round The Borneo 2\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 3\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 4\\\" /></a>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 09:31:58 +0000\",\"domain
 \":\"gilamotor.com\",\"guid\":\"d61190c66d456eb1694e425f2f101864\",\"id\":\"1e3b33725343ab00e0724a3022b9fdfe\",\"lang\":\"id\",\"link\":\"http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/\",\"parseddate\":\"Mon, 24 Mar 2014 09:50:09 +0000\",\"postid\":\"eecec8d4-4a11-45b0-93d4-3cbfcecd5865\",\"title\":\"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache\",\"type\":\"post\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"name\":\"jay\"},\"content\":\"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru 
 menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\\n<p>Dengan menempuh jara
 k 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\\n\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 1\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs
 -apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 2\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 3\\\" /></a>\\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\\\"150\\\" height=\\\"150\\\" src=\\\"http:
 //gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\\\" class=\\\"attachment-thumbnail\\\" alt=\\\"\\\" title=\\\"TVS Apache RTR Round The Borneo 4\\\" /></a>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 09:31:58 +0000\",\"id\":\"1e3b33725343ab00e0724a3022b9fdfe\",\"link\":\"http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/\",\"received_at\":4743640609237236502,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"id\",\"tag_extended\":\"id\"}}"
-"{\"blog\":{\"author\":{\"name\":\"admin\"},\"blog\":{\"link\":\"http://www.joinebook.com/\",\"title\":\"Join eBook, Free eBook Download\"},\"blogid\":\"72892858\",\"content\":\"<div id=\\\"iframeContent\\\">\\n<h3>Book Description</h3>\\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\\n<p><b>Overview</b></p>\\n<ul>\\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\\n</ul>\\n<p><b>In Detail</b></p>\\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is bui
 lt on top of Apache Hadoop, Zookeeper, and Thrift.</p>\\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.</p>\\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\\n<p>You will also learn to troubleshoot clusters with monitoring tools,
  and use Accumulo cell-level security to secure your data.</p>\\n<p><b>What you will learn from this book</b></p>\\n<ul>\\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\\n<li>Monitor clusters – both performance and application logs</li>\\n<li>Secure your data in Accumulo</li>\\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\\n<li>Integrate to various cloud platforms</li>\\n<li>Use the Accumulo command-line shell</li>\\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\\n<li>Understand what tools are needed to optimize Accumulo performance</li>\\n</ul>\\n<p><b>Approach</b></p>\\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\\n<p><b>Who this book is written for</b></p>\\n<p>This book is great for developers new to Accumulo, who are looking to get a good groun
 ding in how to use Accumulo. It’s assumed that you have an understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\\n<h3>Book Details</h3>\\n<div>\\n<ul>\\n<li><b>Paperback:</b> 120 pages</li>\\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\\n<li><b>Language:</b> English</li>\\n<li><b>ISBN-10:</b> 1783285990</li>\\n<li><b>ISBN-13:</b> 978-1783285990</li>\\n</ul>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 18:16:40 +0000\",\"domain\":\"www.joinebook.com\",\"guid\":\"7e2ed225f2be5b7a8f3ee6d7defa89b3\",\"id\":\"1e3b38071f03a400e072d82a1cb03a68\",\"lang\":\"en\",\"link\":\"http://www.joinebook.com/apache-accumulo-for-developers/\",\"parseddate\":\"Tue, 25 Mar 2014 14:15:02 +0000\",\"postid\":\"0b3e093d-4e84-42ca-bcb1-eb140b008ff6\",\"title\":\"Apache Accumulo for Developers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"admin\"},\"content\":\"<div id=\\\"iframeCon
 tent\\\">\\n<h3>Book Description</h3>\\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\\n<p><b>Overview</b></p>\\n<ul>\\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\\n</ul>\\n<p><b>In Detail</b></p>\\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift.</p>\\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud
 . Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.</p>\\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data.</p>\\n<p><b>What you will learn from this book</b></p>\\n<ul>\\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\\n<li>Monitor clusters – b
 oth performance and application logs</li>\\n<li>Secure your data in Accumulo</li>\\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\\n<li>Integrate to various cloud platforms</li>\\n<li>Use the Accumulo command-line shell</li>\\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\\n<li>Understand what tools are needed to optimize Accumulo performance</li>\\n</ul>\\n<p><b>Approach</b></p>\\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\\n<p><b>Who this book is written for</b></p>\\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It’s assumed that you have an understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\\n<h3>Book Details</h3>\\
 n<div>\\n<ul>\\n<li><b>Paperback:</b> 120 pages</li>\\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\\n<li><b>Language:</b> English</li>\\n<li><b>ISBN-10:</b> 1783285990</li>\\n<li><b>ISBN-13:</b> 978-1783285990</li>\\n</ul>\\n</div>\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 18:16:40 +0000\",\"id\":\"1e3b38071f03a400e072d82a1cb03a68\",\"link\":\"http://www.joinebook.com/apache-accumulo-for-developers/\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Accumulo for Developers\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache Accumulo\",\"sentiment\":35,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"cell-level security\",\"tutorial-based approach\",\"command-line shell\",\"performance Approach\",\"real-time data storage\",\"real-time
  analyses\",\"full advantage\",\"step guide\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\",\"monitoring tools\",\"good grounding\",\"performance bottlenecks\"]},{\"name\":\"ZooKeeper\",\"sentiment\":22,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"cell-level security\",\"tutorial-based approach\",\"command-line shell\",\"performance Approach\",\"real-time data storage\",\"real-time analyses\",\"full advantage\",\"step guide\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\",\"monitoring tools\",\"good grounding\",\"performance bottlenecks\"]},{\"name\":\"Windows\",\"sentiment\":10,\"confident\":1,\"label\":\"Product\",\"evidence\":5,\"type\":\"Product\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"real-time data storage\",
 \"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\"]},{\"name\":\"Linux\",\"sentiment\":10,\"confident\":1,\"label\":\"Product\",\"evidence\":5,\"type\":\"Product\",\"about\":1,\"themes\":[\"various cloud platforms Overview\",\"real-time data storage\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\"]},{\"name\":\"Amazon.com\",\"sentiment\":7,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"real-time data storage\",\"Accumulo clusters\",\"ZooKeeper clusters\",\"hands-on knowledge\",\"practical examples\",\"value store\",\"highly robust\",\"performance bottlenecks\",\"cloud platforms\",\"monitoring tools\",\"cell-level security\"]},{\"name\":\"Google\",\"sentiment\":4,\"confident\":1,\"label\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":0,\"themes\":[\"real-time data storag
 e\",\"highly robust\"]},{\"name\":\"October 16, 2013\",\"sentiment\":0,\"confident\":1,\"label\":\"Date\",\"evidence\":1,\"type\":\"Pattern\",\"about\":0,\"themes\":[\"Book Details Paperback\",\"prior knowledge\"]}],\"sentiment\":2,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.50457036495209,\"additional\":\"Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them. You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data. What you will learn from this book Set up Hadoop, ZooKeeper, and Accumulo Monitor clusters – both performance and application logs Secure your data in Accumulo Optimize Hadoop, ZooKeeper, and Accumulo performance Integrate to various cloud platforms Use the Accumulo command-line shell Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs Understand 
 what tools are needed to optimize Accumulo performance Approach The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.\",\"hits\":0}]},\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.55211216211319,\"additional\":\"Apache Accumulo for Developers\",\"hits\":0}]}}}"
-"{\"blog\":{\"blog\":{\"link\":\"http://ibm.ulitzer.com/\",\"title\":\"Latest News from IBM News on Ulitzer\"},\"blogid\":\"71106617\",\"content\":\"<p><span class=\\\"xn-location\\\">FOREST HILL, Md.</span>, <span class=\\\"xn-chron\\\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\\\"http://ibm.ulitzer.com/node/3026607\\\" target=\\\"_blank\\\">read more</a></p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 12:00:47 +0000\",\"domain\":\"ibm.ulitzer.com\",\"guid\":\"3032fcc90b1d53e13ec24b46bf6ad3a3\",\"id\":\"1e3b41519b74a180e072fbcdee35ca7e\",\"lang\":\"en\",\"link\":\"http://ibm.ulitzer.com/node/3026607\",\"parseddate\":\"Tue, 25 Mar 2014 14:51:38 +0000\",\"postid\":\"6eeaec5e-861b-4640-8276-f7ab8b8
 a3523\",\"title\":\"The Apache Software Foundation Announces Apache™ CloudStack™ v4.3\",\"type\":\"post\"},\"interaction\":{\"content\":\"<p><span class=\\\"xn-location\\\">FOREST HILL, Md.</span>, <span class=\\\"xn-chron\\\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\\\"http://ibm.ulitzer.com/node/3026607\\\" target=\\\"_blank\\\">read more</a></p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 12:00:47 +0000\",\"id\":\"1e3b41519b74a180e072fbcdee35ca7e\",\"link\":\"http://ibm.ulitzer.com/node/3026607\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"The Apache Software Foundation Announces Apache™ CloudStack™ v4.3\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en
 \",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"FOREST HILL, Md.\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":4,\"type\":\"Place\",\"about\":1,\"themes\":[\"latest feature release\",\"all-volunteer developers\"]},{\"name\":\"March 25, 2014\",\"sentiment\":-1,\"confident\":1,\"label\":\"Date\",\"evidence\":7,\"type\":\"Pattern\",\"about\":1,\"themes\":[\"latest feature release\",\"all-volunteer developers\"]}],\"sentiment\":-1},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"Apache\"},\"comment\":{\"id\":\"650dba80c6b04a2124e0075cff28af4b\"},\"content\":\"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la vérité<br />\\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les 
 sauver.</p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 20:00:05 +0000\",\"domain\":\"leblogdrzz.over-blog.com\",\"id\":\"1e3b4580ed1da080e072338f47a54b24\",\"lang\":\"fr\",\"link\":\"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/\",\"parseddate\":\"Tue, 25 Mar 2014 20:22:24 +0000\",\"post\":{\"created_at\":\"Tue, 25 Mar 2014 09:46:53 +0000\",\"guid\":\"287825f6c2bd7e5f1a5615286d028e56\",\"link\":\"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/\",\"title\":\"Salem Ben Ammar, auteur chez Dreuz, est menacé de mort par des islamistes tunisiens\"},\"source\":{\"crawled\":\"Tue, 25 Mar 2014 11:43:43 +0000\",\"guid\":\"5c3074412dceeb8b550f4f8467bdce0d\",\"id\":\"48710360\",\"language\":\"fr\",\"link\":\"leblogdrzz.over-blog.com\",\"title\":\"Dreuz.info\",\"type\":\"blogs\"},\"title\":\"Par : Apache\",\"type\":\"comment\"},\"interaction\":{\"
 author\":{\"name\":\"Apache\"},\"content\":\"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la vérité<br />\\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les sauver.</p>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014
  20:00:05 +0000\",\"id\":\"1e3b4580ed1da080e072338f47a54b24\",\"link\":\"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Par : Apache\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"fr\",\"tag_extended\":\"fr\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"Tip Meister\"},\"blog\":{\"link\":\"http://www.lamp-tips.com/\",\"title\":\"Linux Apache MySQL PHP Tips\"},\"blogid\":\"71186799\",\"content\":\"please help! \\nexplain in SIMPLE terms\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:00:16 +0000\",\"domain\":\"www.lamp-tips.com\",\"guid\":\"eb93f438e4191fd92fc1664a71c30a83\",\"id\":\"1e3b4799c71ea800e07243367e6972b4\",\"lang\":\"en\",\"link\":\"http://www.lamp-tips.com/apache/what-does-apache-camel-do/\",\"parseddate\":\"Wed, 26 Mar 2014 00:16:44 +0000\",\"postid\":\"33815629-a87b-488f-9ca5-98c7359733d1\",\"title\":\"What does Apache Camel do?\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Tip Meister\"},\"content\":\"please help! \\nexplain in SIMPLE terms\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:00:16 +0000\",\"id\":\"1e3b4799c71ea800e07243367e6972b4\",\"link\":\"http://www.lamp-tips.com/apache/what-does-apache-camel-do/\",\"received_at\":474364
 1192805852774,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"What does Apache Camel do?\",\"type\":\"blog\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"Svět knihy\"},\"blog\":{\"link\":\"http://ceske-knizky.cz/\",\"title\":\"České knížky\"},\"blogid\":\"71098056\",\"content\":\"Pilotem Apache (Macy Ed) \\n \\nAnotace Pilotem Apache (Macy Ed): \\n \\nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afghánistánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsmrtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez př
 estávky. Pokud jste přehlédl jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot
  v historii britského letectva vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \\n \\nInformace o Pilotem Apache (Macy Ed): \\n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: CZE  EAN: 9788090523227   \\nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém knihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \\n \\nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordc
 entrála X (Cílek Roman)  Výbuch nad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:50:28 +0000\",\"domain\":\"ceske-knizky.cz\",\"guid\":\"f6d6c4a76240a3d4ef20ea2a75f80893\",\"id\":\"1e3b4809fbcaa200e072eade39a77334\",\"lang\":\"cs\",\"link\":\"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/\",\"parseddate\":\"Wed, 26 Mar 2014 02:37:30 +0000\",\"postid\":\"858cfa87-6b6a-49a8-aa1c-7bf5449976d8\",\"title\":\"Pilotem Apache (Macy Ed)\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Svět knihy\"},\"content\":\"Pilotem Apache (Macy Ed) \\n \\nAnotace Pilotem Apache (Macy Ed): \\n \\nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afgháni
 stánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsmrtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez přestávky. Pokud jste přehlédl jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi 
 nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot v historii britského letectva vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \\n \\nInformace o Pilotem Apache (Macy Ed): \\n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: C
 ZE  EAN: 9788090523227   \\nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém knihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \\n \\nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordcentrála X (Cílek Roman)  Výbuch nad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 00:50:28 +0000\",\"id\":\"1e3b4809fbcaa200e072eade39a77334\",\"link\":\"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/\",\
 "schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Pilotem Apache (Macy Ed)\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"cs\",\"tag_extended\":\"cs\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Benjamin D. Thomas\"},\"blog\":{\"link\":\"http://lxer.com/\",\"title\":\"LXer Linux News\"},\"blogid\":\"40458952\",\"content\":\"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 02:36:43 +0000\",\"domain\":\"lxer.com\",\"guid\":\"ba43401e2c320b2c4d1fad73af1fe133\",\"id\":\"1e3b48f77886af80e072c8aa90d223ec\",\"lang\":\"en\",\"link\":\"http://lxer.com/module/newswire/ext_link.php?rid=200184\",\"parseddate\":\"Wed, 26 Mar 2014 03:04:54 +0000\",\"postid\":\"14e1bba7-358e-480d-9d5a-7dd55d8293bc\",\"title\":\"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities\",\"type\":\"post\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"name\":\"Benjamin D. Thomas\"},\"content\":\"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 02:36:43 +
 0000\",\"id\":\"1e3b48f77886af80e072c8aa90d223ec\",\"link\":\"http://lxer.com/module/newswire/ext_link.php?rid=200184\",\"received_at\":4743641234971543627,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities\",\"type\":\"blog\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"charmalloc\"},\"blog\":{\"link\":\"http://java.dzone.com/\",\"title\":\"Javalobby - The heart of the Java developer community\"},\"blogid\":\"59183819\",\"content\":\"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumulo provides a richer data model than simple key-value stores, but is not a fully relational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and t
 he Value are represented as byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated synchronization mechanism. As clients insert and query data, and as machines are added and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Ma
 r 2014 05:30:00 +0000\",\"domain\":\"java.dzone.com\",\"guid\":\"210840f9a9d28bfbefe3d97dc7f4b05f\",\"id\":\"1e3b4a7aca0bac00e07244d00bd5c3bc\",\"lang\":\"en\",\"link\":\"http://java.dzone.com/articles/big-data-apache-accumulo\",\"parseddate\":\"Wed, 26 Mar 2014 06:35:35 +0000\",\"postid\":\"c37ebe75-e2aa-4691-b548-68be0e8fc015\",\"title\":\"Big Data with Apache Accumulo Preserving Security with Open Source\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"charmalloc\"},\"content\":\"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumu
 lo provides a richer data model than simple key-value stores, but is not a fully relational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and the Value are represented as byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated 
 synchronization mechanism. As clients insert and query data, and as machines are added and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 05:30:00 +0000\",\"id\":\"1e3b4a7aca0bac00e07244d00bd5c3bc\",\"link\":\"http://java.dzone.com/articles/big-data-apache-accumulo\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Big Data with Apache Accumulo Preserving Security with Open Source\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Adam Fuchs\",\"sentiment\":8,\"confident\":1,\"label\":\"Person\",\"evidence\":7,\"type\":\"Person\",\"about\":1,\"themes\":[\"cell level security\",\"peta bytes\"]}],\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache Accumulo Preserving Security\",\"sentiment\":0,\"confident\":
 1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"紫贏\"},\"blog\":{\"link\":\"http://z-win.blogspot.com/\",\"title\":\"紫贏的記事本\"},\"blogid\":\"58568180\",\"content\":\"win7 上apache php 用com去開word 2013 時,字型沒換的問題\\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\\n但要用word另存pdf時,字型沒換,目前決解的方案是\\n控制台>系統管理工具>元件服務 ,\\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\\n內容 > 識別身分 用 互動式使用者\\n但使用時一定要有使用登入到桌面,無法在純service下進行\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 06:31:11 +0000\",\"domain\":\"z-win.blogspot.com\",\"guid\":\"66ef237ea01acb41d588b4a45fca07d6\",\"id\":\"1e3b4b038b6ea180e072c86f262afd10\",\"lang\":\"zh-tw\",\"link\":\"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html\",\"parseddate\":\"Wed, 
 26 Mar 2014 06:32:47 +0000\",\"postid\":\"550399d6-64b6-4541-930a-e40b53eff547\",\"title\":\"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"紫贏\"},\"content\":\"win7 上apache php 用com去開word 2013 時,字型沒換的問題\\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\\n但要用word另存pdf時,字型沒換,目前決解的方案是\\n控制台>系統管理工具>元件服務 ,\\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\\n內容 > 識別身分 用 互動式使用者\\n但使用時一定要有使用登入到桌面,無法在純service下進行\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 06:31:11 +0000\",\"id\":\"1e3b4b038b6ea180e072c86f262afd10\",\"link\":\"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html\",\"schema\":{\"version\":3},\"subtyp
 e\":\"post\",\"title\":\"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題\",\"type\":\"blog\"},\"language\":{\"confidence\":70,\"tag\":\"zh\",\"tag_extended\":\"zh-tw\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Sean Michael Kerner\"},\"blog\":{\"link\":\"http://lxer.com/\",\"title\":\"LXer Linux News\"},\"blogid\":\"40458952\",\"content\":\"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform.\\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4.2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \\\"As part of the Hyper-V support, we are releasing a version 
 of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\\\" Trippaers said. \\\"It also shows the possibilities of working with other languages in the CloudStack project.\\\"\\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the best tool for the job, he said.\\nDynamic Compute\\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the new Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\\n\\\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\\\" Trippaers said.\\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand 
 by the tenant.\\n\\\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\\\" Trippaers said.\\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enables off-loading of SSL traffic to load balancers.\\n\\\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\\\" Trippaers explained. \\\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\\\"\\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\\nWhat's Next\\nLooking forward, there are a number of different technologies and features und
 er consideration for future releases of CloudStack. One of those technologies is the open-source Docker container virtualization technology.\\n\\\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\\\" Trippaers said. \\\"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\\\"\\nOther features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.\\n\\\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\\\" Trippaers said. \\\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements t
 hat should translate in an even more predictable behavior for administrators and users alike.\\\"\\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 11:11:22 +0000\",\"domain\":\"lxer.com\",\"guid\":\"96eab9efacbe97941d0f03ffa2933164\",\"id\":\"1e3b4d75cd9ea900e072ae686e3e344c\",\"lang\":\"en\",\"link\":\"http://www.eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html\",\"parseddate\":\"Wed, 26 Mar 2014 11:15:22 +0000\",\"postid\":\"65ca246b-c53d-4c41-8b8c-a2a5d868d195\",\"title\":\"Apache CloudStack 4.3 Released\",\"type\":\"post\"},\"demographic\":{\"gender\":\"mostly_male\"},\"interaction\":{\"author\":{\"name\":\"Sean Michael Kerner\"},\"content\":\"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, 
 providing new features to users of the open-source cloud platform.\\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4.2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \\\"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\\\" Trippaers said. \\\"It also shows the possibilities of working with other languages in the CloudStack project.\\\"\\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the be
 st tool for the job, he said.\\nDynamic Compute\\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the new Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\\n\\\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\\\" Trippaers said.\\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand by the tenant.\\n\\\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\\\" Trippaers said.\\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enab
 les off-loading of SSL traffic to load balancers.\\n\\\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\\\" Trippaers explained. \\\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\\\"\\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\\nWhat's Next\\nLooking forward, there are a number of different technologies and features under consideration for future releases of CloudStack. One of those technologies is the open-source Docker container virtualization technology.\\n\\\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\\\" Trippaers said. \\\"I'm convinced that we will come up with the right answer in the not-so-di
 stant future and release Docker support with one of the next releases.\\\"\\nOther features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.\\n\\\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\\\" Trippaers said. \\\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\\\"\\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 11:11:22 +0000\",\"id\":\"1e3b4d75cd9ea900e072ae686e3e344c\",\"link\":\"http://www
 .eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache CloudStack 4.3 Released\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"CloudStack\",\"sentiment\":32,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"major update\",\"next releases\",\"bare metal deployments\",\"future releases\",\"code quality improvements\",\"right answer\",\"not-so-distant future\",\"CloudStack developers\",\"failure domains\",\"improving support\",\"huge number\",\"functional tests\",\"serious number\",\"predictable behavior\",\"open-source effort\",\"flexible compute capability\",\"compute offering\",\"creating instances\",\"different technologies\",\"original technology\"]},{\"name\":\"Citrix\",\"sentiment\":3,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\
 "type\":\"Company\",\"about\":0,\"themes\":[\"Citrix Application Delivery Controller\",\"significant performance improvements\",\"major update\",\"open-source effort\",\"original technology\",\"virtualization hypervisor\",\"precious resources\",\"virtual machines\",\"dedicated devices\"]},{\"name\":\"Apache\",\"sentiment\":3,\"confident\":1,\"label\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":0,\"themes\":[\"major update\",\"open-source effort\",\"original technology\"]},{\"name\":\"April 2012\",\"sentiment\":3,\"confident\":1,\"label\":\"Date\",\"evidence\":5,\"type\":\"Pattern\",\"about\":0,\"themes\":[\"major update\",\"open-source effort\",\"original technology\"]},{\"name\":\"Microsoft\",\"sentiment\":4,\"confident\":1,\"label\":\"Company\",\"evidence\":3,\"type\":\"Company\",\"about\":0,\"themes\":[\"original technology\",\"virtualization hypervisor\",\"supporting Hyper-V\",\"vice president\"]},{\"name\":\"Hugo Trippaers\",\"sentiment\":60,\"confident\":1,\"labe
 l\":\"Person\",\"evidence\":7,\"type\":\"Person\",\"about\":1,\"themes\":[\"next releases\",\"dynamic offerings\",\"code quality improvements\",\"future releases\",\"compute offering\",\"huge number\",\"functional tests\",\"different technologies\",\"serious number\",\"predictable behavior\",\"key feature\",\"right answer\",\"not-so-distant future\",\"significant performance improvements\",\"native support\",\"flexible compute capability\",\"dedicated devices\",\"precious resources\",\"virtual machines\",\"creating instances\",\"bare metal deployments\",\"CloudStack developers\",\"failure domains\",\"improving support\",\"supporting Hyper-V\",\"vice president\",\"container virtualization technology\"]},{\"name\":\"vice president\",\"sentiment\":2,\"confident\":1,\"label\":\"Job Title\",\"evidence\":3,\"type\":\"Job Title\",\"about\":0,\"themes\":[\"virtualization hypervisor\",\"supporting Hyper-V\",\"vice president\",\"native support\"]},{\"name\":\"Netscaler\",\"sentiment\":8,\"con
 fident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":0,\"themes\":[\"significant performance improvements\",\"precious resources\",\"virtual machines\",\"dedicated devices\",\"different technologies\",\"future releases\"]},{\"name\":\"Sean Michael Kerner\",\"sentiment\":3,\"confident\":1,\"label\":\"Person\",\"evidence\":3,\"type\":\"Person\",\"about\":0,\"themes\":[\"code quality improvements\",\"next release\",\"serious number\",\"predictable behavior\",\"senior editor\"]},{\"name\":\"senior editor\",\"sentiment\":3,\"confident\":1,\"label\":\"Job Title\",\"evidence\":3,\"type\":\"Job Title\",\"about\":0,\"themes\":[\"code quality improvements\",\"next release\",\"serious number\",\"predictable behavior\",\"senior editor\"]},{\"name\":\"\\\"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\\\"\",\"sentiment\":4,\"confident\":1,\"label
 \":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"supporting Hyper-V\",\"vice president\",\"native support\"]},{\"name\":\"\\\"It also shows the possibilities of working with other languages in the CloudStack project.\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"native support\"]},{\"name\":\"\\\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\\\"\",\"sentiment\":3,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"Compute offering\",\"creating instances\"]},{\"name\":\"\\\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\\\"\",\"sentiment\":4,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[
 \"fixed compute offerings catering\",\"flexible compute capability\",\"dynamic offerings\"]},{\"name\":\"\\\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\\\";\\\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\\\"\",\"sentiment\":2,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0,\"themes\":[\"Citrix Application Delivery Controller\",\"precious resources\",\"virtual machines\"]},{\"name\":\"\\\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\\\";\\\"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\\\"\",\"sentiment\":2,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0,\"themes\":[\"container virtualizati
 on technology\",\"bare metal deployments\",\"right answer\",\"not-so-distant future\",\"next releases\",\"CloudStack developers\",\"future releases\",\"failure domains\",\"improving support\"]},{\"name\":\"\\\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\\\";\\\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\\\"\",\"sentiment\":4,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0,\"themes\":[\"code quality improvements\",\"bare metal deployments\",\"huge number\",\"functional tests\",\"next release\",\"serious number\",\"predictable behavior\",\"CloudStack developers\",\"future releases\",\"failure domains\"
 ,\"improving support\"]}],\"sentiment\":3,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.591965675354,\"additional\":\"The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform. \\\"This frees up precious resourc

<TRUNCATED>

[04/45] git commit: Merge branch 'apache_master' into DATASIFT_SERIALIZER_FIXES

Posted by mf...@apache.org.
Merge branch 'apache_master' into DATASIFT_SERIALIZER_FIXES


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/981343a0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/981343a0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/981343a0

Branch: refs/heads/master
Commit: 981343a078ee886bee06038353485775546d281d
Parents: f2d0715 d4d95cc
Author: rebanks <re...@w2odigital.com>
Authored: Mon Jun 2 14:34:51 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Mon Jun 2 14:34:51 2014 -0500

----------------------------------------------------------------------
 .../streams/hdfs/WebHdfsPersistWriter.java      | 144 ++++++++++---------
 1 file changed, 74 insertions(+), 70 deletions(-)
----------------------------------------------------------------------



[12/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
new file mode 100644
index 0000000..a00728f
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
@@ -0,0 +1,1843 @@
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"created_at":"Sat, 22 Mar 2014 21:38:22 +0000","description":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out ne
 xt week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","id":"100003271543139_537596739692706","link":"http:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323","name":"Mescalero Apache Head Start","picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-ash2\/t1.0-1\/c0.0.100.100\/p100x100\/379713_183249568536164_895695882_a.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"content":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will
  be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out next week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","created_at":"Sat, 22 Mar 2014 21:38:22 +0000","id":"1e3b20a4a775ab00e066d203c4340184","link":"http:\/\/www.facebook.com\/100003271543139_537596739692706","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Mescalero Apache Head Start","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:39:20 +0000"],"hops":[["http:\/\/www.facebook.com\/mesca
 leroapacheheadstart\/posts\/219371308257323"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"],"retweet_count":[0],"title":["UPDATE: Since the \"Mescalero Blessing... - Mescalero Apache Head Start | Facebook"],"url":["https:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"]},"salience":{"content":{"entities":[{"name":"April 1, 2014","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0},{"name":"Mescalero South Hall","sentiment":0,"confident":1,"label":"building","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"Bowling Alley","sentiment":0,"confident":1,"label":"road","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"\"Mescalero Blessing Run\"","sentiment":0,"confident":1,"labe
 l":"Quote","evidence":1,"type":"Quote","about":0}],"sentiment":2},"title":{"sentiment":0}}}
+{"demographic":{"gender":"unisex"},"facebook":{"application":"Photos","author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"caption":"First weekend of Spring! Time to get outside and enjoy the WMAT rez :)","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","icon":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/v2\/yD\/r\/aS8ecmYRys0.gif","id":"100002126551451_605465259534354","link":"http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1","message":"C'mon over...\n","name":"Photos of White Mountain Apache Tribe Game & Fish","og":{"by":"Michael Frank"},"picture":"http:\/\/photos-e.ak.fbcdn.net\/hphotos-ak-ash3\/t1.0-0\/1920219_10101477649345853_670694643_s.jpg","source":"Photos (2305272732)","story":"Sharon Gloshay shared a photo.","story_tags":[[{"name":"Sharon Gloshay","length":14,"type":"user","id":"100002126
 551451","offset":0}]],"type":"photo"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"content":"C'mon over...\n","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","id":"1e3b20ad4272a880e06678b4f07fd236","link":"http:\/\/www.facebook.com\/100002126551451_605465259534354","schema":{"version":3},"source":"Photos (2305272732)","subtype":"photo","title":"Photos of White Mountain Apache Tribe Game & Fish","type":"facebook"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:50 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["First weekend of Spring! Time to get outside and enjoy the WMAT rez :)"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?fbid=101014776493
 45853&set=o.320779744643135&type=1"],"retweet_count":[0],"title":["Michael Frank - Photos of White Mountain Apache Tribe Game... | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"caption":"minneapolis.en.craigslist.org","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","description":"[ post ][ account ]0 favoritesCL >minneapolis >carv\/sher\/wri >all for sale \/ wanted >rvs - by owner\u2014 \u2014 \u2014\u2709\u260Ereplyxprohibited[?]Posted: 2014-02-17 12:30pm Apache Hardside Camper ~Wanted~ Looking for a Apache Hardside Pop-Up Camper Please let me know what you have available do NOT contact me with unsoli...","id":"201182856613333_689921864406094","link":"http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html","message":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","name":"Apache Hardside Camper ~Wanted~","source":"Facebook for Android (350685531728)",
 "to":{"ids":["201182856613333"],"names":["Apache Camper Preservation Society"]},"type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"content":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","id":"1e3b20adab5aa000e0661b0a9e430820","link":"http:\/\/www.facebook.com\/201182856613333_689921864406094","mention_ids":["201182856613333"],"mentions":["Apache Camper Preservation Society"],"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Apache Hardside Camper ~Wanted~","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:47 +0000"],"meta":{"charset":["CP1252"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url"
 :["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"],"retweet_count":[0],"title":["Apache Hardside Camper ~Wanted~"],"url":["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"]},"salience":{"content":{"sentiment":0,"topics":[{"name":"Advertising","score":0.47485229372978,"additional":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","hits":0}]},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"GrabInbox","author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"user"},"caption":"mcp.infusionsoft.com","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","description":"type Status report The requested resource is not available.","id":"100004948484234_257154551126159","link":"https:\/\/mcp.infusionsoft.com\/go\/2ndcha","message":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","name":"Apache Tomcat\/6.0.36 - Error report","source":"GrabInbox (135280156521587)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"use
 r"},"content":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","id":"1e3b20b3a13ba000e0668cdbdc72d878","link":"http:\/\/www.facebook.com\/100004948484234_257154551126159","received_at":4743640062960685023,"schema":{"version":3},"source":"GrabInbox (135280156521587)","subtype":"link","title":"Apache Tomcat\/6.0.36 - Error report","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404],"created_at":["Sat, 22 Mar 2014 21:46:07 +0000"],"hops":[["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-5}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPad","author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=100000632293926","name":"Xavier Tatum","type":"user"},"created_at":"Sat, 22 Mar 2014 21:46:28 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"100000632293926_733005476730522","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=1000006
 32293926","name":"Xavier Tatum","type":"user"},"content":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","created_at":"Sat, 22 Mar 2014 21:46:28 +0000","id":"1e3b20b6c251a200e066d8ce3663edc2","link":"http:\/\/www.facebook.com\/100000632293926_733005476730522","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","subtype":"video","title":"Mizai Performing Live @ Apache Cafe","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:25:38 +0000"],"hops":[["http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U&app=desktop"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent"],"keywords":[["Apache Cafe (Building)","Mizai","Performing","live","Atl","Exposure","Open","Mic","Pe
 rformance","Fan","myself","Stage","Microphone","DJ","Mizay","Streetz","Grindin","BAMA","Op..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg"}],"twitter":[{"player_width":"1280","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","player_height":"720","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Pe
 rforming Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/Pc5QXkarL0U"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=Pc5QXkarL0U"],"retweet_count":[0],"title":["Mizai Performing Live @ Apache Cafe - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U"]}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100002691827913_484469828319407","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","message":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture
 ":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"content":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","id":"1e3b20bc9b95ae80e066fe4bf1bfb094","link":"http:\/\/www.facebook.com\/100002691827913_484469828319407","received_at":4743640063974247393,"sche
 ma":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confi
 dent":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\/www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:49:42 +0000","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","id":"731196387_10152355066466388","link":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","name":"Sugarhill Gang Apache (Jump On It)","picture":"http:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l","source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","to":{"ids":["100000046087502"],"names":["Nathan Bluerock"]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\
 /www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"content":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","created_at":"Sat, 22 Mar 2014 21:49:42 +0000","id":"1e3b20bdfc71af00e066bcb6b8e3130c","link":"http:\/\/www.facebook.com\/731196387_10152355066466388","mention_ids":["100000046087502"],"mentions":["Nathan Bluerock"],"received_at":4743640064119570380,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Sugarhill Gang Apache (Jump On It)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 01:42:36 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watch
 ing!"],"keywords":[["Funky","Pop","Greatness","Awesome"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtub
 e.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/vQObWW06VAM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=vQObWW06VAM"],"retweet_count":[0],"title":["Sugarhill Gang Apache (Jump On It) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=vQObWW06VAM"]}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"newsok.com","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","id":"100000455275358_753304071361428","link":"http:\/\/ow.ly\/uKTg1","name":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAMLLC9jSlzmhOK&w=154&h=154&url=http%3A%2F%2Fcdn2.newsok.biz%2Fcache%2Fw620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link
 ":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","id":"1e3b20c87445a180e0665ce87651d4d0","link":"http:\/\/www.facebook.com\/100000455275358_753304071361428","schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:27 +0000"],"hops":[["http:\/\/ow.ly\/uKTg1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government."],"lang":["unknown"],"ope
 ngraph":[{"site_name":"NewsOK.com","type":"article","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","url":"http:\/\/newsok.com\/article\/3935671","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","image":"http:\/\/cdn2.newsok.biz\/cache\/w620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg"}]},"normalized_url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"],"retweet_count":[0],"title":["Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico | News OK"],"url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:08 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"388424624543961_652943931425361","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=
 ZrcVKWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","to":{"ids":["388424624543961"],"names":["Ret.Officers Living Or Willing To Move Outside The U.S."]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a mo
 ralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 Mar 2014 21:55:08 +0000","id":"1e3b20ca216ca600e066737903b59bf6","link":"http:\/\/www.facebook.com\/388424624543961_652943931425361","mention_ids":["388424624543961"],"mentions":["Ret.Officers Living Or Willing To Move Outside The U.S."],"received_at":4743640065503462529,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul 
 Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtub
 e"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:30 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"792873959_10152287778028960","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcV
 KWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 
 Mar 2014 21:55:30 +0000","id":"1e3b20caf33ba500e0669b6b2a096842","link":"http:\/\/www.facebook.com\/792873959_10152287778028960","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as th
 e officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog
 "}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
+{"demographic":{"gender":"unisex"},"facebook":{"application":"V\u00EDdeos","author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"created_at":"Sat, 22 Mar 2014 21:56:14 +0000","description":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","id":"100007024808424_1435534340024046","link":"http:\/\/www.facebook.com\/photo.php?v=301721056644466","name":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","og":{"dura\u00E7\u00E3o":"1:50"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-ash3\/t15.0-10\/1898357_301721366644435_301721056644466_21573_1925_t.jpg","source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","
 type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"content":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","created_at":"Sat, 22 Mar 2014 21:56:14 +0000","id":"1e3b20cc96d9a300e0662f3920bf5e56","link":"http:\/\/www.facebook.com\/100007024808424_1435534340024046","schema":{"version":3},"source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","subtype":"video","title":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","type":"facebook"},"language":{"confidence":98,"tag":"pt","tag_extended":"pt"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 15:04:52 +0000"],"hops":[["htt
 p:\/\/www.facebook.com\/photo.php?v=301721056644466"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. "],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=301721056644466"],"retweet_count":[0],"title":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O... - De POUCO UM TUDO. | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=301721056644466"]}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"indiancountrytodaymedianetwork.com","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","description":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","id":"100000455275358_753306681361167","link":"http:\/\/ow.ly\/uKToH","name":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQBfQuIg2QEiixtK&w=154&h=154&url=http%3A%2F%2Fd1jrw5jterzxwu.cloudfront.net%2Fsites%2Fdefault%2Ffiles%2Farticle_media%2Fapache-1886.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/10000045527
 5358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","id":"1e3b20d67f9fa400e066004f93ac9c70","link":"http:\/\/www.facebook.com\/100000455275358_753306681361167","received_at":4743640066903726306,"schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-2,"topics":[{"name":"War","score":0.54581296443939,"additional":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","hits":0}]},"title":{"sentime
 nt":-4}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPhone","author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"created_at":"Sat, 22 Mar 2014 22:01:17 +0000","description":"TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.\n\nTVS Motor Company Ltd (TVS Motor), member of the TVS grou...","id":"1297415516_10203309137071332","link":"http:\/\/www.facebook.com\/TVSApacheOfficial","message":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it'
 s more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sale
 s mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'9500965507\nPollachi","name":"TVS Apache","og":{"product\/service":"1,040,347 like this"},"picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-prn1\/t1.0-1\/1512540_649033688487904_1254327688_a.jpg","source":"Facebook for iPhone (6628568379)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"content":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it's more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the
  customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sales mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'95
 00965507\nPollachi","created_at":"Sat, 22 Mar 2014 22:01:17 +0000","id":"1e3b20d7e07ba480e066eaccfc9d6c40","link":"http:\/\/www.facebook.com\/1297415516_10203309137071332","received_at":4743640067019986960,"schema":{"version":3},"source":"Facebook for iPhone (6628568379)","subtype":"link","title":"TVS Apache","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 22:01:43 +0000"],"hops":[["http:\/\/www.facebook.com\/TVSApacheOfficial"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["TVS Apache. 1,040,347 likes \u00B7 8,629 talking about this. TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.TVS Motor Company Ltd (TVS Motor), member of the TVS group, is the largest company of the group in ter
 ms of size and turnover."],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/TVSApacheOfficial"],"retweet_count":[0],"title":["TVS Apache | Facebook"],"url":["https:\/\/www.facebook.com\/TVSApacheOfficial"]},"salience":{"content":{"entities":[{"name":"Coimbatore MTP road","sentiment":3,"confident":1,"label":"road","evidence":7,"type":"Place","about":1,"themes":["complete registration book","Next day evening","good dealer","customer care","urgent process","extra amount","road showroom","insurance papers","2nd company","quick delivery"]},{"name":"manager","sentiment":5,"confident":1,"label":"Job Title","evidence":7,"type":"Job Title","about":1,"themes":["reliable person manager","complete registration book","good dealer","customer care","2nd company","30pm bike","day evening","lotus sales"]}],"sentiment":3,"topics":[{"name":"Business","score":0.90492594242096,"additional":"I am in Coimbatore city 'pollachi ' It's 2nd company with complaint of commitment which was agree on ever
 ything was legally done but the RC book ? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ? Note:Lotus Tvs dealer in Coimbatore MTP road showroom Paid for urgent process extra amount of 495 (delivery of bike also paid )for register notary all paid and Next day evening receive the bike among the insurance papers only & register numbers by SMS !","hits":0}]},"title":{"sentiment":0}}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100004773398251_275283519307426","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Facebook for Android (35068
 5531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"content":"Photos of the Apache camp in Tularosa Canyon, New Mexico","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","id":"1e3b21017d06a100e066a7ebf76f1348","link":"http:\/\/www.facebook.com\/100004773398251_275283519307426","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unk
 nown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1},{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/734307369\/picture","id":"734307369","link":"http:\/\/www.facebook.com\/profile.php?id=734307369","name":"Tory T-ham Hamilton","type":"user"},"created_at":"Sat, 22 Mar 2014 22:23:10 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"734307369_10152282200827370","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/734307369\/picture","id":"734307369","link":"http:\/\/www.facebook.com\/profile.php?id=734307369","name":"Tory T-ham H
 amilton","type":"user"},"content":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","created_at":"Sat, 22 Mar 2014 22:23:10 +0000","id":"1e3b2108ca39ab00e06643e95a4a92a4","link":"http:\/\/www.facebook.com\/734307369_10152282200827370","received_at":4743640072535061771,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","subtype":"video","title":"Mizai Performing Live @ Apache Cafe","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:25:38 +0000"],"hops":[["http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U&app=desktop"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent"],"keywords":[["Apache Cafe (Building)","Mizai","Performing","live","Atl","Exposure","Open","M
 ic","Performance","Fan","myself","Stage","Microphone","DJ","Mizay","Streetz","Grindin","BAMA","Op..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg"}],"twitter":[{"player_width":"1280","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","player_height":"720","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"M
 izai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/Pc5QXkarL0U"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=Pc5QXkarL0U"],"retweet_count":[0],"title":["Mizai Performing Live @ Apache Cafe - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U"]}}
+{"facebook":{"application":"V\u00EDdeos","author":{"avatar":"https:\/\/graph.facebook.com\/100004934383932\/picture","id":"100004934383932","link":"http:\/\/www.facebook.com\/profile.php?id=100004934383932","name":"Clausimar Buba","type":"user"},"created_at":"Sat, 22 Mar 2014 22:33:27 +0000","description":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","id":"100004934383932_270660059775138","link":"http:\/\/www.facebook.com\/photo.php?v=301721056644466","name":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","og":{"dura\u00E7\u00E3o":"1:50"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-ash3\/t15.0-10\/1898357_301721366644435_301721056644466_21573_1925_t.jpg","source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","type":"video"},"interaction":{"aut
 hor":{"avatar":"https:\/\/graph.facebook.com\/100004934383932\/picture","id":"100004934383932","link":"http:\/\/www.facebook.com\/profile.php?id=100004934383932","name":"Clausimar Buba","type":"user"},"content":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","created_at":"Sat, 22 Mar 2014 22:33:27 +0000","id":"1e3b211fc665a580e066c43b1b32cfd2","link":"http:\/\/www.facebook.com\/100004934383932_270660059775138","received_at":4743640075412367737,"schema":{"version":3},"source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","subtype":"video","title":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","type":"facebook"},"language":{"confidence":98,"tag":"pt","tag_extended":"pt"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 15:04:52 +0000"],"hops":[["htt
 p:\/\/www.facebook.com\/photo.php?v=301721056644466"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. "],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=301721056644466"],"retweet_count":[0],"title":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O... - De POUCO UM TUDO. | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=301721056644466"]}}
+{"demographic":{"gender":"mostly_male"},"facebook":{"application":"Status","author":{"avatar":"https:\/\/graph.facebook.com\/100007044361728\/picture","id":"100007044361728","link":"http:\/\/www.facebook.com\/profile.php?id=100007044361728","name":"Len Row","type":"user"},"created_at":"Sat, 22 Mar 2014 22:34:04 +0000","description":"We had a great time at the first meeting for the Barnes & Noble Apache Book Club.  Next month's selection is \"The Uninvited Guests\" by Sadie Jones.  Join us on Tuesday, April 29th.  All are welcome!","id":"100007044361728_1434663546778444","link":"http:\/\/www.facebook.com\/bnapache\/posts\/621041997971955","message":"great to know some people can read\n\n","name":"Barnes & Noble Apache","picture":"http:\/\/scontent-b.xx.fbcdn.net\/hphotos-ash3\/t1.0-9\/p100x100\/1926909_621039807972174_390303089_n.jpg","source":"Status (25554907596)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100007044361728\/picture","id":"1000070
 44361728","link":"http:\/\/www.facebook.com\/profile.php?id=100007044361728","name":"Len Row","type":"user"},"content":"great to know some people can read\n\n","created_at":"Sat, 22 Mar 2014 22:34:04 +0000","id":"1e3b21212741a600e0662f16ad9b8c9e","link":"http:\/\/www.facebook.com\/100007044361728_1434663546778444","received_at":4743640075258435102,"schema":{"version":3},"source":"Status (25554907596)","subtype":"link","title":"Barnes & Noble Apache","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 22:34:25 +0000"],"hops":[["http:\/\/www.facebook.com\/bnapache\/posts\/621041997971955"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/bnapache\/posts\/621041997971955"],"retweet_count":[0],"title":["We had a great time at the first meeting... - Barnes & Noble Apache | Facebook"],"url":["https:\/\/www.facebook.com\/bnapache\/posts\/62104
 1997971955"]},"salience":{"content":{"sentiment":6},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"GrabInbox","author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"user"},"caption":"mcp.infusionsoft.com","created_at":"Sat, 22 Mar 2014 22:45:03 +0000","description":"type Status report The requested resource is not available.","id":"100004948484234_257170744457873","link":"https:\/\/mcp.infusionsoft.com\/go\/2ndcha","message":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","name":"Apache Tomcat\/6.0.36 - Error report","source":"GrabInbox (135280156521587)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"use
 r"},"content":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","created_at":"Sat, 22 Mar 2014 22:45:03 +0000","id":"1e3b2139b3f8a180e066b46311970690","link":"http:\/\/www.facebook.com\/100004948484234_257170744457873","schema":{"version":3},"source":"GrabInbox (135280156521587)","subtype":"link","title":"Apache Tomcat\/6.0.36 - Error report","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404],"created_at":["Sat, 22 Mar 2014 22:45:09 +0000"],"hops":[["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-5}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Windows Phone","author":{"avatar":"https:\/\/graph.facebook.com\/100004800278915\/picture","id":"100004800278915","link":"http:\/\/www.facebook.com\/profile.php?id=100004800278915","name":"Chuck Brown","type":"user"},"created_at":"Sat, 22 Mar 2014 22:51:31 +0000","description":"Tonight! Come out to Magnolia Motor Lounge around 9:30 or so! We'll play you rock and roll songs before the great Patrick Sweany Music! Hooray!!","id":"100004800278915_266054613564546","link":"http:\/\/www.facebook.com\/TheApache5\/posts\/10152325503479868","name":"The Apache 5","picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-prn2\/t1.0-1\/p100x100\/1797601_10152224411094868_229046817_a.jpg","source":"Facebook for Windows Phone (135892916448833)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004800278915\/picture","id":"100004800278915","link":"http:\/\/www.facebook.com\/profile.php?id=100004800
 278915","name":"Chuck Brown","type":"user"},"content":"Tonight! Come out to Magnolia Motor Lounge around 9:30 or so! We'll play you rock and roll songs before the great Patrick Sweany Music! Hooray!!","created_at":"Sat, 22 Mar 2014 22:51:31 +0000","id":"1e3b21482839ab80e066efe3200d7e24","link":"http:\/\/www.facebook.com\/100004800278915_266054613564546","received_at":4743640079700650151,"schema":{"version":3},"source":"Facebook for Windows Phone (135892916448833)","subtype":"link","title":"The Apache 5","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 19:20:40 +0000"],"hops":[["http:\/\/www.facebook.com\/TheApache5\/posts\/10152325503479868"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/TheApache5\/posts\/10152325503479868"],"retweet_count":[0],"title":["The Apache 5 - Tonight! Come out to Magnolia Motor Lounge... | Facebook"],"u
 rl":["https:\/\/www.facebook.com\/TheApache5\/posts\/10152325503479868"]},"salience":{"content":{"sentiment":12},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Video","author":{"avatar":"https:\/\/graph.facebook.com\/100006082453476\/picture","id":"100006082453476","link":"http:\/\/www.facebook.com\/profile.php?id=100006082453476","name":"Libor Klinton","type":"user"},"created_at":"Sat, 22 Mar 2014 22:55:02 +0000","description":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq \n\n----------------------------------------------------------------\nFor war and weapons technologies - Military photos and videos www.facebook.com\/WarDocumentaries","id":"100006082453476_1480782535467814","link":"http:\/\/www.facebook.com\/photo.php?v=359071040872553","name":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Mi...","og":{"length":"4:10"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-prn1\/t15.0-10\/632456_359071314205859_359071040872553_64780_2217_t.jpg","source":"http:\/\/scontent.xx.fbcdn.net\/hvideo-prn1\/v\/t42.1790-2\/757342_359071264205864
 _773831534_n.mp4?oh=70dea43416eaff290d9dc3946457f066&oe=532F7679","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100006082453476\/picture","id":"100006082453476","link":"http:\/\/www.facebook.com\/profile.php?id=100006082453476","name":"Libor Klinton","type":"user"},"content":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq \n\n----------------------------------------------------------------\nFor war and weapons technologies - Military photos and videos www.facebook.com\/WarDocumentaries","created_at":"Sat, 22 Mar 2014 22:55:02 +0000","id":"1e3b2150047aa700e0665052b58ab34a","link":"http:\/\/www.facebook.com\/100006082453476_1480782535467814","schema":{"version":3},"source":"http:\/\/scontent.xx.fbcdn.net\/hvideo-prn1\/v\/t42.1790-2\/757342_359071264205864_773831534_n.mp4?oh=70dea43416eaff290d9dc3946457f066&oe=532F7679","subtype":"video","title":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Mi...","type":"f
 acebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 20:22:09 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?v=359071040872553"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq ----------------------------------------------------------------For war..."],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=359071040872553"],"retweet_count":[0],"title":["Apache Gunship Takes Out 5 Armed... - War Documentaries | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=359071040872553"]}}
+{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000692731781\/picture","id":"100000692731781","link":"http:\/\/www.facebook.com\/profile.php?id=100000692731781","name":"Dimitris Kolovos","type":"user"},"created_at":"Sat, 22 Mar 2014 23:08:23 +0000","id":"100000692731781_739630136070071","link":"http:\/\/youtu.be\/EzgbcyfJgfQ","message":"Best instrumental rock song ever","name":"The Shadows - Apache (1960)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQDa2tZfBZZxvkC0&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FEzgbcyfJgfQ%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/EzgbcyfJgfQ?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000692731781\/picture","id":"100000692731781","link":"http:\/\/www.facebook.com\/profile.php?id=100000692731781","name":"Dimitris Kolovos","type":"user"},"content":"Best instrumental rock song ever","created_at
 ":"Sat, 22 Mar 2014 23:08:23 +0000","id":"1e3b216ddb68ad80e0667fd817b1fa3a","link":"http:\/\/www.facebook.com\/100000692731781_739630136070071","received_at":4743640083920541503,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/EzgbcyfJgfQ?autohide=1&version=3&autoplay=1","subtype":"video","title":"The Shadows - Apache (1960)","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 23:09:51 +0000"],"hops":[["http:\/\/youtu.be\/EzgbcyfJgfQ"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"","url":"http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ","title":"The Shadows - Apache (1960)","image":"http:\/\/i1.ytimg.com\/vi\/EzgbcyfJgfQ\/maxresdefault.jpg"}],"twitter":[{"player_width":"1440","description":"","player_height":"1080","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Ezgbcy
 fJgfQ","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/EzgbcyfJgfQ","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ","title":"The Shadows - Apache (1960)","image":"http:\/\/i1.ytimg.com\/vi\/EzgbcyfJgfQ\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/EzgbcyfJgfQ"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=EzgbcyfJgfQ"],"retweet_count":[0],"title":["The Shadows - Apache (1960) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ"]}}
+{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/500728788\/picture","id":"500728788","link":"http:\/\/www.facebook.com\/profile.php?id=500728788","name":"JustinJustin Toca","type":"user"},"created_at":"Sat, 22 Mar 2014 23:15:04 +0000","description":"http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records","id":"500728788_10152086255343789","link":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","message":"Getting some driving music - Jump on it ! \n","name":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAQT9vSNtgsLHVT&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FV-1mLguIFYQ%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/V-1mLguIFYQ?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/500728788\/picture","id":"500728788","link":"http:\/\/www.facebook.com\/profile.php?id=500728788","name":"JustinJusti
 n Toca","type":"user"},"content":"Getting some driving music - Jump on it ! \n","created_at":"Sat, 22 Mar 2014 23:15:04 +0000","id":"1e3b217ccba4ac00e066f5e6142ea0a6","link":"http:\/\/www.facebook.com\/500728788_10152086255343789","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/V-1mLguIFYQ?autohide=1&version=3&autoplay=1","subtype":"video","title":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 23:15:25 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records"],"keywords":[["incredible","bongo","band","apache","sugar","hill","gang","west","street","mob","break","dance","boogie","sir","mix-a-lot","jump","on","it","mix","remix","fatboy","slim","80s","bre..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","
 description":"http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records","url":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","title":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","image":"http:\/\/i1.ytimg.com\/vi\/V-1mLguIFYQ\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/V-1mLguIFYQ","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/V-1mLguIFYQ","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","title":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","image":"http:\/\/i1.ytimg.com\/vi\/V-1mLguIFYQ\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embe
 d\/V-1mLguIFYQ"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=V-1mLguIFYQ"],"retweet_count":[0],"title":["Incredible Bongo Band - Apache (Grandmaster Flash Mix) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ"]}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Photos","author":{"avatar":"https:\/\/graph.facebook.com\/840913406\/picture","id":"840913406","link":"http:\/\/www.facebook.com\/profile.php?id=840913406","name":"James Thomas Blanton","type":"user"},"caption":"abaachi home xx","created_at":"Sat, 22 Mar 2014 23:41:00 +0000","icon":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/v2\/yD\/r\/aS8ecmYRys0.gif","id":"840913406_10152308549513407","link":"http:\/\/www.facebook.com\/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1","name":"Photos from Vallibus Apache Sherwood's post in Cochise Chirichua","og":{"by":"Vallibus Apache Sherwood"},"picture":"http:\/\/photos-g.ak.fbcdn.net\/hphotos-ak-prn2\/t1.0-0\/10001324_480857308708959_468972925_s.jpg","source":"Photos (2305272732)","story":"James Thomas Blanton shared a photo.","story_tags":[[{"name":"James Thomas Blanton","length":20,"type":"user","id":"840913406","offset":0}]],"type":"photo"},"interaction":{"author":{"avatar
 ":"https:\/\/graph.facebook.com\/840913406\/picture","id":"840913406","link":"http:\/\/www.facebook.com\/profile.php?id=840913406","name":"James Thomas Blanton","type":"user"},"content":"James Thomas Blanton shared a photo.","created_at":"Sat, 22 Mar 2014 23:41:00 +0000","id":"1e3b21b6c2d0ae00e066ce9dccf570be","link":"http:\/\/www.facebook.com\/840913406_10152308549513407","received_at":4743640092152795077,"schema":{"version":3},"source":"Photos (2305272732)","subtype":"photo","title":"Photos from Vallibus Apache Sherwood's post in Cochise Chirichua","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 23:41:43 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["abaachi home xx"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?fbid=480857308708959&set=gm.
 1486179081603776&type=1"],"retweet_count":[0],"title":["Photos from Vallibus Apache Sherwood&#039;s... - Vallibus Apache Sherwood | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1"]},"salience":{"content":{"entities":[{"name":"James Thomas Blanton","sentiment":0,"confident":1,"label":"Person","evidence":4,"type":"Person","about":1}],"sentiment":0},"title":{"entities":[{"name":"Vallibus Apache Sherwood","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
+{"demographic":{"gender":"female"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000721662048\/picture","id":"100000721662048","link":"http:\/\/www.facebook.com\/profile.php?id=100000721662048","name":"Donna Cherylle Chesson","type":"user"},"created_at":"Sat, 22 Mar 2014 23:55:48 +0000","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","id":"2364123362_10152280355698363","likes":{"ids":["100000721662048"],"names":["Donna Cherylle Chesson"]},"link":"http:\/\/youtu.be\/vQObWW06VAM","name":"Sugarhill Gang Apache (Jump On It)","picture":"http:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l","source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","to":{"ids":["2364123362"],"names":["The Funky Fresh Fans of Felix Hernandez's Rhythm Revue"]},"type":"video"},"
 interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000721662048\/picture","id":"100000721662048","link":"http:\/\/www.facebook.com\/profile.php?id=100000721662048","name":"Donna Cherylle Chesson","type":"user"},"content":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","created_at":"Sat, 22 Mar 2014 23:55:48 +0000","id":"1e3b21d7d771aa00e066dffa252677c8","link":"http:\/\/www.facebook.com\/2364123362_10152280355698363","mention_ids":["2364123362"],"mentions":["The Funky Fresh Fans of Felix Hernandez's Rhythm Revue"],"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Sugarhill Gang Apache (Jump On It)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 01:42:36 +0000"],"hops":[["http:\/\/youtu.be\/vQObWW06VAM"]],"meta":{"char
 set":["UTF-8"],"content_type":["text\/html"],"description":["Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!"],"keywords":[["Funky","Pop","Greatness","Awesome"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VA
 M","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/vQObWW06VAM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=vQObWW06VAM"],"retweet_count":[0],"title":["Sugarhill Gang Apache (Jump On It) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=vQObWW06VAM"]}}
+{"demographic":{"gender":"mostly_male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004682409587\/picture","id":"100004682409587","link":"http:\/\/www.facebook.com\/profile.php?id=100004682409587","name":"Jose Maria Martinez Leyva","type":"user"},"created_at":"Sun, 23 Mar 2014 00:33:00 +0000","id":"100004682409587_277921899040555","link":"https:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","message":"jajajajajaj esta conmadres\n","name":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQDiGN11mckrPt_6&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2Ffm5m5jfQ5ik%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/fm5m5jfQ5ik?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004682409587\/picture","id":"100004682409587","link":"http:\/\/www.facebook.com\/profile.php?id=100004682409587","name":"Jose Maria Martin
 ez Leyva","type":"user"},"content":"jajajajajaj esta conmadres\n","created_at":"Sun, 23 Mar 2014 00:33:00 +0000","id":"1e3b222afd74a600e066797f81f716ee","link":"http:\/\/www.facebook.com\/100004682409587_277921899040555","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/fm5m5jfQ5ik?autohide=1&version=3&autoplay=1","subtype":"video","title":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","type":"facebook"},"language":{"confidence":96,"tag":"es","tag_extended":"es"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:34:12 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"keywords":[["LOS","AMOS","DEL","CAMINO","tropicalisimo","apache","como","camionero","que","soy"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"","url":"http:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","title":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","image":"https:\/\/i1.ytimg.com\/vi\
 /fm5m5jfQ5ik\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fm5m5jfQ5ik","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fm5m5jfQ5ik","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","title":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","image":"https:\/\/i1.ytimg.com\/vi\/fm5m5jfQ5ik\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/fm5m5jfQ5ik"}]},"normalized_url":["https:\/\/youtube.com\/watch?v=fm5m5jfQ5ik"],"retweet_count":[0],"title":["LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito) - YouTube"],"url":["https:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik"]}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"caption":"m.accuweather.com","created_at":"Sun, 23 Mar 2014 00:41:44 +0000","description":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","id":"100002325709380_610404682380383","link":"http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814","name":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fincludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wi
 ldflowers-antelope-valley-california.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"content":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","created_at":"Sun, 23 Mar 2014 00:41:44 +0000","id":"1e3b223e82b5a400e066632d393e4a54","link":"http:\/\/www.facebook.com\/100002325709380_610404682380383","received_at":4743640107400037610,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 20
 14 00:42:07 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com"],"keywords":[["Apache Junction","AZ 85120","15 day weather forecast","10 day weather forecast","weather forecast"]],"lang":["unknown"]},"normalized_url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"],"retweet_count":[0],"title":["Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120"],"url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"]},"salience":{"content":{"entities":[{"name":"AccuWeather.com","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["weather forecast","Extended forecast"]},{"name":"Apache Junction, AZ","sentiment":0,"confident":1,"label":"city","evidence":
 2,"type":"Place","about":1,"themes":["weather forecast","Extended forecast"]},{"name":"85120","sentiment":1,"confident":1,"label":"postcode","evidence":6,"type":"Place","about":1,"themes":["weather forecast","Extended forecast"]}],"sentiment":1,"topics":[{"name":"Weather","score":0.89863264560699,"additional":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","hits":0}]},"title":{"entities":[{"name":"85120","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0,"topics":[{"name":"Weather","score":0.9952420592308,"additional":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","hits":0}]}}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"caption":"m.accuweather.com","created_at":"Sun, 23 Mar 2014 00:45:41 +0000","description":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","id":"100002325709380_610405619046956","link":"http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814","message":"Its actually 84 right now! For a month or more already!","name":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fi
 ncludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"content":"Its actually 84 right now! For a month or more already!","created_at":"Sun, 23 Mar 2014 00:45:41 +0000","id":"1e3b224756eaa880e066a75a6320b04a","link":"http:\/\/www.facebook.com\/100002325709380_610405619046956","received_at":4743640108424891046,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:42:07 +0000"],"meta":{"charset":["UTF-8"],"content_typ
 e":["text\/html"],"description":["Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com"],"keywords":[["Apache Junction","AZ 85120","15 day weather forecast","10 day weather forecast","weather forecast"]],"lang":["unknown"]},"normalized_url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"],"retweet_count":[0],"title":["Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120"],"url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"]},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"85120","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0,"topics":[{"name":"Weather","score":0.9952420592308,"additional":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","hits":0}]}}}
+{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"caption":"m.accuweather.com","created_at":"Sun, 23 Mar 2014 00:49:19 +0000","description":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","id":"100002325709380_610406239046894","link":"http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814","message":"It's actually 84 right now and for the past month or more now!","name":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2F
 pub%2Fincludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"content":"It's actually 84 right now and for the past month or more now!","created_at":"Sun, 23 Mar 2014 00:49:19 +0000","id":"1e3b224f75eda180e066b380e63809ce","link":"http:\/\/www.facebook.com\/100002325709380_610406239046894","received_at":4743640109365516567,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:42:07 +0000"],"meta":{"charset":["UTF-8"
 ],"content_type":["text\/html"],"description":["Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com"],"keywords":[["Apache Junction","AZ 85120","15 day weather forecast","10 day weather forecast","weather forecast"]],"lang":["unknown"]},"normalized_url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"],"retweet_count":[0],"title":["Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120"],"url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"]},"salience":{"content":{"sentiment":-1},"title":{"entities":[{"name":"85120","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0,"topics":[{"name":"Weather","score":0.9952420592308,"additional":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","hits":0}]}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100001298390976\/picture","id":"100001298390976","link":"http:\/\/www.facebook.com\/profile.php?id=100001298390976","name":"Wayne Lewis","type":"user"},"caption":"www.thesaltyshrimper.com","created_at":"Sun, 23 Mar 2014 00:57:09 +0000","description":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast.  At the docks in Venice were the twin boats the Apache Trails and the...","id":"100001298390976_643096572410283","link":"http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html","name":"The Apache Drums:  A  Model  Tribute","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCvjt9aP7_rnSKZ&w=154&h=154&url=http%3A%2F%2Fwww.thesaltyshrimper.com%2Fuploads%2F2%2F4%2F5%2F4%2F24542146%2F841191_orig.jpg","source":"Facebook for Android (35068553
 1728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001298390976\/picture","id":"100001298390976","link":"http:\/\/www.facebook.com\/profile.php?id=100001298390976","name":"Wayne Lewis","type":"user"},"content":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast.  At the docks in Venice were the twin boats the Apache Trails and the...","created_at":"Sun, 23 Mar 2014 00:57:09 +0000","id":"1e3b2260f832a080e066cb5e859afa7e","link":"http:\/\/www.facebook.com\/100001298390976_643096572410283","received_at":4743640111346820212,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"The Apache Drums:  A  Model  Tribute","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:57:49 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":[
 "Articles and stories about shrimp and shrimping."],"lang":["unknown"],"opengraph":[{"site_name":"TheSaltyShrimper","description":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast. At the docks in Venice were the twin boats the Apache Trails and the...","url":"http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html","title":"The Apache Drums: A Model Tribute","image":"http:\/\/www.thesaltyshrimper.com\/uploads\/2\/4\/5\/4\/24542146\/9884800.jpg"}]},"normalized_url":["http:\/\/thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html"],"retweet_count":[0],"title":["The Apache Drums: A Model Tribute - TheSaltyShrimper"],"url":["http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100001298390976\/picture","id":"100001298390976","link":"http:\/\/www.facebook.com\/profile.php?id=100001298390976","name":"Wayne Lewis","type":"user"},"caption":"www.thesaltyshrimper.com","created_at":"Sun, 23 Mar 2014 01:04:16 +0000","description":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast.  At the docks in Venice were the twin boats the Apache Trails and the...","id":"100001298390976_643107672409173","link":"http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html","name":"The Apache Drums:  A  Model  Tribute","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCvjt9aP7_rnSKZ&w=154&h=154&url=http%3A%2F%2Fwww.thesaltyshrimper.com%2Fuploads%2F2%2F4%2F5%2F4%2F24542146%2F841191_orig.jpg","source":"Facebook for Andro

<TRUNCATED>

[19/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
index ced67e4..fb68f98 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
@@ -1,243 +1,252 @@
-{"interaction":{"author":{"link":"http:\/\/en.wikipedia.org\/wiki\/Special:Contributions\/98.250.65.246","username":"98.250.65.246"},"content":"<table class=\"infobox vevent\" cellspacing=\"3\" style=\"border-spacing:3px;width:22em;font-size: 90%;;\">\n<tr>\n<th colspan=\"2\" class=\"summary\" style=\"text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;\">Fort Apache: The Bronx<\/th>\n<\/tr>\n<tr>\n<td colspan=\"2\" style=\"text-align:center;\"><a href=\"\/wiki\/File:Fort_apache_the_bronx.jpg\" class=\"image\"><img alt=\"Fort apache the bronx.jpg\" src=\"\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/9\/9d\/Fort_apache_the_bronx.jpg\/220px-Fort_apache_the_bronx.jpg\" width=\"220\" height=\"337\" class=\"thumbborder\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 1.5x, \/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 2x\" \/><\/a><br \/>\n<div style=\"font-size: 95%; line-height: 1.5em;\"
 >Movie poster for <i>Fort Apache, The Bronx<\/i><\/div>\n<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Directed by<\/th>\n<td><a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Produced by<\/th>\n<td>Thomas Fiorello<br \/>\n<a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a><br \/>\nCompanies:<br \/>\nProducers Circle<br \/>\nTime-Life Television<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Written by<\/th>\n<td>Heywood Gould<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Starring<\/th>\n<td><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a><br \/>\n<a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a><br \/>\n<a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a>
 <br \/>\n<a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a><br \/>\n<a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a><br \/>\n<a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a><br \/>\n<a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a><br \/>\n<a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a><br \/>\n<a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Music by<\/th>\n<td><a href=\"\/wiki\/Jonathan_Tunick\" title=\"Jonathan Tunick\">Jonathan Tunick<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Cinematography<\/th>\n<td><a href=\"\/wiki\/John_Alcott\" title=\"John Alcott\">John Alcott<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Editing by<\/
 th>\n<td>Rita Roland<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Distributed by<\/th>\n<td><a href=\"\/wiki\/20th_Century_Fox\" title=\"20th Century Fox\">20th Century Fox<\/a><br \/>\n<a href=\"\/wiki\/HBO\" title=\"HBO\">HBO<\/a> (DVD)<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Release dates<\/th>\n<td>February 6, 1981<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Running time<\/th>\n<td>125 minutes<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Language<\/th>\n<td><a href=\"\/wiki\/English_language\" title=\"English language\">English<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Budget<\/th>\n<td>$4,000,000<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Box office<\/th>\n<td>Total US Gross: <a href=\"\/wiki\/USD\" title=\"USD\" c
 lass=\"mw-redirect\">$<\/a>29,200,000 (US)<br \/>\nInternational Gross: $36,000,000<br \/>\nWorldwide Gross: $65,200,000<sup id=\"cite_ref-1\" class=\"reference\"><a href=\"#cite_note-1\"><span>[<\/span>1<span>]<\/span><\/a><\/sup><\/td>\n<\/tr>\n<\/table>\n<div class=\"thumb tright\">\n<div class=\"thumbinner\" style=\"width:222px;\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"image\"><img alt=\"\" src=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/220px-Fort_Apache_Police_Precinct%2C_2007.JPG\" width=\"220\" height=\"165\" class=\"thumbimage\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/330px-Fort_Apache_Police_Precinct%2C_2007.JPG 1.5x, \/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/440px-Fort_Apache_Police_Precinct%2C_2007.JPG 2x\" \/><\/a>\n<div class=\"thumbcaption\">\n<div cla
 ss=\"magnify\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"internal\" title=\"Enlarge\"><img src=\"\/\/bits.wikimedia.org\/static-1.23wmf18\/skins\/common\/images\/magnify-clip.png\" width=\"15\" height=\"11\" alt=\"\" \/><\/a><\/div>\nThe real \"Fort Apache\" in the summer of 2007\u20141086 Simpson Street in the Bronx, formerly the New York Police Department's 41st Precinct Station. <span class=\"plainlinks nourlexpansion\"><a class=\"external text\" href=\"\/\/tools.wmflabs.org\/geohack\/geohack.php?pagename=Fort_Apache%2C_The_Bronx&amp;params=40_49_32.07_N_73_53_33.72_W_scale:2000\"><span class=\"geo-default\"><span class=\"geo-dms\" title=\"Maps, aerial photos, and other data for this location\"><span class=\"latitude\">40\u00B049\u203232.07\u2033N<\/span> <span class=\"longitude\">73\u00B053\u203233.72\u2033W<\/span><\/span><\/span><span class=\"geo-multi-punct\">\uFEFF \/ \uFEFF<\/span><span class=\"geo-nondefault\"><span class=\"geo-dec\" title=\"Ma
 ps, aerial photos, and other data for this location\">40.8255750\u00B0N 73.8927000\u00B0W<\/span><span style=\"display:none\">\uFEFF \/ <span class=\"geo\">40.8255750; -73.8927000<\/span><\/span><\/span><\/a><\/span><\/div>\n<\/div>\n<\/div>\n<p><i><b>Fort Apache: The Bronx<\/b><\/i> is a 1981 <a href=\"\/wiki\/Crime_film\" title=\"Crime film\">crime<\/a> <a href=\"\/wiki\/Drama_film\" title=\"Drama film\">drama film<\/a> made by Producers Circle, Time-Life Television Productions Inc., and distributed by <a href=\"\/wiki\/Twentieth_Century-Fox_Film_Corporation\" title=\"Twentieth Century-Fox Film Corporation\" class=\"mw-redirect\">Twentieth Century-Fox Film Corporation<\/a>. It was directed by <a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a> and produced by <a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a>, Thomas Fiorello, with <a href=\"\/wiki\/David_Susskind\" title=\"David Susskind\">David Susski
 nd<\/a> as executive producer. It stars <a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a>, <a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a>, <a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a>, <a href=\"\/wiki\/Edward_Asner\" title=\"Edward Asner\" class=\"mw-redirect\">Edward Asner<\/a>, <a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a>, <a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a>, <a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a>, <a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> and <a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a>.<\/p>\n<p>Filmed on locations in the Bronx, New York City, New York, it is widely believed that the film was based on the book <i>Fort Apache<\/i> by Tom Walker, but the studio, Time-Life Television Films (owner of the script), disputes this. 
 The result was lengthy court litigation.<\/p>\n<p><\/p>\n<div id=\"toc\" class=\"toc\">\n<div id=\"toctitle\">\n<h2>Contents<\/h2>\n<\/div>\n<ul>\n<li class=\"toclevel-1 tocsection-1\"><a href=\"#Plot\"><span class=\"tocnumber\">1<\/span> <span class=\"toctext\">Plot<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-2\"><a href=\"#Cast\"><span class=\"tocnumber\">2<\/span> <span class=\"toctext\">Cast<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-3\"><a href=\"#Reception\"><span class=\"tocnumber\">3<\/span> <span class=\"toctext\">Reception<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-4\"><a href=\"#Legal_issues\"><span class=\"tocnumber\">4<\/span> <span class=\"toctext\">Legal issues<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-5\"><a href=\"#See_also\"><span class=\"tocnumber\">5<\/span> <span class=\"toctext\">See also<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-6\"><a href=\"#References\"><span class=\"tocnumber\">6<\/span> <span class=\
 "toctext\">References<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-7\"><a href=\"#External_links\"><span class=\"tocnumber\">7<\/span> <span class=\"toctext\">External links<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<p><\/p>\n<h2><span class=\"mw-headline\" id=\"Plot\">Plot<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=1\" title=\"Edit section: Plot\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>Police officers face many challenges in the decayed <a href=\"\/wiki\/South_Bronx\" title=\"South Bronx\">South Bronx<\/a> region of <a href=\"\/wiki\/New_York_City\" title=\"New York City\">New York City<\/a>. Among them are <a href=\"\/wiki\/NYPD\" title=\"NYPD\" class=\"mw-redirect\">NYPD<\/a> officers Murphy (Newman) and Corelli (Wahl), who work out of the 41st precinct, nicknamed \"Fort Apache\" because to those who work there, it f
 eels like an army outpost in foreign territory (an <a href=\"\/wiki\/Allusion\" title=\"Allusion\">allusion<\/a> to <a href=\"\/wiki\/Fort_Apache\" title=\"Fort Apache\">Fort Apache<\/a> out of the <a href=\"\/wiki\/Old_West\" title=\"Old West\" class=\"mw-redirect\">Old West<\/a>).<\/p>\n<p>The precinct itself is one of the worst and most dilapidated in the entire department, approaching demolition and staffed mostly by officers who are unwanted by and have been transferred out of other precincts. Additionally, the precinct is of little use to the large <a href=\"\/wiki\/Puerto_Rican_people\" title=\"Puerto Rican people\">Puerto Rican<\/a> community, as only 4% of the officers are <a href=\"\/wiki\/Hispanic\" title=\"Hispanic\">Hispanic<\/a> in the largest non-English speaking section of the Bronx, according to retiring precinct captain Dugan.<\/p>\n<p>Corelli and Murphy attempt to maintain law and order but have conflicts with corrupt fellow officers, as well as with a newly appoi
 nted police captain, rioting due to police brutality, and issues related to the deaths of two rookie cops at the film's beginning.<\/p>\n<p>Illustrating the hopeless futility of the work done at the precinct, the killer is later found as an anonymous body, dumped in the roadside trash. With nothing to link her to the deaths of the rookie officers, the police remain ignorant of the fact that she was the killer and will never be caught.<\/p>\n<h2><span class=\"mw-headline\" id=\"Cast\">Cast<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=2\" title=\"Edit section: Cast\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a> as Murphy<\/li>\n<li><a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a> as Connolly<\/li>\n<li><a href=\"\/wiki\/Ken_Wahl\" title=\"Ken W
 ahl\">Ken Wahl<\/a> as Corelli<\/li>\n<li><a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a> as Morgan<\/li>\n<li><a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a> as Isabella<\/li>\n<li><a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a> as Charlotte<\/li>\n<li><a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a> as Theresa<\/li>\n<li><a href=\"\/wiki\/Tito_Goya\" title=\"Tito Goya\">Tito Goya<\/a> as Jumper \/ Detective<\/li>\n<li><a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a> as Hernando<\/li>\n<li>Jaime Tirelli as Jose<\/li>\n<li>Lance Guecia as Track star<\/li>\n<li>Rony Clanton as agent for hookers<\/li>\n<li><a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> as Dacey<\/li>\n<li><a href=\"\/wiki\/Sully_Boyar\" title=\"Sully Boyar\">Sully Boyar<\/a> as Dugan<\/li>\n<li><a href=\"\/wiki\/Michael_Higgins_(actor)\
 " title=\"Michael Higgins (actor)\">Michael Higgins<\/a> as Heffernan<\/li>\n<li>Rik Colitti as Pantuzzi<\/li>\n<li>Irving Metzman as Applebaum<\/li>\n<li>Frank Adu as Clendennon<\/li>\n<li>John Aquino as Finley<\/li>\n<li>Norman Matlock as Lincoln<\/li>\n<li>John Ring as Donohue<\/li>\n<li>Tony DiBenedetto as Moran<\/li>\n<li>Terence Brady as Cop at bar<\/li>\n<li>Randy Jurgensen as Cop at bar<\/li>\n<li>Marvin Cohen as Cop at bar<\/li>\n<li><a href=\"\/wiki\/Paul_Gleason\" title=\"Paul Gleason\">Paul Gleason<\/a> as Detective<\/li>\n<li>Reynaldo Medina as Detective<\/li>\n<li>Daryl Edwards as Black rookie<\/li>\n<li><a href=\"\/wiki\/Donald_Petrie\" title=\"Donald Petrie\">Donald Petrie<\/a> as White rookie<\/li>\n<li>Thomas A. Carlin as Man with flat tire<\/li>\n<li>Frederick Allen as Corelli's brother<\/li>\n<li><a href=\"\/wiki\/Dominic_Chianese\" title=\"Dominic Chianese\">Dominic Chianese<\/a> as Corelli's father<\/li>\n<li>Mike Cicchetti as Wild-eyed man<\/li>\n<li>Apu Gueci
 a as Stabbed boy<\/li>\n<li>Kim Delgado as Suspect #1<\/li>\n<li>Reyno as Suspect #2<\/li>\n<li>Dadi Pinero as Suspect #3<\/li>\n<li><a href=\"\/wiki\/Cleavant_Derricks_(actor)\" title=\"Cleavant Derricks (actor)\">Cleavant Derricks<\/a> as Suspect #4<\/li>\n<li>Dolores Hern\u00E1ndez as Pregnant girl<\/li>\n<li>Santos Morales as Girl's father<\/li>\n<li>Ruth Last as Girl's mother<\/li>\n<li>Jos\u00E9 Rabelo as Girl's uncle<\/li>\n<li><a href=\"\/wiki\/Gilbert_Lewis_(actor)\" title=\"Gilbert Lewis (actor)\">Gilbert Lewis<\/a> as Mob leader<\/li>\n<li><a href=\"\/wiki\/Lisa_Loomer\" title=\"Lisa Loomer\">Lisa Loomer<\/a> as Hooker #1<\/li>\n<li>Sandi Franklin as Hooker #2<\/li>\n<li>Eric Mourino as Boy on roof<\/li>\n<li>Jessica Costello as Girl on roof<\/li>\n<li>Gloria Irizarry as Drug dealer<\/li>\n<li>Manuel E. Santiago as Intern<\/li>\n<li>Joaquin La Habana as Transvestite<\/li>\n<li>Fred Strothers as Hospital buyer<\/li>\n<li>Sylvia Kuumba Williams as Bartender<\/li>\n<li>Patri
 cia Dratel as Hostage<\/li>\n<li>Thomas Fiorello as Fence<\/li>\n<li>M.J. Quinn as Cop<\/li>\n<li>Bernie Rachelle as Wedgie Patrol<\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Reception\">Reception<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=3\" title=\"Edit section: Reception\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>The film was successful, grossing over $65 million worldwide at its time of release in 1981. Paul Newman was largely praised for his performance, but the movie itself received more negative reviews.<\/p>\n<ul>\n<li><a href=\"\/wiki\/Richard_Schickel\" title=\"Richard Schickel\">Richard Schickel<\/a>, in <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>, called it: \"more like a made-for-TV movie\". He also added: \"The film is not quite up to its star\".; \"...somewhere betwe
 en <a href=\"\/wiki\/Barney_Miller\" title=\"Barney Miller\">Barney Miller<\/a> and the works of <a href=\"\/wiki\/Joseph_Wambaugh\" title=\"Joseph Wambaugh\">Joseph Wambaugh<\/a>\".; and: \"But mainly it is Newman, now 56, who gives Fort Apache its modest distinction\".<sup id=\"cite_ref-2\" class=\"reference\"><a href=\"#cite_note-2\"><span>[<\/span>2<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Roger_Ebert\" title=\"Roger Ebert\">Roger Ebert<\/a>, <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>, said: \"...the most complete collection of cop-movie clich\u00E9s since John Wayne played a Chicago cop in <i>McQ<\/i>\". (Ebert got this incorrect, in <i><a href=\"\/wiki\/McQ\" title=\"McQ\">McQ<\/a><\/i> Wayne played a Seattle policeman, he played a Chicago policeman in <a href=\"\/wiki\/Brannigan_(film)\" title=\"Brannigan (film)\"><i>Brannigan<\/i><\/a>.) \"There are too many scenes that are necessary t
 o the plot but not to the movie, scenes where the life of the movie stops so story details can be filled in\". \"The movie has several story threads that lead nowhere\". But, says about Newman, \"He's good in his role,...\" But, also calls this more of a TV show.<sup id=\"cite_ref-3\" class=\"reference\"><a href=\"#cite_note-3\"><span>[<\/span>3<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a> labeled the film: \"... a very patchy picture, strong on dialog and acting and exceedingly weak on story\", and criticizes it for its lack of depth.<sup id=\"cite_ref-Variety-Review-FATB_4-0\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/span>4<span>]<\/span><\/a><\/sup><\/li>\n<li>Nick Sambides, Jr. at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a> calls it \"...flinty but otherwise forgettable character study\".<sup id=\"cite_ref-5\" class=\"reference\"><a href=\"#cite_n
 ote-5\"><span>[<\/span>5<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li>The <i><a href=\"\/wiki\/New_York_Post\" title=\"New York Post\">New York Post<\/a><\/i> published a photo of Newman on the set with a caption that he stated was inaccurate<sup class=\"noprint Inline-Template\" style=\"white-space:nowrap;\">[<i><a href=\"\/wiki\/Wikipedia:Please_clarify\" title=\"Wikipedia:Please clarify\"><span title=\"The text near this tag may need clarification or removal of jargon. (December 2011)\">clarification needed<\/span><\/a><\/i>]<\/sup>, calling the paper \"a garbage can\". Because of the dispute the <i>Post<\/i> banned him from its pages, even removing his name from movies in the TV listings.<sup id=\"cite_ref-digiacomo200412_6-0\" class=\"reference\"><a href=\"#cite_note-digiacomo200412-6\"><span>[<\/span>6<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Legal_issues\">Legal issues<\/span><span class=\"mw-editsection\"><span class=\"mw-editsect
 ion-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=4\" title=\"Edit section: Legal issues\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li>Local community groups threatened to file suit against the producers because of the way it depicted their neighborhood in the Bronx and for the depiction of ethnic minorities (Blacks and Puerto Ricans). Because of this pressure some changes were made to the script and a note was added to the title card at the beginning of the film.<sup id=\"cite_ref-Variety-Review-FATB_4-1\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/span>4<span>]<\/span><\/a><\/sup><sup id=\"cite_ref-7\" class=\"reference\"><a href=\"#cite_note-7\"><span>[<\/span>7<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li><i>Walker v. Time Life Films, Inc.<\/i>, 784 F.2d 44 (<a href=\"\/wiki\/United_States_Court_of_Appeals_for_the_Second_Circuit\" title=\"United St
 ates Court of Appeals for the Second Circuit\">2d Cir<\/a>. 1986)<\/li>\n<\/ul>\n<dl>\n<dd>\n<dl>\n<dd>After the release of the film, an author, Tom Walker, filed a lawsuit against one of the production companies, Time-Life Television Films (legal owner of the script), claiming that the producers infringed on his book <i>Fort Apache<\/i> (New York: Crowell, 1976. <a href=\"\/wiki\/Special:BookSources\/0690010478\" class=\"internal mw-magiclink-isbn\">ISBN 0-690-01047-8<\/a>). Among other things, Walker, the plaintiff, argued that: \"both the book and the film begin with the murder of a black and a white policeman with a handgun at close range; both depict cockfights, drunks, stripped cars, prostitutes and rats; both feature as central characters third- or fourth-generation Irish policemen who live in Queens and frequently drink; both show disgruntled, demoralized police officers and unsuccessful foot chases of fleeing criminals\". But the <a href=\"\/wiki\/United_States_Court_of_App
 eals_for_the_Second_Circuit\" title=\"United States Court of Appeals for the Second Circuit\">United States Court of Appeals for the Second Circuit<\/a> ruled that these are stereo-typical ideas, so called <i>\"<a href=\"\/wiki\/Scenes_%C3%A0_faire\" title=\"Scenes \u00E0 faire\" class=\"mw-redirect\">sc\u00E8nes \u00E0 faire<\/a>\"<\/i> (French for \"scenes that must be done\"), and that the <a href=\"\/wiki\/United_States_copyright_law\" title=\"United States copyright law\" class=\"mw-redirect\">United States copyright law<\/a> does not protect concepts or ideas. The court ruling stated: \"the book <i>Fort Apache<\/i> and the film <i>Fort Apache: The Bronx<\/i> were not substantially similar beyond [the] level of generalized or otherwise nonprotectible ideas, and thus [the] latter did not infringe copyright of [the] former\".<sup id=\"cite_ref-MargolickD-NYT_8-0\" class=\"reference\"><a href=\"#cite_note-MargolickD-NYT-8\"><span>[<\/span>8<span>]<\/span><\/a><\/sup><sup id=\"cite
 _ref-9\" class=\"reference\"><a href=\"#cite_note-9\"><span>[<\/span>9<span>]<\/span><\/a><\/sup><\/dd>\n<\/dl>\n<\/dd>\n<\/dl>\n<p><br \/><\/p>\n<h2><span class=\"mw-headline\" id=\"See_also\">See also<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=5\" title=\"Edit section: See also\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/List_of_American_films_of_1981\" title=\"List of American films of 1981\">List of American films of 1981<\/a><\/li>\n<li><a href=\"\/wiki\/Fort_Apache_(hostile_place)\" title=\"Fort Apache (hostile place)\">Fort Apache<\/a><\/li>\n<li><a href=\"\/wiki\/Fort_Apache_(film)\" title=\"Fort Apache (film)\"><i>Fort Apache<\/i> (film)<\/a><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"References\">References<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">
 [<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=6\" title=\"Edit section: References\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<div class=\"reflist\" style=\"list-style-type: decimal;\">\n<ol class=\"references\">\n<li id=\"cite_note-1\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-1\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php\"><i>Fort Apache, The Bronx<\/i><\/a>. \u2013 The Numbers<\/span><\/li>\n<li id=\"cite_note-2\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-2\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#\">\"Conscience in a Rough Precinct\"<\/a>. \u2013 <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>. \u2013 February 
 16, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-3\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-3\">^<\/a><\/b><\/span> <span class=\"reference-text\">Ebert, Roger. \u2013 <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/rogerebert.suntimes.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>. \u2013 January 1, 1981 \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-Variety-Review-FATB-4\"><span class=\"mw-cite-backlink\">^ <a href=\"#cite_ref-Variety-Review-FATB_4-0\"><sup><i><b>a<\/b><\/i><\/sup><\/a> <a href=\"#cite_ref-Variety-Review-FATB_4-1\"><sup><i><b>b<\/b><\/i><\/sup><\/a><\/span> <span class=\"reference-text\">Film: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.variety.com\/index.asp?layout=print_review&amp;reviewid=VE11
 17791034&amp;categoryid=31\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a>. \u2013 January 1, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-5\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-5\">^<\/a><\/b><\/span> <span class=\"reference-text\">Sambides, Nick, Jr. \u2013 Review: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&amp;sql=1:18269~T1\"><i>Fort Apache, the Bronx\"<\/i><\/a>. \u2013 <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a>. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-digiacomo200412-6\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-digiacomo200412_6-0\">^<\/a><\/b><\/span> <span class=\"reference-text\"><span class=\"citation news\">DiGiaomo, Frank (December 2004). <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.vanityfair.com\/culture\/features\/2
 004\/12\/pagesix200412.print\">\"The Gossip Behind the Gossip\"<\/a>. <i>Vanity Fair<\/i><span class=\"reference-accessdate\">. Retrieved September 13, 2011<\/span>.<\/span><span title=\"ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AFort+Apache%2C+The+Bronx&amp;rft.atitle=The+Gossip+Behind+the+Gossip&amp;rft.au=DiGiaomo%2C+Frank&amp;rft.aulast=DiGiaomo%2C+Frank&amp;rft.date=December+2004&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.vanityfair.com%2Fculture%2Ffeatures%2F2004%2F12%2Fpagesix200412.print&amp;rft.jtitle=Vanity+Fair&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal\" class=\"Z3988\"><span style=\"display:none;\">&#160;<\/span><\/span><\/span><\/li>\n<li id=\"cite_note-7\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-7\">^<\/a><\/b><\/span> <span class=\"reference-text\">Cultural Desk: \"'Apache' Film's Debut Protested\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i
 >. \u2013 February 7, 1981<\/span><\/li>\n<li id=\"cite_note-MargolickD-NYT-8\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-MargolickD-NYT_8-0\">^<\/a><\/b><\/span> <span class=\"reference-text\">Margolick, David. \u2013 Legal Notes: \"Writer Told 'Ft. Apache' isn't Just His\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i>. \u2013 August 25, 1985<\/span><\/li>\n<li id=\"cite_note-9\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-9\">^<\/a><\/b><\/span> <span class=\"reference-text\">Beeber, Jessie, and Maura Wogan. \u2013 \"Is Sc\u00E8nes \u00E0 Faire Really 'Necessary'?\". \u2013 <i>Entertainment, Arts and Sports Law Journal<\/i>. \u2013 Spring 2004. \u2013 Vol. 15, No. 1<\/span><\/li>\n<\/ol>\n<\/div>\n<h2><span class=\"mw-headline\" id=\"External_links\">External links<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort
 _Apache,_The_Bronx&amp;action=edit&amp;section=7\" title=\"Edit section: External links\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.imdb.com\/title\/tt0082402\/\"><i>Fort Apache, The Bronx<\/i><\/a> at the <a href=\"\/wiki\/Internet_Movie_Database\" title=\"Internet Movie Database\">Internet Movie Database<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/movie\/v18269\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">allmovie<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Rotten_Tomatoes\" title=\"Rotten Tomatoes\">Rotten Tomatoes<\/a><\/li>\n<\/ul>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<tabl
 e cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Daniel_Petrie\" title=\"Template:Daniel Petrie\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Daniel_Petrie\" title=\"Template talk:Daniel Petrie\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Daniel_Petrie&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\">Films d
 irected by <a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1960s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/The_Bramble_Bush\" title=\"The Bramble Bush\">The Bramble Bush<\/a><\/i> (1960)<\/li>\n<li><i><a href=\"\/wiki\/A_Raisin_in_the_Sun_(1961_film)\" title=\"A Raisin in the Sun (1961 film)\">A Raisin in the Sun<\/a><\/i> (1961)<\/li>\n<li><i><a href=\"\/wiki\/The_Main_Attraction_(film)\" title=\"The Main Attraction (film)\">The Main Attraction<\/a><\/i> (1962)<\/li>\n<li><i><a href=\"\/wiki\/Stolen_Hours\" title=\"Stolen Hours\">Stolen Hours<\/a><\/i> (1963)<\/li>\n<li><i><a href=\"\/wiki\/The_Idol_(film)\" title=\"The Idol (film)\">The Idol<\/a><\/i>
  (1966)<\/li>\n<li><i><a href=\"\/wiki\/The_Spy_with_a_Cold_Nose\" title=\"The Spy with a Cold Nose\">The Spy with a Cold Nose<\/a><\/i> (1966)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1970s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Moon_of_the_Wolf\" title=\"Moon of the Wolf\">Moon of the Wolf<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki\/The_Neptune_Factor\" title=\"The Neptune Factor\">The Neptune Factor<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki\/The_Gun_and_the_Pulpit\" title=\"The Gun and the Pulpit\">The Gun and the Pulpit<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Buster_and_Billie\" title=\"Buster and Billie\">Buster and Billie<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Eleano
 r_and_Franklin\" title=\"Eleanor and Franklin\">Eleanor and Franklin<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Lifeguard_(film)\" title=\"Lifeguard (film)\">Lifeguard<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Sybil_(1976_film)\" title=\"Sybil (1976 film)\">Sybil<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Eleanor_and_Franklin:_The_White_House_Years\" title=\"Eleanor and Franklin: The White House Years\">Eleanor and Franklin: The White House Years<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Betsy\" title=\"The Betsy\">The Betsy<\/a><\/i> (1978)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1980s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Resurrection_(1980_film)\" title=\"Resurrection 
 (1980 film)\">Resurrection<\/a><\/i> (1980)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Six_Pack_(film)\" title=\"Six Pack (film)\">Six Pack<\/a><\/i> (1982)<\/li>\n<li><i><a href=\"\/wiki\/The_Dollmaker\" title=\"The Dollmaker\">The Dollmaker<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/The_Bay_Boy\" title=\"The Bay Boy\">The Bay Boy<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/Square_Dance_(film)\" title=\"Square Dance (film)\">Square Dance<\/a><\/i> (1987)<\/li>\n<li><i><a href=\"\/wiki\/Rocket_Gibraltar\" title=\"Rocket Gibraltar\">Rocket Gibraltar<\/a><\/i> (1988)<\/li>\n<li><i><a href=\"\/wiki\/Cocoon:_The_Return\" title=\"Cocoon: The Return\">Cocoon: The Return<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1990s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-al
 ign:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Lassie_(1994_film)\" title=\"Lassie (1994 film)\">Lassie<\/a><\/i> (1994)<\/li>\n<li><i><a href=\"\/wiki\/The_Assistant_(1998_film)\" title=\"The Assistant (1998 film)\">The Assistant<\/a><\/i> (1998)<\/li>\n<li><i><a href=\"\/wiki\/Inherit_the_Wind_(1999_film)\" title=\"Inherit the Wind (1999 film)\">Inherit the Wind<\/a><\/i> (1999)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">2000s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Wild_Iris_(film)\" title=\"Wild Iris (film)\">Wild Iris<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>
 \n<\/table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Heywood_Gould\" title=\"Template:Heywood Gould\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Heywood_Gould\" title=\"Template talk:Heywood Gould\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Heywood_Gould&amp;action=edit\"><span title=\"Edit this template\" style=
 \";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\"><a href=\"\/wiki\/Heywood_Gould\" title=\"Heywood Gould\">Heywood Gould<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Films<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/One_Good_Cop\" title=\"One Good Cop\">One Good Cop<\/a><\/i> (1991)<\/li>\n<li><i><a href=\"\/wiki\/Trial_by_Jury_(film)\" title=\"Trial by Jury (film)\">Trial by Jury<\/a><\/i> (1994)<\/li>\n<li><i><a href=\"\/wiki\/Mistrial_(1996_film)\" title=\"Mistrial (1996 film)\">Mistrial<\/a><\/i> (1996)<\/li>\n<li><i><a href=\"\/wiki\/Double_Bang\" title=\"Double Bang\">Double Bang<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"h
 eight:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Screenplays<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Rolling_Thunder_(film)\" title=\"Rolling Thunder (film)\">Rolling Thunder<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Boys_from_Brazil_(film)\" title=\"The Boys from Brazil (film)\">The Boys from Brazil<\/a><\/i> (1978)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Streets_of_Gold_(film)\" title=\"Streets of Gold (film)\">Streets of Gold<\/a><\/i> (1986)<\/li>\n<li><i><a href=\"\/wiki\/Cocktail_(1988_film)\" title=\"Cocktail (1988 film)\">Cocktail<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n\n\n<!-- \nNewPP limit report\nParsed by mw1
 206\nCPU time usage: 0.536 seconds\nReal time usage: 0.615 seconds\nPreprocessor visited node count: 873\/1000000\nPreprocessor generated node count: 4510\/1500000\nPost\u2010expand include size: 28730\/2048000 bytes\nTemplate argument size: 1418\/2048000 bytes\nHighest expansion depth: 11\/40\nExpensive parser function count: 5\/500\nLua time usage: 0.068\/10.000 seconds\nLua memory usage: 1.57 MB\/50 MB\n-->\n\n<!-- Saved in parser cache with key enwiki:pcache:idhash:8009696-0!*!0!!en!4!* and timestamp 20140323010622\n -->\n","created_at":"Sun, 23 Mar 2014 01:06:21 +0000","id":"1e3b2275887aa480e0771b13a8f59744","link":"http:\/\/en.wikipedia.org\/wiki\/Fort_Apache%2C_The_Bronx","schema":{"version":3},"title":"Fort Apache, The Bronx","type":"wikipedia"},"language":{"tag":"en"},"links":{"code":[200,404,200,200,200,200,200,200,200],"created_at":["Sun, 23 Mar 2014 01:06:23 +0000","Sun, 23 Mar 2014 01:06:24 +0000","Sun, 23 Mar 2014 01:06:30 +0000","Sun, 23 Mar 2014 01:06:33 +0000","Sun,
  23 Mar 2014 00:20:48 +0000","Sun, 23 Mar 2014 01:06:35 +0000","Sun, 23 Mar 2014 01:06:36 +0000","Sun, 23 Mar 2014 01:06:37 +0000","Sun, 23 Mar 2014 01:06:38 +0000"],"hops":[[],["http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#","http:\/\/time.com\/time\/printout\/0,8816,954681,00.html","http:\/\/content.time.com\/time\/printout\/0%2C8816%2C954681%2C00.html"],["http:\/\/rogerebert.suntimes.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023","http:\/\/www.rogerebert.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023"],["http:\/\/www.variety.com\/index.asp?layout=print_review&reviewid=VE1117791034&categoryid=31","http:\/\/www.variety.com\/article\/VE1117791034?layout=print_review&reviewid=VE1117791034&categoryid=31","http:\/\/variety.com\/article\/VE1117791034?layout=print_review&reviewid=VE1117791034&categoryid=31"],["http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&sql=1:18269~T1"],[],[],[],[]],"meta":{"charset":["CP1252","","UTF-8","UT
 F-8","UTF-8","UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text\/html","","text\/html","text\/html","text\/html","text\/html","text\/html","text\/html","text\/html"],"description":["Domestic Release Date: January 1, 1981Domestic Box Office: $29,200,000Worldwide Box Office: $65,200,000","","","","The best, most complete site to help you find movie trailers, synopsis, movie reviews as well as complete celebrity & movie cast details\u2026","From world affairs to entertainment, business to fashion, crime to society, Vanity Fair is a cultural catalyst that drives the popular dialogue globally.","Directed by Daniel Petrie. With Paul Newman, Edward Asner, Ken Wahl, Danny Aiello. From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tuff cynic, but in truth he's
  a moralist with a sense for justice.","Find trailers, reviews, synopsis, showtimes and cast information for Fort Apache, the Bronx on AllMovie - 1981 - Paul Newman stars as an essentially decent cop &hellip;","Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as the Bronx,..."],"keywords":[["movies","box office","The Numbers","Numbers","daily box office","weekly box office","movie stars","dvd sales","Blu-ray sales","release schedule"],[],[],[],["allmovie.com","movies","movie","movie recommendations","movie reviews","actors","actors bios","actor biography","now available","movie new releases","dvd","movie trailers","movie search"],[],["Reviews","Showtimes","DVDs","Photos","Message Boards","User Ratings","Synopsis","Trailers","Credits"],["Fort Apache","the Bronx","Daniel Petrie","Trailers","Reviews","Summary","Synopsis","Cast","Showtimes","Rent","Buy","Photos","Movie Stills","Awards"],[]],"lang":["u
 nknown","","en","en","unknown","en","en-gb","unknown","en-us"],"opengraph":[{},{},{},{"site_name":"Variety","type":"article","description":"Birth","url":"http:\/\/variety.com\/2000\/scene\/people-news\/robert-emerson-langlois-ulrich-1117791034\/","title":"Robert Emerson Langlois-Ulrich","image":"http:\/\/0.gravatar.com\/blavatar\/8181b523e3c891bc770494a0bbbe8244?s=200","facebook_author":"http:\/\/variety.com\/author\/varietystaff\/"},{"description":"The best, most complete site to help you find movie trailers, synopsis, movie reviews as well as complete celebrity & movie cast details\u2026","url":"http:\/\/www.allmovie.com\/","image":"http:\/\/www.allmovie.com\/images\/allmovie-logo-share.png","title":"AllMovie - Movies and Films Database - Movie Search, Guide, Recommendations, and Reviews"},{"site_name":"Vanity Fair","description":"From world affairs to entertainment, business to fashion, crime to society, Vanity Fair is a cultural catalyst that drives the popular dialogue globally
 .","type":"article","url":"http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print","image":"http:\/\/subscribe.condenet.com\/images_covers\/cover_vanityfair_80.jpg","title":"Frank DiGiacomo: a dishy oral history of America"},{"site_name":"IMDb","type":"video.movie","description":"Directed by Daniel Petrie. With Paul Newman, Edward Asner, Ken Wahl, Danny Aiello. From the sight of a police officer this movie depicts the life in New York","url":"http:\/\/www.imdb.com\/title\/tt0082402\/","image":"http:\/\/ia.media-imdb.com\/images\/M\/MV5BMTQ0NDA1MzA0NF5BMl5BanBnXkFtZTcwMzQ5NDQyMQ@@._V1_SY475_SX262_.jpg","title":"Fort Apache the Bronx (1981)"},{"site_name":"AllMovie","type":"movie","image":"http:\/\/cps-static.rovicorp.com\/1\/avg\/cov75\/drv300\/v328\/v32888fjfsd.jpg?partner=allrovi.com"},{"type":"video.movie","description":"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as 
 the Bronx, but known to its denizens as","url":"http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/","title":"Fort Apache, the Bronx","image":"http:\/\/content6.flixster.com\/movie\/10\/95\/34\/10953460_800.jpg"}],"twitter":[{},{},{},{"card":"summary","creator":"@Variety","site":"@variety","image":"http:\/\/0.gravatar.com\/blavatar\/8181b523e3c891bc770494a0bbbe8244?s=240"},{},{},{},{},{"description":"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as the Bronx, but known to its denizens as","card":"product","site":"@rottentomatoes","title":"Fort Apache, the Bronx"}]},"normalized_url":["http:\/\/the-numbers.com\/movies\/1981\/0FABR.php",null,"http:\/\/rogerebert.com\/reviews\/fort-apache-the-bronx-1981","http:\/\/variety.com\/2000\/scene\/people-news\/robert-emerson-langlois-ulrich-1117791034","http:\/\/allmovie.com","http:\/\/vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.prin
 t","http:\/\/imdb.com\/title\/tt0082402","http:\/\/allmovie.com\/movie\/v18269","http:\/\/rottentomatoes.com\/m\/fort_apache_the_bronx"],"retweet_count":[0,0,0,0,0,0,0,0,0],"title":["Fort Apache, The Bronx - Box Office Data, DVD Sales, Movie News, Cast Information - The Numbers","null","Fort Apache, The Bronx Movie Review (1981) | Roger Ebert","Robert Emerson Langlois-Ulrich | Variety","AllMovie - Movies and Films Database - Movie Search, Guide, Recommendations, and Reviews","The Gossip Behind the Gossip | Vanity Fair","Fort Apache the Bronx (1981) - IMDb","Fort Apache, the Bronx (1981) - Trailers, Reviews, Synopsis, Showtimes and Cast - AllMovie","Fort Apache, the Bronx - Rotten Tomatoes"],"url":["http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php","http:\/\/content.time.com\/time\/printout\/0%2C8816%2C954681%2C00.html","http:\/\/www.rogerebert.com\/reviews\/fort-apache-the-bronx-1981","http:\/\/variety.com\/2000\/scene\/people-news\/robert-emerson-langlois-ulrich-1117791034\/",
 "http:\/\/www.allmovie.com","http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print","http:\/\/www.imdb.com\/title\/tt0082402\/","http:\/\/www.allmovie.com\/movie\/v18269","http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/"]},"wikipedia":{"author":{"link":"http:\/\/en.wikipedia.org\/wiki\/Special:Contributions\/98.250.65.246","username":"98.250.65.246"},"body":"<table class=\"infobox vevent\" cellspacing=\"3\" style=\"border-spacing:3px;width:22em;font-size: 90%;;\">\n<tr>\n<th colspan=\"2\" class=\"summary\" style=\"text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;\">Fort Apache: The Bronx<\/th>\n<\/tr>\n<tr>\n<td colspan=\"2\" style=\"text-align:center;\"><a href=\"\/wiki\/File:Fort_apache_the_bronx.jpg\" class=\"image\"><img alt=\"Fort apache the bronx.jpg\" src=\"\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/9\/9d\/Fort_apache_the_bronx.jpg\/220px-Fort_apache_the_bronx.jpg\" width=\"220\" height=\"337\" clas
 s=\"thumbborder\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 1.5x, \/\/upload.wikimedia.org\/wikipedia\/en\/9\/9d\/Fort_apache_the_bronx.jpg 2x\" \/><\/a><br \/>\n<div style=\"font-size: 95%; line-height: 1.5em;\">Movie poster for <i>Fort Apache, The Bronx<\/i><\/div>\n<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Directed by<\/th>\n<td><a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Produced by<\/th>\n<td>Thomas Fiorello<br \/>\n<a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a><br \/>\nCompanies:<br \/>\nProducers Circle<br \/>\nTime-Life Television<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Written by<\/th>\n<td>Heywood Gould<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;w
 hite-space: nowrap;;\">Starring<\/th>\n<td><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a><br \/>\n<a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a><br \/>\n<a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a><br \/>\n<a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a><br \/>\n<a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a><br \/>\n<a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a><br \/>\n<a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a><br \/>\n<a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a><br \/>\n<a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Music by<\/th>\n<td><a href=\"\/wiki\/Jonathan_Tunick\" title=\"Jonathan Tunick\">Jonathan Tunick<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=
 \"row\" style=\"text-align:left;white-space: nowrap;;\">Cinematography<\/th>\n<td><a href=\"\/wiki\/John_Alcott\" title=\"John Alcott\">John Alcott<\/a><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Editing by<\/th>\n<td>Rita Roland<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Distributed by<\/th>\n<td><a href=\"\/wiki\/20th_Century_Fox\" title=\"20th Century Fox\">20th Century Fox<\/a><br \/>\n<a href=\"\/wiki\/HBO\" title=\"HBO\">HBO<\/a> (DVD)<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Release dates<\/th>\n<td>February 6, 1981<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Running time<\/th>\n<td>125 minutes<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Language<\/th>\n<td><a href=\"\/wiki\/English_language\" title=\"English language\">English<\/a><\/td>\n<\/tr>\n<tr>\n<th sc
 ope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Budget<\/th>\n<td>$4,000,000<\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" style=\"text-align:left;white-space: nowrap;;\">Box office<\/th>\n<td>Total US Gross: <a href=\"\/wiki\/USD\" title=\"USD\" class=\"mw-redirect\">$<\/a>29,200,000 (US)<br \/>\nInternational Gross: $36,000,000<br \/>\nWorldwide Gross: $65,200,000<sup id=\"cite_ref-1\" class=\"reference\"><a href=\"#cite_note-1\"><span>[<\/span>1<span>]<\/span><\/a><\/sup><\/td>\n<\/tr>\n<\/table>\n<div class=\"thumb tright\">\n<div class=\"thumbinner\" style=\"width:222px;\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"image\"><img alt=\"\" src=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/220px-Fort_Apache_Police_Precinct%2C_2007.JPG\" width=\"220\" height=\"165\" class=\"thumbimage\" srcset=\"\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\
 /330px-Fort_Apache_Police_Precinct%2C_2007.JPG 1.5x, \/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/eb\/Fort_Apache_Police_Precinct%2C_2007.JPG\/440px-Fort_Apache_Police_Precinct%2C_2007.JPG 2x\" \/><\/a>\n<div class=\"thumbcaption\">\n<div class=\"magnify\"><a href=\"\/wiki\/File:Fort_Apache_Police_Precinct,_2007.JPG\" class=\"internal\" title=\"Enlarge\"><img src=\"\/\/bits.wikimedia.org\/static-1.23wmf18\/skins\/common\/images\/magnify-clip.png\" width=\"15\" height=\"11\" alt=\"\" \/><\/a><\/div>\nThe real \"Fort Apache\" in the summer of 2007\u20141086 Simpson Street in the Bronx, formerly the New York Police Department's 41st Precinct Station. <span class=\"plainlinks nourlexpansion\"><a class=\"external text\" href=\"\/\/tools.wmflabs.org\/geohack\/geohack.php?pagename=Fort_Apache%2C_The_Bronx&amp;params=40_49_32.07_N_73_53_33.72_W_scale:2000\"><span class=\"geo-default\"><span class=\"geo-dms\" title=\"Maps, aerial photos, and other data for this location\"><span cl
 ass=\"latitude\">40\u00B049\u203232.07\u2033N<\/span> <span class=\"longitude\">73\u00B053\u203233.72\u2033W<\/span><\/span><\/span><span class=\"geo-multi-punct\">\uFEFF \/ \uFEFF<\/span><span class=\"geo-nondefault\"><span class=\"geo-dec\" title=\"Maps, aerial photos, and other data for this location\">40.8255750\u00B0N 73.8927000\u00B0W<\/span><span style=\"display:none\">\uFEFF \/ <span class=\"geo\">40.8255750; -73.8927000<\/span><\/span><\/span><\/a><\/span><\/div>\n<\/div>\n<\/div>\n<p><i><b>Fort Apache: The Bronx<\/b><\/i> is a 1981 <a href=\"\/wiki\/Crime_film\" title=\"Crime film\">crime<\/a> <a href=\"\/wiki\/Drama_film\" title=\"Drama film\">drama film<\/a> made by Producers Circle, Time-Life Television Productions Inc., and distributed by <a href=\"\/wiki\/Twentieth_Century-Fox_Film_Corporation\" title=\"Twentieth Century-Fox Film Corporation\" class=\"mw-redirect\">Twentieth Century-Fox Film Corporation<\/a>. It was directed by <a href=\"\/wiki\/Daniel_Petrie\" title=
 \"Daniel Petrie\">Daniel Petrie<\/a> and produced by <a href=\"\/wiki\/Martin_Richards_(producer)\" title=\"Martin Richards (producer)\">Martin Richards<\/a>, Thomas Fiorello, with <a href=\"\/wiki\/David_Susskind\" title=\"David Susskind\">David Susskind<\/a> as executive producer. It stars <a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a>, <a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a>, <a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a>, <a href=\"\/wiki\/Edward_Asner\" title=\"Edward Asner\" class=\"mw-redirect\">Edward Asner<\/a>, <a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a>, <a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a>, <a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a>, <a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> and <a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F
 1ero<\/a>.<\/p>\n<p>Filmed on locations in the Bronx, New York City, New York, it is widely believed that the film was based on the book <i>Fort Apache<\/i> by Tom Walker, but the studio, Time-Life Television Films (owner of the script), disputes this. The result was lengthy court litigation.<\/p>\n<p><\/p>\n<div id=\"toc\" class=\"toc\">\n<div id=\"toctitle\">\n<h2>Contents<\/h2>\n<\/div>\n<ul>\n<li class=\"toclevel-1 tocsection-1\"><a href=\"#Plot\"><span class=\"tocnumber\">1<\/span> <span class=\"toctext\">Plot<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-2\"><a href=\"#Cast\"><span class=\"tocnumber\">2<\/span> <span class=\"toctext\">Cast<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-3\"><a href=\"#Reception\"><span class=\"tocnumber\">3<\/span> <span class=\"toctext\">Reception<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-4\"><a href=\"#Legal_issues\"><span class=\"tocnumber\">4<\/span> <span class=\"toctext\">Legal issues<\/span><\/a><\/li>\n<li cla
 ss=\"toclevel-1 tocsection-5\"><a href=\"#See_also\"><span class=\"tocnumber\">5<\/span> <span class=\"toctext\">See also<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-6\"><a href=\"#References\"><span class=\"tocnumber\">6<\/span> <span class=\"toctext\">References<\/span><\/a><\/li>\n<li class=\"toclevel-1 tocsection-7\"><a href=\"#External_links\"><span class=\"tocnumber\">7<\/span> <span class=\"toctext\">External links<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<p><\/p>\n<h2><span class=\"mw-headline\" id=\"Plot\">Plot<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=1\" title=\"Edit section: Plot\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>Police officers face many challenges in the decayed <a href=\"\/wiki\/South_Bronx\" title=\"South Bronx\">South Bronx<\/a> region of <a href=\"\/wiki\/New_York_City\" title=\"New York City
 \">New York City<\/a>. Among them are <a href=\"\/wiki\/NYPD\" title=\"NYPD\" class=\"mw-redirect\">NYPD<\/a> officers Murphy (Newman) and Corelli (Wahl), who work out of the 41st precinct, nicknamed \"Fort Apache\" because to those who work there, it feels like an army outpost in foreign territory (an <a href=\"\/wiki\/Allusion\" title=\"Allusion\">allusion<\/a> to <a href=\"\/wiki\/Fort_Apache\" title=\"Fort Apache\">Fort Apache<\/a> out of the <a href=\"\/wiki\/Old_West\" title=\"Old West\" class=\"mw-redirect\">Old West<\/a>).<\/p>\n<p>The precinct itself is one of the worst and most dilapidated in the entire department, approaching demolition and staffed mostly by officers who are unwanted by and have been transferred out of other precincts. Additionally, the precinct is of little use to the large <a href=\"\/wiki\/Puerto_Rican_people\" title=\"Puerto Rican people\">Puerto Rican<\/a> community, as only 4% of the officers are <a href=\"\/wiki\/Hispanic\" title=\"Hispanic\">Hispa
 nic<\/a> in the largest non-English speaking section of the Bronx, according to retiring precinct captain Dugan.<\/p>\n<p>Corelli and Murphy attempt to maintain law and order but have conflicts with corrupt fellow officers, as well as with a newly appointed police captain, rioting due to police brutality, and issues related to the deaths of two rookie cops at the film's beginning.<\/p>\n<p>Illustrating the hopeless futility of the work done at the precinct, the killer is later found as an anonymous body, dumped in the roadside trash. With nothing to link her to the deaths of the rookie officers, the police remain ignorant of the fact that she was the killer and will never be caught.<\/p>\n<h2><span class=\"mw-headline\" id=\"Cast\">Cast<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=2\" title=\"Edit section: Cast\">edit<\/a><span class=\"mw-editsection-bracket\">]
 <\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/Paul_Newman\" title=\"Paul Newman\">Paul Newman<\/a> as Murphy<\/li>\n<li><a href=\"\/wiki\/Ed_Asner\" title=\"Ed Asner\">Ed Asner<\/a> as Connolly<\/li>\n<li><a href=\"\/wiki\/Ken_Wahl\" title=\"Ken Wahl\">Ken Wahl<\/a> as Corelli<\/li>\n<li><a href=\"\/wiki\/Danny_Aiello\" title=\"Danny Aiello\">Danny Aiello<\/a> as Morgan<\/li>\n<li><a href=\"\/wiki\/Rachel_Ticotin\" title=\"Rachel Ticotin\">Rachel Ticotin<\/a> as Isabella<\/li>\n<li><a href=\"\/wiki\/Pam_Grier\" title=\"Pam Grier\">Pam Grier<\/a> as Charlotte<\/li>\n<li><a href=\"\/wiki\/Kathleen_Beller\" title=\"Kathleen Beller\">Kathleen Beller<\/a> as Theresa<\/li>\n<li><a href=\"\/wiki\/Tito_Goya\" title=\"Tito Goya\">Tito Goya<\/a> as Jumper \/ Detective<\/li>\n<li><a href=\"\/wiki\/Miguel_Pi%C3%B1ero\" title=\"Miguel Pi\u00F1ero\">Miguel Pi\u00F1ero<\/a> as Hernando<\/li>\n<li>Jaime Tirelli as Jose<\/li>\n<li>Lance Guecia as Track star<\/li>\n<li>Rony Clanton as agent for
  hookers<\/li>\n<li><a href=\"\/wiki\/Clifford_David\" title=\"Clifford David\">Clifford David<\/a> as Dacey<\/li>\n<li><a href=\"\/wiki\/Sully_Boyar\" title=\"Sully Boyar\">Sully Boyar<\/a> as Dugan<\/li>\n<li><a href=\"\/wiki\/Michael_Higgins_(actor)\" title=\"Michael Higgins (actor)\">Michael Higgins<\/a> as Heffernan<\/li>\n<li>Rik Colitti as Pantuzzi<\/li>\n<li>Irving Metzman as Applebaum<\/li>\n<li>Frank Adu as Clendennon<\/li>\n<li>John Aquino as Finley<\/li>\n<li>Norman Matlock as Lincoln<\/li>\n<li>John Ring as Donohue<\/li>\n<li>Tony DiBenedetto as Moran<\/li>\n<li>Terence Brady as Cop at bar<\/li>\n<li>Randy Jurgensen as Cop at bar<\/li>\n<li>Marvin Cohen as Cop at bar<\/li>\n<li><a href=\"\/wiki\/Paul_Gleason\" title=\"Paul Gleason\">Paul Gleason<\/a> as Detective<\/li>\n<li>Reynaldo Medina as Detective<\/li>\n<li>Daryl Edwards as Black rookie<\/li>\n<li><a href=\"\/wiki\/Donald_Petrie\" title=\"Donald Petrie\">Donald Petrie<\/a> as White rookie<\/li>\n<li>Thomas A. Carl
 in as Man with flat tire<\/li>\n<li>Frederick Allen as Corelli's brother<\/li>\n<li><a href=\"\/wiki\/Dominic_Chianese\" title=\"Dominic Chianese\">Dominic Chianese<\/a> as Corelli's father<\/li>\n<li>Mike Cicchetti as Wild-eyed man<\/li>\n<li>Apu Guecia as Stabbed boy<\/li>\n<li>Kim Delgado as Suspect #1<\/li>\n<li>Reyno as Suspect #2<\/li>\n<li>Dadi Pinero as Suspect #3<\/li>\n<li><a href=\"\/wiki\/Cleavant_Derricks_(actor)\" title=\"Cleavant Derricks (actor)\">Cleavant Derricks<\/a> as Suspect #4<\/li>\n<li>Dolores Hern\u00E1ndez as Pregnant girl<\/li>\n<li>Santos Morales as Girl's father<\/li>\n<li>Ruth Last as Girl's mother<\/li>\n<li>Jos\u00E9 Rabelo as Girl's uncle<\/li>\n<li><a href=\"\/wiki\/Gilbert_Lewis_(actor)\" title=\"Gilbert Lewis (actor)\">Gilbert Lewis<\/a> as Mob leader<\/li>\n<li><a href=\"\/wiki\/Lisa_Loomer\" title=\"Lisa Loomer\">Lisa Loomer<\/a> as Hooker #1<\/li>\n<li>Sandi Franklin as Hooker #2<\/li>\n<li>Eric Mourino as Boy on roof<\/li>\n<li>Jessica Costel
 lo as Girl on roof<\/li>\n<li>Gloria Irizarry as Drug dealer<\/li>\n<li>Manuel E. Santiago as Intern<\/li>\n<li>Joaquin La Habana as Transvestite<\/li>\n<li>Fred Strothers as Hospital buyer<\/li>\n<li>Sylvia Kuumba Williams as Bartender<\/li>\n<li>Patricia Dratel as Hostage<\/li>\n<li>Thomas Fiorello as Fence<\/li>\n<li>M.J. Quinn as Cop<\/li>\n<li>Bernie Rachelle as Wedgie Patrol<\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Reception\">Reception<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=3\" title=\"Edit section: Reception\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<p>The film was successful, grossing over $65 million worldwide at its time of release in 1981. Paul Newman was largely praised for his performance, but the movie itself received more negative reviews.<\/p>\n<ul>\n<li><a href=\"\/wiki\/Richard_Schickel\" title
 =\"Richard Schickel\">Richard Schickel<\/a>, in <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>, called it: \"more like a made-for-TV movie\". He also added: \"The film is not quite up to its star\".; \"...somewhere between <a href=\"\/wiki\/Barney_Miller\" title=\"Barney Miller\">Barney Miller<\/a> and the works of <a href=\"\/wiki\/Joseph_Wambaugh\" title=\"Joseph Wambaugh\">Joseph Wambaugh<\/a>\".; and: \"But mainly it is Newman, now 56, who gives Fort Apache its modest distinction\".<sup id=\"cite_ref-2\" class=\"reference\"><a href=\"#cite_note-2\"><span>[<\/span>2<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Roger_Ebert\" title=\"Roger Ebert\">Roger Ebert<\/a>, <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>, said: \"...the most complete collection of cop-movie clich\u00E9s since John Wayne played a Chicago cop in <i>McQ<\/i>\". (Ebert got this incorrect, in <i><a 
 href=\"\/wiki\/McQ\" title=\"McQ\">McQ<\/a><\/i> Wayne played a Seattle policeman, he played a Chicago policeman in <a href=\"\/wiki\/Brannigan_(film)\" title=\"Brannigan (film)\"><i>Brannigan<\/i><\/a>.) \"There are too many scenes that are necessary to the plot but not to the movie, scenes where the life of the movie stops so story details can be filled in\". \"The movie has several story threads that lead nowhere\". But, says about Newman, \"He's good in his role,...\" But, also calls this more of a TV show.<sup id=\"cite_ref-3\" class=\"reference\"><a href=\"#cite_note-3\"><span>[<\/span>3<span>]<\/span><\/a><\/sup><\/li>\n<li><a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a> labeled the film: \"... a very patchy picture, strong on dialog and acting and exceedingly weak on story\", and criticizes it for its lack of depth.<sup id=\"cite_ref-Variety-Review-FATB_4-0\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/s
 pan>4<span>]<\/span><\/a><\/sup><\/li>\n<li>Nick Sambides, Jr. at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a> calls it \"...flinty but otherwise forgettable character study\".<sup id=\"cite_ref-5\" class=\"reference\"><a href=\"#cite_note-5\"><span>[<\/span>5<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li>The <i><a href=\"\/wiki\/New_York_Post\" title=\"New York Post\">New York Post<\/a><\/i> published a photo of Newman on the set with a caption that he stated was inaccurate<sup class=\"noprint Inline-Template\" style=\"white-space:nowrap;\">[<i><a href=\"\/wiki\/Wikipedia:Please_clarify\" title=\"Wikipedia:Please clarify\"><span title=\"The text near this tag may need clarification or removal of jargon. (December 2011)\">clarification needed<\/span><\/a><\/i>]<\/sup>, calling the paper \"a garbage can\". Because of the dispute the <i>Post<\/i> banned him from its pages, even removing his name from movies in the TV listings.<sup id=\"cite_ref-digiacomo200412_6
 -0\" class=\"reference\"><a href=\"#cite_note-digiacomo200412-6\"><span>[<\/span>6<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Legal_issues\">Legal issues<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=4\" title=\"Edit section: Legal issues\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li>Local community groups threatened to file suit against the producers because of the way it depicted their neighborhood in the Bronx and for the depiction of ethnic minorities (Blacks and Puerto Ricans). Because of this pressure some changes were made to the script and a note was added to the title card at the beginning of the film.<sup id=\"cite_ref-Variety-Review-FATB_4-1\" class=\"reference\"><a href=\"#cite_note-Variety-Review-FATB-4\"><span>[<\/span>4<span>]<\/span><\/a><\/sup><sup id=\"cite_ref-7\" class=
 \"reference\"><a href=\"#cite_note-7\"><span>[<\/span>7<span>]<\/span><\/a><\/sup><\/li>\n<\/ul>\n<ul>\n<li><i>Walker v. Time Life Films, Inc.<\/i>, 784 F.2d 44 (<a href=\"\/wiki\/United_States_Court_of_Appeals_for_the_Second_Circuit\" title=\"United States Court of Appeals for the Second Circuit\">2d Cir<\/a>. 1986)<\/li>\n<\/ul>\n<dl>\n<dd>\n<dl>\n<dd>After the release of the film, an author, Tom Walker, filed a lawsuit against one of the production companies, Time-Life Television Films (legal owner of the script), claiming that the producers infringed on his book <i>Fort Apache<\/i> (New York: Crowell, 1976. <a href=\"\/wiki\/Special:BookSources\/0690010478\" class=\"internal mw-magiclink-isbn\">ISBN 0-690-01047-8<\/a>). Among other things, Walker, the plaintiff, argued that: \"both the book and the film begin with the murder of a black and a white policeman with a handgun at close range; both depict cockfights, drunks, stripped cars, prostitutes and rats; both feature as central
  characters third- or fourth-generation Irish policemen who live in Queens and frequently drink; both show disgruntled, demoralized police officers and unsuccessful foot chases of fleeing criminals\". But the <a href=\"\/wiki\/United_States_Court_of_Appeals_for_the_Second_Circuit\" title=\"United States Court of Appeals for the Second Circuit\">United States Court of Appeals for the Second Circuit<\/a> ruled that these are stereo-typical ideas, so called <i>\"<a href=\"\/wiki\/Scenes_%C3%A0_faire\" title=\"Scenes \u00E0 faire\" class=\"mw-redirect\">sc\u00E8nes \u00E0 faire<\/a>\"<\/i> (French for \"scenes that must be done\"), and that the <a href=\"\/wiki\/United_States_copyright_law\" title=\"United States copyright law\" class=\"mw-redirect\">United States copyright law<\/a> does not protect concepts or ideas. The court ruling stated: \"the book <i>Fort Apache<\/i> and the film <i>Fort Apache: The Bronx<\/i> were not substantially similar beyond [the] level of generalized or oth
 erwise nonprotectible ideas, and thus [the] latter did not infringe copyright of [the] former\".<sup id=\"cite_ref-MargolickD-NYT_8-0\" class=\"reference\"><a href=\"#cite_note-MargolickD-NYT-8\"><span>[<\/span>8<span>]<\/span><\/a><\/sup><sup id=\"cite_ref-9\" class=\"reference\"><a href=\"#cite_note-9\"><span>[<\/span>9<span>]<\/span><\/a><\/sup><\/dd>\n<\/dl>\n<\/dd>\n<\/dl>\n<p><br \/><\/p>\n<h2><span class=\"mw-headline\" id=\"See_also\">See also<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=5\" title=\"Edit section: See also\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a href=\"\/wiki\/List_of_American_films_of_1981\" title=\"List of American films of 1981\">List of American films of 1981<\/a><\/li>\n<li><a href=\"\/wiki\/Fort_Apache_(hostile_place)\" title=\"Fort Apache (hostile place)\">Fort Apache<\/a><\/li>\n<li>
 <a href=\"\/wiki\/Fort_Apache_(film)\" title=\"Fort Apache (film)\"><i>Fort Apache<\/i> (film)<\/a><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"References\">References<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=6\" title=\"Edit section: References\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<div class=\"reflist\" style=\"list-style-type: decimal;\">\n<ol class=\"references\">\n<li id=\"cite_note-1\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-1\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php\"><i>Fort Apache, The Bronx<\/i><\/a>. \u2013 The Numbers<\/span><\/li>\n<li id=\"cite_note-2\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-2\">^<\/a><\/b><\/span> <span class=\"reference-text\"><a rel=
 \"nofollow\" class=\"external text\" href=\"http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#\">\"Conscience in a Rough Precinct\"<\/a>. \u2013 <i><a href=\"\/wiki\/Time_(magazine)\" title=\"Time (magazine)\">TIME<\/a><\/i>. \u2013 February 16, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-3\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-3\">^<\/a><\/b><\/span> <span class=\"reference-text\">Ebert, Roger. \u2013 <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/rogerebert.suntimes.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <i><a href=\"\/wiki\/Chicago_Sun_Times\" title=\"Chicago Sun Times\" class=\"mw-redirect\">Chicago Sun Times<\/a><\/i>. \u2013 January 1, 1981 \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-Variety-Review-FATB-4\"><span class=\"mw-cite-backlink\">^ <a href=\"#cite_ref-Variety-Review-FATB_4-0\"><sup><i><b>a<\/b><\/i><\/sup><\/
 a> <a href=\"#cite_ref-Variety-Review-FATB_4-1\"><sup><i><b>b<\/b><\/i><\/sup><\/a><\/span> <span class=\"reference-text\">Film: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.variety.com\/index.asp?layout=print_review&amp;reviewid=VE1117791034&amp;categoryid=31\">\"Fort Apache, The Bronx\"<\/a>. \u2013 <a href=\"\/wiki\/Variety_(magazine)\" title=\"Variety (magazine)\"><i>Variety<\/i><\/a>. \u2013 January 1, 1981. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-5\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-5\">^<\/a><\/b><\/span> <span class=\"reference-text\">Sambides, Nick, Jr. \u2013 Review: <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&amp;sql=1:18269~T1\"><i>Fort Apache, the Bronx\"<\/i><\/a>. \u2013 <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">Allmovie<\/a>. \u2013 Retrieved: 2008-06-10<\/span><\/li>\n<li id=\"cite_note-digiacomo200412-6\"><span class=\"mw-cite-backlink\"><b><a 
 href=\"#cite_ref-digiacomo200412_6-0\">^<\/a><\/b><\/span> <span class=\"reference-text\"><span class=\"citation news\">DiGiaomo, Frank (December 2004). <a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print\">\"The Gossip Behind the Gossip\"<\/a>. <i>Vanity Fair<\/i><span class=\"reference-accessdate\">. Retrieved September 13, 2011<\/span>.<\/span><span title=\"ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AFort+Apache%2C+The+Bronx&amp;rft.atitle=The+Gossip+Behind+the+Gossip&amp;rft.au=DiGiaomo%2C+Frank&amp;rft.aulast=DiGiaomo%2C+Frank&amp;rft.date=December+2004&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.vanityfair.com%2Fculture%2Ffeatures%2F2004%2F12%2Fpagesix200412.print&amp;rft.jtitle=Vanity+Fair&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal\" class=\"Z3988\"><span style=\"display:none;\">&#160;<\/span><\/span><\/span><\/li>\n<li id=\"cite_note-7\"><span class=\"mw-cite-bac
 klink\"><b><a href=\"#cite_ref-7\">^<\/a><\/b><\/span> <span class=\"reference-text\">Cultural Desk: \"'Apache' Film's Debut Protested\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i>. \u2013 February 7, 1981<\/span><\/li>\n<li id=\"cite_note-MargolickD-NYT-8\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-MargolickD-NYT_8-0\">^<\/a><\/b><\/span> <span class=\"reference-text\">Margolick, David. \u2013 Legal Notes: \"Writer Told 'Ft. Apache' isn't Just His\". \u2013 <i><a href=\"\/wiki\/New_York_Times\" title=\"New York Times\" class=\"mw-redirect\">New York Times<\/a><\/i>. \u2013 August 25, 1985<\/span><\/li>\n<li id=\"cite_note-9\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-9\">^<\/a><\/b><\/span> <span class=\"reference-text\">Beeber, Jessie, and Maura Wogan. \u2013 \"Is Sc\u00E8nes \u00E0 Faire Really 'Necessary'?\". \u2013 <i>Entertainment, Arts and Sports Law Journal<\/i>. \u2013 Spri
 ng 2004. \u2013 Vol. 15, No. 1<\/span><\/li>\n<\/ol>\n<\/div>\n<h2><span class=\"mw-headline\" id=\"External_links\">External links<\/span><span class=\"mw-editsection\"><span class=\"mw-editsection-bracket\">[<\/span><a href=\"\/w\/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=7\" title=\"Edit section: External links\">edit<\/a><span class=\"mw-editsection-bracket\">]<\/span><\/span><\/h2>\n<ul>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.imdb.com\/title\/tt0082402\/\"><i>Fort Apache, The Bronx<\/i><\/a> at the <a href=\"\/wiki\/Internet_Movie_Database\" title=\"Internet Movie Database\">Internet Movie Database<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.allmovie.com\/movie\/v18269\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Allmovie\" title=\"Allmovie\">allmovie<\/a><\/li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\
 /\"><i>Fort Apache, The Bronx<\/i><\/a> at <a href=\"\/wiki\/Rotten_Tomatoes\" title=\"Rotten Tomatoes\">Rotten Tomatoes<\/a><\/li>\n<\/ul>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Daniel_Petrie\" title=\"Template:Daniel Petrie\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Daniel_Petrie\" title=\"Template talk:Daniel Petrie\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" hr
 ef=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Daniel_Petrie&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\">Films directed by <a href=\"\/wiki\/Daniel_Petrie\" title=\"Daniel Petrie\">Daniel Petrie<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1960s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/The_Bramble_Bush\" title=\"The Bramble Bush\">The Bramble Bush<\/a><\/i> (1960)<\/li>\n<li><i><a href=\"\/wiki\/A_Raisin_in_the_Sun_(1961_film)\" title=\"A Raisin in the Sun (1961 film)\">A Raisin in the Sun<\/a><\/i> (1961)<\/li>\n<li><i><a href=\"\/wiki\/The_Main_Attraction_(film)\" title=\"The Mai
 n Attraction (film)\">The Main Attraction<\/a><\/i> (1962)<\/li>\n<li><i><a href=\"\/wiki\/Stolen_Hours\" title=\"Stolen Hours\">Stolen Hours<\/a><\/i> (1963)<\/li>\n<li><i><a href=\"\/wiki\/The_Idol_(film)\" title=\"The Idol (film)\">The Idol<\/a><\/i> (1966)<\/li>\n<li><i><a href=\"\/wiki\/The_Spy_with_a_Cold_Nose\" title=\"The Spy with a Cold Nose\">The Spy with a Cold Nose<\/a><\/i> (1966)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1970s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Moon_of_the_Wolf\" title=\"Moon of the Wolf\">Moon of the Wolf<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki\/The_Neptune_Factor\" title=\"The Neptune Factor\">The Neptune Factor<\/a><\/i> (1973)<\/li>\n<li><i><a href=\"\/wiki
 \/The_Gun_and_the_Pulpit\" title=\"The Gun and the Pulpit\">The Gun and the Pulpit<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Buster_and_Billie\" title=\"Buster and Billie\">Buster and Billie<\/a><\/i> (1974)<\/li>\n<li><i><a href=\"\/wiki\/Eleanor_and_Franklin\" title=\"Eleanor and Franklin\">Eleanor and Franklin<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Lifeguard_(film)\" title=\"Lifeguard (film)\">Lifeguard<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Sybil_(1976_film)\" title=\"Sybil (1976 film)\">Sybil<\/a><\/i> (1976)<\/li>\n<li><i><a href=\"\/wiki\/Eleanor_and_Franklin:_The_White_House_Years\" title=\"Eleanor and Franklin: The White House Years\">Eleanor and Franklin: The White House Years<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Betsy\" title=\"The Betsy\">The Betsy<\/a><\/i> (1978)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1980s<\/th>\n<td 
 class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Resurrection_(1980_film)\" title=\"Resurrection (1980 film)\">Resurrection<\/a><\/i> (1980)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Six_Pack_(film)\" title=\"Six Pack (film)\">Six Pack<\/a><\/i> (1982)<\/li>\n<li><i><a href=\"\/wiki\/The_Dollmaker\" title=\"The Dollmaker\">The Dollmaker<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/The_Bay_Boy\" title=\"The Bay Boy\">The Bay Boy<\/a><\/i> (1984)<\/li>\n<li><i><a href=\"\/wiki\/Square_Dance_(film)\" title=\"Square Dance (film)\">Square Dance<\/a><\/i> (1987)<\/li>\n<li><i><a href=\"\/wiki\/Rocket_Gibraltar\" title=\"Rocket Gibraltar\">Rocket Gibraltar<\/a><\/i> (1988)<\/li>\n<li><i><a href=\"\/wiki\/Cocoon:_The_Return\" title=\"Cocoon: The Return\">Coco
 on: The Return<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">1990s<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Lassie_(1994_film)\" title=\"Lassie (1994 film)\">Lassie<\/a><\/i> (1994)<\/li>\n<li><i><a href=\"\/wiki\/The_Assistant_(1998_film)\" title=\"The Assistant (1998 film)\">The Assistant<\/a><\/i> (1998)<\/li>\n<li><i><a href=\"\/wiki\/Inherit_the_Wind_(1999_film)\" title=\"Inherit the Wind (1999 film)\">Inherit the Wind<\/a><\/i> (1999)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">2000s<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;borde
 r-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Wild_Iris_(film)\" title=\"Wild Iris (film)\">Wild Iris<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;\">\n<tr>\n<th scope=\"col\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"plainlinks hlist navbar mini\">\n<ul>\n<li class=\"nv-view\"><a href=\"\/wiki\/Template:Heywood_Gould\" title=\"Template:Heywood Gould\"><span title=\"View this template\" style=\";;background:none transparent;border:none;;\">v<\/span><\/a><\/li>\n<li class=\"nv-talk\"><a href=\"\/wiki\/Template_talk:Heywood_Gould\" title=\"Template talk:Heywood Gould\"><span title=\"Discuss this template\" st
 yle=\";;background:none transparent;border:none;;\">t<\/span><\/a><\/li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"\/\/en.wikipedia.org\/w\/index.php?title=Template:Heywood_Gould&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;;\">e<\/span><\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"font-size:110%;\"><a href=\"\/wiki\/Heywood_Gould\" title=\"Heywood Gould\">Heywood Gould<\/a><\/div>\n<\/th>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Films<\/th>\n<td class=\"navbox-list navbox-odd hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/One_Good_Cop\" title=\"One Good Cop\">One Good Cop<\/a><\/i> (1991)<\/li>\n<li><i><a href=\"\/wiki\/Trial_by_Jury_(film)\" title=\"Trial by Jury (film)\">Trial by Jury<\/a><\/i> (1994)<\/li>\n<l
 i><i><a href=\"\/wiki\/Mistrial_(1996_film)\" title=\"Mistrial (1996 film)\">Mistrial<\/a><\/i> (1996)<\/li>\n<li><i><a href=\"\/wiki\/Double_Bang\" title=\"Double Bang\">Double Bang<\/a><\/i> (2001)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<tr style=\"height:2px;\">\n<td colspan=\"2\"><\/td>\n<\/tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\">Screenplays<\/th>\n<td class=\"navbox-list navbox-even hlist\" style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\">\n<div style=\"padding:0em 0.25em;\">\n<ul>\n<li><i><a href=\"\/wiki\/Rolling_Thunder_(film)\" title=\"Rolling Thunder (film)\">Rolling Thunder<\/a><\/i> (1977)<\/li>\n<li><i><a href=\"\/wiki\/The_Boys_from_Brazil_(film)\" title=\"The Boys from Brazil (film)\">The Boys from Brazil<\/a><\/i> (1978)<\/li>\n<li><i><strong class=\"selflink\">Fort Apache, The Bronx<\/strong><\/i> (1981)<\/li>\n<li><i><a href=\"\/wiki\/Streets_of_Gold_(film)\" title=\"Streets of Gold (film)\">Streets of Gol
 d<\/a><\/i> (1986)<\/li>\n<li><i><a href=\"\/wiki\/Cocktail_(1988_film)\" title=\"Cocktail (1988 film)\">Cocktail<\/a><\/i> (1988)<\/li>\n<\/ul>\n<\/div>\n<\/td>\n<\/tr>\n<\/table>\n<\/td>\n<\/tr>\n<\/table>\n\n\n<!-- \nNewPP limit report\nParsed by mw1206\nCPU time usage: 0.536 seconds\nReal time usage: 0.615 seconds\nPreprocessor visited node count: 873\/1000000\nPreprocessor generated node count: 4510\/1500000\nPost\u2010expand include size: 28730\/2048000 bytes\nTemplate argument size: 1418\/2048000 bytes\nHighest expansion depth: 11\/40\nExpensive parser function count: 5\/500\nLua time usage: 0.068\/10.000 seconds\nLua memory usage: 1.57 MB\/50 MB\n-->\n\n<!-- Saved in parser cache with key enwiki:pcache:idhash:8009696-0!*!0!!en!4!* and timestamp 20140323010622\n -->\n","categories":["Wikipedia_articles_needing_clarification_from_December_2011","1981_films","1980s_drama_films","Docudramas","American_films","English-language_films","Fictional_portrayals_of_the_New_York_City_Pol
 ice_Department","Films_set_in_the-Bronx","Films_directed_by_Daniel_Petrie","20th_Century_Fox_films"],"created_at":"Sun, 23 Mar 2014 01:06:21 +0000","diff":{"changes":{"added":["[[Category:Fictional portrayals of the New York City Police Department]]"],"removed":[]},"from":"591208870","htmldiff":"<tr>\n  <td colspan=\"2\" class=\"diff-lineno\">Line 130:<\/td>\n  <td colspan=\"2\" class=\"diff-lineno\">Line 130:<\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:American films]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:American films]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:English-language films]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:English-language films]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td colspan=\"2\" class=\"diff-empty\">&#160
 ;<\/td>\n  <td class=\"diff-marker\">+<\/td>\n  <td class=\"diff-addedline\"><div>[[Category:Fictional portrayals of the New York City Police Department]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films_set_in_the-Bronx]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films_set_in_the-Bronx]]<\/div><\/td>\n<\/tr>\n<tr>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films directed by Daniel Petrie]]<\/div><\/td>\n  <td class=\"diff-marker\">&#160;<\/td>\n  <td class=\"diff-context\"><div>[[Category:Films directed by Daniel Petrie]]<\/div><\/td>\n<\/tr>\n\n<!-- diff cache key enwiki:diff:version:1.11a:oldid:591208870:newid:600811633 -->\n","to":"600811633"},"externallinks":["http:\/\/www.the-numbers.com\/movies\/1981\/0FABR.php","http:\/\/www.time.com\/time\/printout\/0,8816,954681,00.html#","http:\/\/rogerebert.suntime
 s.com\/apps\/pbcs.dll\/article?AID=\/19810101\/REVIEWS\/101010327\/1023","http:\/\/www.variety.com\/index.asp?layout=print_review&reviewid=VE1117791034&categoryid=31","http:\/\/www.allmovie.com\/cg\/avg.dll?p=avg&sql=1:18269~T1","http:\/\/www.vanityfair.com\/culture\/features\/2004\/12\/pagesix200412.print","\/\/tools.wmflabs.org\/geohack\/geohack.php?pagename=Fort_Apache,_The_Bronx&params=40_49_32.07_N_73_53_33.72_W_scale:2000","http:\/\/www.imdb.com\/title\/tt0082402\/","http:\/\/www.allmovie.com\/movie\/v18269","http:\/\/www.rottentomatoes.com\/m\/fort_apache_the_bronx\/"],"id":"600811633","images":["Fort_apache_the_bronx.jpg","Fort_Apache_Police_Precinct,_2007.JPG"],"langlinks":[{"lang":"de","url":"http:\/\/de.wikipedia.org\/wiki\/The_Bronx","title":"The Bronx","langname":"German","autonym":"Deutsch"},{"lang":"es","url":"http:\/\/es.wikipedia.org\/wiki\/Fort_Apache,_The_Bronx","title":"Fort Apache, The Bronx","langname":"Spanish","autonym":"espa\u00F1ol"},{"lang":"eu","url":"htt
 p:\/\/eu.wikipedia.org\/wiki\/Fort_Apache,_The_Bronx","title":"Fort Apache, The Bronx","langname":"Basque","autonym":"euskara"},{"lang":"fr","url":"http:\/\/fr.wikipedia.org\/wiki\/Le_Policeman","title":"Le Policeman","langname":"French","autonym":"fran\u00E7ais"},{"lang":"it","url":"http:\/\/it.wikipedia.org\/wiki\/Bronx_41%C2%BA_distretto_di_polizia","title":"Bronx 41\u00BA distretto di polizia","langname":"Italian","autonym":"italiano"},{"lang":"lt","url":"http:\/\/lt.wikipedia.org\/wiki\/Apa%C4%8Di%C5%B3_fortas_Bronkse","title":"Apa\u010Di\u0173 fortas Bronkse","langname":"Lithuanian","autonym":"lietuvi\u0173"},{"lang":"no","url":"http:\/\/no.wikipedia.org\/wiki\/Politistasjonen_Fort_Apache","title":"Politistasjonen Fort Apache","langname":"Norwegian (bokm\u00E5l)","autonym":"norsk bokm\u00E5l"},{"lang":"pl","url":"http:\/\/pl.wikipedia.org\/wiki\/Fort_Apache,_Bronx","title":"Fort Apache, Bronx","langname":"Polish","autonym":"polski"},{"lang":"uk","url":"http:\/\/uk.wikipedia.or
 g\/wiki\/%D0%A4%D0%BE%D1%80%D1%82_%D0%90%D0%BF%D0%B0%D1%87,_%D0%91%D1%80%D0%BE%D0%BD%D0%BA

<TRUNCATED>

[43/45] git commit: Fixed datasift test data files format

Posted by mf...@apache.org.
Fixed datasift test data files format


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/9fdcd8a5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/9fdcd8a5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/9fdcd8a5

Branch: refs/heads/master
Commit: 9fdcd8a5c1ac2149268c2b3397bffae10d887731
Parents: 4d93cbe
Author: rebanks <re...@w2odigital.com>
Authored: Fri Jun 20 15:59:54 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Fri Jun 20 15:59:54 2014 -0500

----------------------------------------------------------------------
 .../DatasiftTypeConverterProcessor.java         |    1 +
 .../DatasiftTypeConverterProcessorTest.java     |    2 +-
 .../DatasiftActivitySerializerTest.java         |    9 +-
 .../src/test/resources/amazon_datasift_json.txt |   20 +-
 .../src/test/resources/blog_datasift_json.txt   | 1438 +--
 .../src/test/resources/board_datasift_json.txt  | 8320 +++++++++---------
 .../test/resources/facebook_datasift_json.txt   | 3686 ++++----
 .../src/test/resources/part-r-00000.json        | 1724 ++--
 .../resources/rand_sample_datasift_json.txt     | 3094 +++----
 .../resources/random_sample_datasift_json.txt   | 3094 +++----
 .../src/test/resources/reddit_datasift_json.txt |   66 +-
 .../test/resources/twitter_datasift_json.txt    | 2000 ++---
 .../test/resources/wikipedia_datasift_json.txt  |  504 +-
 .../test/resources/youtube_datasift_json.txt    |   14 +-
 14 files changed, 11989 insertions(+), 11983 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
index d04c04b..e5b745f 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
@@ -106,6 +106,7 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor,DatumSta
             } catch (Exception e) {
                 LOGGER.error("Exception while trying to convert {} to a Activity.", toConvert.getClass());
                 LOGGER.error("Exception : {}", e);
+                e.printStackTrace();
                 return null;
             }
         }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessorTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessorTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessorTest.java
index a62615d..7d44e7f 100644
--- a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessorTest.java
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessorTest.java
@@ -34,7 +34,7 @@ import static junit.framework.Assert.assertTrue;
  */
 public class DatasiftTypeConverterProcessorTest {
 
-    private static final String DATASIFT_JSON = "{\"_index\":\"major_music_artist_datasift_20140527\",\"_type\":\"datasift\",\"_id\":\"1e3e5ef97532a580e0741841f5746728\",\"_version\":1,\"found\":true, \"_source\" : {\"data\":{\"demographic\":{\"gender\":\"female\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for Android\",\"author\":{\"username\":\"ViiOLeee\",\"name\":\"Violeta Anguita\",\"id\":70931384,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000851401229/bbf480cde2e9923a1d20acd393da0212_normal.jpeg\",\"link\":\"http://twitter.com/ViiOLeee\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Tue, 27 May 2014 22:38:15 +0000\",\"received_at\":1.401230295658E9,\"content\":\"RT @AliiAnguita: \\\"@Pharrell: Loved working with @edsheeran on Sing. He's a genius. https://t.co/wB2qKyJMRw\\\" @ViiOLeee  look at this!\",\"id\":\"1e3e5ef97532a580e0741841f5746728\",\"link\":\"http://twitter.com/ViiOLeee/status/471420141989666817\",\"mentions\":[\"Pharr
 ell\",\"edsheeran\",\"ViiOLeee\",\"AliiAnguita\"],\"mention_ids\":[338084918,85452649,70931384]},\"klout\":{\"score\":34},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Tue, 27 May 2014 14:28:06 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Official Video for Ed Sheeran&#39;s track SING Get this track on iTunes: http://smarturl.it/EdSing Pre-order &#39;x&#39; on iTunes and get &#39;One&#39; instantly: http://smartu...\"],\"keywords\":[[\"ed sheeran\",\"ed sheeran sing\",\"ed sheeran new album\",\"Ed Sheeran (Musical Artist)\",\"ed sheeran one\",\"ed sheeran fault in our stars\",\"ed sheeran all of the stars\",\"s...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=tlYcUqEPN58\",\"title\":\"Ed Sheeran - SING [Official Video]\",\"image\":\"https://i1.ytimg.com/vi/tlYcUqEPN58/maxresdefault.jpg\",\"description\":\"O
 fficial Video for Ed Sheeran&#39;s track SING Get this track on iTunes: http://smarturl.it/EdSing Pre-order &#39;x&#39; on iTunes and get &#39;One&#39; instantly: http://smartu...\",\"type\":\"video\"}],\"twitter\":[{\"card\":\"player\",\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=tlYcUqEPN58\",\"title\":\"Ed Sheeran - SING [Official Video]\",\"description\":\"Official Video for Ed Sheeran&#39;s track SING Get this track on iTunes: http://smarturl.it/EdSing Pre-order &#39;x&#39; on iTunes and get &#39;One&#39; instantly: http://smartu...\",\"image\":\"https://i1.ytimg.com/vi/tlYcUqEPN58/maxresdefault.jpg\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"id\":\"544007664\",\"url\":\"vnd.youtube://watch/tlYcUqEPN58\"},\"ipad\":{\"name\":\"YouTube\",\"id\":\"544007664\",\"url\":\"vnd.youtube://watch/tlYcUqEPN58\"},\"googleplay\":{\"name\":\"YouTube\",\"id\":\"com.google.android.youtube\",\"url\":\"http://www.youtube.com/watch?v=tlYcUqEPN58\"}},\"player\":\"https://www.you
 tube.com/embed/tlYcUqEPN58\",\"player_width\":\"1280\",\"player_height\":\"720\"}]},\"normalized_url\":[\"https://youtube.com/watch?v=tlYcUqEPN58\"],\"retweet_count\":[0],\"title\":[\"Ed Sheeran - SING [Official Video] - YouTube\"],\"url\":[\"https://www.youtube.com/watch?v=tlYcUqEPN58\"]},\"twitter\":{\"id\":\"471420141989666817\",\"retweet\":{\"text\":\"\\\"@Pharrell: Loved working with @edsheeran on Sing. He's a genius. https://t.co/wB2qKyJMRw\\\" @ViiOLeee  look at this!\",\"id\":\"471420141989666817\",\"user\":{\"name\":\"Violeta Anguita\",\"description\":\"La vida no seria la fiesta que todos esperamos, pero mientras estemos aqui debemos BAILAR!!! #ErasmusOnceErasmusForever\",\"location\":\"Espanhaa..Olaa!\",\"statuses_count\":5882,\"followers_count\":249,\"friends_count\":1090,\"screen_name\":\"ViiOLeee\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000851401229/bbf480cde2e9923a1d20acd393da0212_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg
 .com/profile_images/378800000851401229/bbf480cde2e9923a1d20acd393da0212_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Madrid\",\"utc_offset\":7200,\"listed_count\":1,\"id\":70931384,\"id_str\":\"70931384\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":275,\"created_at\":\"Wed, 02 Sep 2009 10:19:59 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"count\":1,\"created_at\":\"Tue, 27 May 2014 22:38:15 +0000\",\"mentions\":[\"Pharrell\",\"edsheeran\",\"ViiOLeee\",\"AliiAnguita\"],\"mention_ids\":[338084918,85452649,70931384],\"links\":[\"https://www.youtube.com/watch?v=tlYcUqEPN58\"],\"display_urls\":[\"youtube.com/watch?v=tlYcUq���\"],\"domains\":[\"www.youtube.com\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"471419867078209536\",\"user\":{\"name\":\"Alicia Anguita \",\"description\":\"Estudiante de Ingenieria de la Edificaci��n en Granada.\",\"statuses_count\":371,\"followers_count\":185,
 \"friends_count\":404,\"screen_name\":\"AliiAnguita\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/424248659677442048/qCPZL8c9_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/424248659677442048/qCPZL8c9_normal.jpeg\",\"lang\":\"es\",\"listed_count\":0,\"id\":561201891,\"id_str\":\"561201891\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":17,\"created_at\":\"Mon, 23 Apr 2012 13:11:44 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"created_at\":\"Tue, 27 May 2014 22:37:09 +0000\"}}}}}";
+    private static final String DATASIFT_JSON = "{\"demographic\":{\"gender\":\"female\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for Android\",\"author\":{\"username\":\"ViiOLeee\",\"name\":\"Violeta Anguita\",\"id\":70931384,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000851401229/bbf480cde2e9923a1d20acd393da0212_normal.jpeg\",\"link\":\"http://twitter.com/ViiOLeee\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Tue, 27 May 2014 22:38:15 +0000\",\"received_at\":1.401230295658E9,\"content\":\"RT @AliiAnguita: \\\"@Pharrell: Loved working with @edsheeran on Sing. He's a genius. https://t.co/wB2qKyJMRw\\\" @ViiOLeee  look at this!\",\"id\":\"1e3e5ef97532a580e0741841f5746728\",\"link\":\"http://twitter.com/ViiOLeee/status/471420141989666817\",\"mentions\":[\"Pharrell\",\"edsheeran\",\"ViiOLeee\",\"AliiAnguita\"],\"mention_ids\":[338084918,85452649,70931384]},\"klout\":{\"score\":34},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\
 "confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Tue, 27 May 2014 14:28:06 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Official Video for Ed Sheeran&#39;s track SING Get this track on iTunes: http://smarturl.it/EdSing Pre-order &#39;x&#39; on iTunes and get &#39;One&#39; instantly: http://smartu...\"],\"keywords\":[[\"ed sheeran\",\"ed sheeran sing\",\"ed sheeran new album\",\"Ed Sheeran (Musical Artist)\",\"ed sheeran one\",\"ed sheeran fault in our stars\",\"ed sheeran all of the stars\",\"s...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=tlYcUqEPN58\",\"title\":\"Ed Sheeran - SING [Official Video]\",\"image\":\"https://i1.ytimg.com/vi/tlYcUqEPN58/maxresdefault.jpg\",\"description\":\"Official Video for Ed Sheeran&#39;s track SING Get this track on iTunes: http://smarturl.it/EdSing Pre-order &#39;x&#39; on iTunes and get &#39;One&#39; instantly: http://smartu
 ...\",\"type\":\"video\"}],\"twitter\":[{\"card\":\"player\",\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=tlYcUqEPN58\",\"title\":\"Ed Sheeran - SING [Official Video]\",\"description\":\"Official Video for Ed Sheeran&#39;s track SING Get this track on iTunes: http://smarturl.it/EdSing Pre-order &#39;x&#39; on iTunes and get &#39;One&#39; instantly: http://smartu...\",\"image\":\"https://i1.ytimg.com/vi/tlYcUqEPN58/maxresdefault.jpg\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"id\":\"544007664\",\"url\":\"vnd.youtube://watch/tlYcUqEPN58\"},\"ipad\":{\"name\":\"YouTube\",\"id\":\"544007664\",\"url\":\"vnd.youtube://watch/tlYcUqEPN58\"},\"googleplay\":{\"name\":\"YouTube\",\"id\":\"com.google.android.youtube\",\"url\":\"http://www.youtube.com/watch?v=tlYcUqEPN58\"}},\"player\":\"https://www.youtube.com/embed/tlYcUqEPN58\",\"player_width\":\"1280\",\"player_height\":\"720\"}]},\"normalized_url\":[\"https://youtube.com/watch?v=tlYcUqEPN58\"],\"retweet_count\":[0],\"tit
 le\":[\"Ed Sheeran - SING [Official Video] - YouTube\"],\"url\":[\"https://www.youtube.com/watch?v=tlYcUqEPN58\"]},\"twitter\":{\"id\":\"471420141989666817\",\"retweet\":{\"text\":\"\\\"@Pharrell: Loved working with @edsheeran on Sing. He's a genius. https://t.co/wB2qKyJMRw\\\" @ViiOLeee  look at this!\",\"id\":\"471420141989666817\",\"user\":{\"name\":\"Violeta Anguita\",\"description\":\"La vida no seria la fiesta que todos esperamos, pero mientras estemos aqui debemos BAILAR!!! #ErasmusOnceErasmusForever\",\"location\":\"Espanhaa..Olaa!\",\"statuses_count\":5882,\"followers_count\":249,\"friends_count\":1090,\"screen_name\":\"ViiOLeee\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000851401229/bbf480cde2e9923a1d20acd393da0212_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000851401229/bbf480cde2e9923a1d20acd393da0212_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Madrid\",\"utc_offset\":7200,\"listed_count\":1,\"id\":709
 31384,\"id_str\":\"70931384\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":275,\"created_at\":\"Wed, 02 Sep 2009 10:19:59 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"count\":1,\"created_at\":\"Tue, 27 May 2014 22:38:15 +0000\",\"mentions\":[\"Pharrell\",\"edsheeran\",\"ViiOLeee\",\"AliiAnguita\"],\"mention_ids\":[338084918,85452649,70931384],\"links\":[\"https://www.youtube.com/watch?v=tlYcUqEPN58\"],\"display_urls\":[\"youtube.com/watch?v=tlYcUq���\"],\"domains\":[\"www.youtube.com\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"471419867078209536\",\"user\":{\"name\":\"Alicia Anguita \",\"description\":\"Estudiante de Ingenieria de la Edificaci��n en Granada.\",\"statuses_count\":371,\"followers_count\":185,\"friends_count\":404,\"screen_name\":\"AliiAnguita\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/424248659677442048/qCPZL8c9_normal.jpeg\",\"profile_image_url_
 https\":\"https://pbs.twimg.com/profile_images/424248659677442048/qCPZL8c9_normal.jpeg\",\"lang\":\"es\",\"listed_count\":0,\"id\":561201891,\"id_str\":\"561201891\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":17,\"created_at\":\"Mon, 23 Apr 2012 13:11:44 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"created_at\":\"Tue, 27 May 2014 22:37:09 +0000\"}}}";
 
     @Test
     public void testTypeConverterToString() {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
index e003435..f90b5ed 100644
--- a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
@@ -25,8 +25,13 @@ public class DatasiftActivitySerializerTest {
         Scanner scanner = new Scanner(DatasiftActivitySerializerTest.class.getResourceAsStream("/rand_sample_datasift_json.txt"));
         String line = null;
         while(scanner.hasNextLine()) {
-            line = scanner.nextLine();
-            testGeneralConversion(line);
+            try {
+                line = scanner.nextLine();
+                testGeneralConversion(line);
+            } catch (Exception e) {
+                System.err.println(line);
+                throw e;
+            }
         }
     }
 


[07/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
new file mode 100644
index 0000000..c8766f5
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
@@ -0,0 +1,1000 @@
+{"interaction":{"schema":{"version":3},"source":"web","author":{"username":"knknnmla","name":"Mr.President","id":1926634310,"avatar":"http://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg","link":"http://twitter.com/knknnmla","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:34 +0000","received_at":1.4014686953022E9,"content":"@AHGundarangan soccer player napala itsuuu hahaha","id":"1e3e81aa833aaf00e074bb7a2fe8b77a","link":"http://twitter.com/knknnmla/status/472420063447105536","mentions":["AHGundarangan"],"mention_ids":[2270040210]},"klout":{"score":42},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"created_at":"Fri, 30 May 2014 16:51:34 +0000","filter_level":"medium","id":"472420063447105536","in_reply_to_screen_name":"AHGundarangan","in_reply_to_status_id":"472419291711561728","in_reply_to_user_id":"2270040210","lang":"tl","mention_ids":[2270040210],"mentions":["AHGundarangan"],"source":"web","text":"@AHGundarang
 an soccer player napala itsuuu hahaha","user":{"name":"Mr.President","url":"http://www.Facebook.com/FING3R.BOARD","description":"Fingerborder,beatboxer,Soccerplayer.#DUBSTEP #HIP-HOP #DOTA2 #GAMER Clockwerk ng mundo","location":"San Francisco, California","statuses_count":5602,"followers_count":393,"friends_count":403,"screen_name":"knknnmla","profile_image_url":"http://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg","lang":"en","time_zone":"Beijing","utc_offset":28800,"listed_count":0,"id":1926634310,"id_str":"1926634310","geo_enabled":false,"verified":false,"favourites_count":1319,"created_at":"Wed, 02 Oct 2013 11:50:37 +0000"}}}
+{"demographic":{"gender":"female"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"amberhopf13","name":"Amber","id":2257041132,"avatar":"http://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg","link":"http://twitter.com/amberhopf13","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:37 +0000","received_at":1.4014686975912E9,"content":"@KayKay9972 I've seen better tennis playing in a tampon commercial...","id":"1e3e81aa9fd7a280e074f411f586dd00","link":"http://twitter.com/amberhopf13/status/472420073106595840","mentions":["KayKay9972"],"mention_ids":[593298084]},"klout":{"score":29},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"created_at":"Fri, 30 May 2014 16:51:37 +0000","filter_level":"medium","id":"472420073106595840","in_reply_to_screen_name":"KayKay9972","in_reply_to_status_id":"472419881724686336","in_reply_to_user_id":"593298084","lang":"en","mention_ids":[593298084],"m
 entions":["KayKay9972"],"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"@KayKay9972 I've seen better tennis playing in a tampon commercial...","user":{"name":"Amber","statuses_count":439,"followers_count":157,"friends_count":407,"screen_name":"amberhopf13","profile_image_url":"http://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg","lang":"en","listed_count":0,"id":2257041132,"id_str":"2257041132","geo_enabled":false,"verified":false,"favourites_count":792,"created_at":"Sat, 21 Dec 2013 23:30:00 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Sprout Social","author":{"username":"MrSuperFatso","name":"Mister Fatso","id":2306729970,"avatar":"http://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg","link":"http://twitter.com/MrSuperFatso","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:11 +0000","received_at":1.4014686715201E9,"content":"Who doesn't love a good sweater vest? #Golf fashion advice for women via @GolfDigestMag http://t.co/ghmJGqncms","id":"1e3e81a9a7e2a980e074f613deb99c34","link":"http://twitter.com/MrSuperFatso/status/472419963701952512","mentions":["GolfDigestMag"],"mention_ids":[22146985],"hashtags":["Golf"]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 15:28:02 +0000"],"hops":[["http://golfdig.st/1tX2c9F"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["By Ashley Mayo As part of my quest to help female
  golfers look more stylish and feel more comfortable on the course, I’m going to highlight one outfit per week, from Memorial Day through Labor Day. Last week, I..."],"keywords":[["ashley mayo","athleta","gfore","lija","style for her","true linkswear"]],"lang":["en-us"],"opengraph":[{"image":"http://subscribe.condenet.com/images_covers/cover_golfdigest_80.jpg?fbrefresh=20140530","site_name":"Golf Digest","title":"Style For Her: Long live the sweater vest: The Loop","url":"http://www.golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html","type":"article"}]},"normalized_url":["http://golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html"],"retweet_count":[0],"title":["Style For Her: Long Live The Sweater Vest: The Loop : Golf Digest"],"url":["http://www.golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:11 +0000","display_urls":["golfdig.st/1tX2c9F"],"domains":["golfdig.
 st"],"filter_level":"medium","hashtags":["Golf"],"id":"472419963701952512","lang":"en","links":["http://golfdig.st/1tX2c9F"],"mention_ids":[22146985],"mentions":["GolfDigestMag"],"source":"<a href=\"http://sproutsocial.com\" rel=\"nofollow\">Sprout Social</a>","text":"Who doesn't love a good sweater vest? #Golf fashion advice for women via @GolfDigestMag http://t.co/ghmJGqncms","user":{"name":"Mister Fatso","url":"http://superstrokeusa.com","description":"Sinking putts. Being Super. Let's hit the green, you and me. @SuperStrokeGolf","location":"USA","statuses_count":106,"followers_count":58,"friends_count":8,"screen_name":"MrSuperFatso","profile_image_url":"http://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":1,"id":2306729970,"id_str":"2306729970","geo_enabled":false,"
 verified":false,"favourites_count":42,"created_at":"Thu, 23 Jan 2014 14:53:18 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"dlvr.it","author":{"username":"PasadenaCAPatch","name":"Pasadena CA Patch","id":807836286,"avatar":"http://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg","link":"http://twitter.com/PasadenaCAPatch","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:37 +0000","received_at":1.4014686973454E9,"content":"Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree http://t.co/dNy3uwA60c","id":"1e3e81aa9fd7a280e074fb2e9dbb1b3c","link":"http://twitter.com/PasadenaCAPatch/status/472420072363798528"},"klout":{"score":42},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:38 +0000"],"hops":[["http://dlvr.it/5qc3Y9","http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004?utm_source=dlvr.it&utm_medium=twitter"]],"meta":{"charset":["UTF-8"],"con
 tent_type":["text/html"],"description":["The appropriately named California Chrome could be the first triple crown winner in 36 years. After all, he was the first Californian to win the Kentu"],"lang":["unknown"],"opengraph":[{"image":"http://pasadena-ca.patch.com/img/facebook-icon.png"}]},"normalized_url":["http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004"],"retweet_count":[0],"title":["Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree - Sports - Pasadena, CA Patch"],"url":["http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:37 +0000","display_urls":["dlvr.it/5qc3Y9"],"domains":["dlvr.it"],"filter_level":"medium","id":"472420072363798528","lang":"en","links":["http://dlvr.it/5qc3Y9"],"source":"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>","text":"Triple Crown
 : Hopes of Entire State Rest on a Horse of Modest Pedigree http://t.co/dNy3uwA60c","user":{"name":"Pasadena CA Patch","url":"http://Pasadena-CA.Patch.com","description":"#PasadenaCA #Patch (Pasadena-CA@Patch.com) is your source for all things local. See news, share events, photos.","location":"Pasadena, CA","statuses_count":2918,"followers_count":1394,"friends_count":110,"screen_name":"PasadenaCAPatch","profile_image_url":"http://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg","lang":"en","time_zone":"Atlantic Time (Canada)","utc_offset":-10800,"listed_count":29,"id":807836286,"id_str":"807836286","geo_enabled":false,"verified":false,"favourites_count":104,"created_at":"Fri, 07 Sep 2012 00:04:02 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"AndrewYee96","name":"Andrew Yee","id":304849703,"avatar":"http://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg","link":"http://twitter.com/AndrewYee96","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:38 +0000","received_at":1.4014686989583E9,"content":"Great day for Canadian tennis. Good luck to @milosraonic and @geniebouchard #FrenchOpen #deuce","id":"1e3e81aaa960a900e074c8a9dd94b27a","link":"http://twitter.com/AndrewYee96/status/472420079125016577","mentions":["milosraonic","geniebouchard"],"mention_ids":[35441526,52818366],"hashtags":["FrenchOpen","deuce"]},"klout":{"score":23},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"created_at":"Fri, 30 May 2014 16:51:38 +0000","filter_level":"medium","hashtags":["FrenchOpen","deuce"],"id":"472420079125016577","lang":"en","m
 ention_ids":[35441526,52818366],"mentions":["milosraonic","geniebouchard"],"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"Great day for Canadian tennis. Good luck to @milosraonic and @geniebouchard #FrenchOpen #deuce","user":{"name":"Andrew Yee","description":"This is the verified account for Andrew Yee.","statuses_count":434,"followers_count":72,"friends_count":282,"screen_name":"AndrewYee96","profile_image_url":"http://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg","lang":"en","listed_count":1,"id":304849703,"id_str":"304849703","geo_enabled":false,"verified":false,"favourites_count":7,"created_at":"Wed, 25 May 2011 06:34:24 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for iPad","author":{"username":"khalisxx","name":"☠","id":536501749,"avatar":"http://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg","link":"http://twitter.com/khalisxx","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:38 +0000","received_at":1.401468698727E9,"content":"RT @england: Gerrard scores @England's second with a left-foot cracker v Trinidad &amp; Tobago at the 2006 World Cup in a 2-0 win http://t.co/KdirmxVmgV","id":"1e3e81aaa960a900e0745beb9b0d31f2","link":"http://twitter.com/khalisxx/status/472420078060068864","mentions":["england","england"],"mention_ids":[1903382054]},"klout":{"score":29},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420078060068864","retweet":{"text":"Gerrard scores @England's second with a left-foot cracker v Trinidad &amp; Tobago at the 2006 World Cup in a 2-0 win http://t.co/KdirmxVmgV","id":"472420078060068864","
 user":{"name":"☠","url":"http://instagram.com/khaliskuasa2","description":"Ain't it cool...!! Anak Pak Kamsul in da house..! ♥ #LFC #YNWA","location":"jangan nak sebok la..","statuses_count":70771,"followers_count":178,"friends_count":163,"screen_name":"khalisxx","profile_image_url":"http://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg","lang":"en","time_zone":"Kuala Lumpur","utc_offset":28800,"listed_count":0,"id":536501749,"id_str":"536501749","geo_enabled":true,"verified":false,"favourites_count":103,"created_at":"Sun, 25 Mar 2012 17:44:57 +0000"},"source":"<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>","count":146,"created_at":"Fri, 30 May 2014 16:51:38 +0000","mentions":["england","england"],"mention_ids":[1903382054],"media":[{"id":472325338131742721,"id_str":"472325338131742721","media_url":"http://pbs.twim
 g.com/media/Bo4JZH3CQAEYbkX.jpg","media_url_https":"https://pbs.twimg.com/media/Bo4JZH3CQAEYbkX.jpg","url":"http://t.co/KdirmxVmgV","display_url":"pic.twitter.com/KdirmxVmgV","expanded_url":"http://twitter.com/england/status/472325339025530880/photo/1","type":"photo","sizes":{"small":{"w":339,"h":221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":390,"resize":"fit"},"large":{"w":960,"h":625,"resize":"fit"}}}],"filter_level":"low","lang":"en"},"retweeted":{"id":"472325339025530880","user":{"name":"England","url":"http://www.TheFA.com/England","description":"The official feed of the England Football Team with the latest news and updates from all the Three Lions squads","location":"Wembley Stadium, England","statuses_count":395,"followers_count":134957,"friends_count":85,"screen_name":"england","profile_image_url":"http://pbs.twimg.com/profile_images/441233401081647106/1o3VA7cl_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images
 /441233401081647106/1o3VA7cl_normal.jpeg","lang":"en-gb","time_zone":"London","utc_offset":3600,"listed_count":468,"id":1903382054,"id_str":"1903382054","geo_enabled":false,"verified":true,"favourites_count":133,"created_at":"Wed, 25 Sep 2013 08:23:07 +0000"},"source":"web","created_at":"Fri, 30 May 2014 10:35:10 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"n_abouhanna","name":"nicolas abouhanna ","id":705491522,"avatar":"http://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg","link":"http://twitter.com/n_abouhanna","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:39 +0000","received_at":1.4014687000811E9,"content":"The funniest thing are girls that think they know hockey but really just wanna sleep with hockey players","id":"1e3e81aab2e9af80e074ee9f9e30a6d6","link":"http://twitter.com/n_abouhanna/status/472420082707349505","geo":{"latitude":45.27294124,"longitude":-75.7372412}},"klout":{"score":20},"language":{"tag":"en","tag_extended":"en","confidence":99},"twitter":{"created_at":"Fri, 30 May 2014 16:51:39 +0000","filter_level":"medium","geo":{"latitude":45.27294124,"longitude":-75.7372412},"id":"472420082707349505","lang":"en","place":{"id":"38d5
 974e82ed1a6c","url":"https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json","place_type":"city","country":"Canada","country_code":"CA","full_name":"Ottawa, Ontario","name":"Ottawa","attributes":{}},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"The funniest thing are girls that think they know hockey but really just wanna sleep with hockey players","user":{"name":"nicolas abouhanna ","description":"#teamfollowback","statuses_count":113,"followers_count":91,"friends_count":173,"screen_name":"n_abouhanna","profile_image_url":"http://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg","lang":"en","time_zone":"Atlantic Time (Canada)","utc_offset":-10800,"listed_count":0,"id":705491522,"id_str":"705491522","geo_enabled":true,"verified":false,"favourites_count
 ":50,"created_at":"Thu, 19 Jul 2012 17:49:44 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for BlackBerry®","author":{"username":"Bellotsoho","name":"#BokoHaramIsNotIslam","id":493031077,"avatar":"http://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg","link":"http://twitter.com/Bellotsoho","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:39 +0000","received_at":1.4014686998544E9,"content":"RT @ESPNFC: No. 39 - Italy's rock at the back, GK Gigi Buffon will play in his 4th World Cup #WorldCupRank http://t.co/e4GarGMt3d http://t.co/WMsROdzOZX","id":"1e3e81aab2e9af80e0741ee6a96d3540","link":"http://twitter.com/Bellotsoho/status/472420081579073536","mentions":["ESPNFC"],"hashtags":["WorldCupRank"]},"klout":{"score":20},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:45:31 +0000"],"hops":[["http://es.pn/1kQYYRS","http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-#worldcuprank-no-39-gianluigi-buffon-
 italy-juventus?cc=5901&cc=5901"]],"meta":{"charset":["CP1252"],"content_type":["text/html"],"description":["Ranking the Top 50 players likely to shine at the 2014 World Cup"],"lang":["unknown"],"opengraph":[{"title":"#WorldCupRank: No. 39 Gianluigi Buffon","url":"http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-#worldcuprank-no-39-gianluigi-buffon-italy-juventus","description":"Ranking the Top 50 players likely to shine at the 2014 World Cup","site_name":"ESPNFC"}]},"normalized_url":["http://espnfc.com/news/story/_/id/1819471/2014-world-cup-"],"retweet_count":[0],"title":["2014 World Cup - #WorldCupRank - No. 39 Gianluigi Buffon of Italy and Juventus - ESPN FC"],"url":["http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-"]},"twitter":{"id":"472420081579073536","retweet":{"text":"No. 39 - Italy's rock at the back, GK Gigi Buffon will play in his 4th World Cup #WorldCupRank http://t.co/e4GarGMt3d http://t.co/WMsROdzOZX","id":"472420081579073536","user":{"name":"#
 BokoHaramIsNotIslam","description":"It's my life,I'll live it,I'll love it,and I won't care what you think of it.","location":"Sokoto,Nigeria.","statuses_count":9309,"followers_count":197,"friends_count":698,"screen_name":"Bellotsoho","profile_image_url":"http://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg","lang":"en","listed_count":1,"id":493031077,"id_str":"493031077","geo_enabled":true,"verified":false,"favourites_count":9,"created_at":"Wed, 15 Feb 2012 11:20:10 +0000"},"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>","count":30,"created_at":"Fri, 30 May 2014 16:51:39 +0000","mentions":["ESPNFC"],"links":["http://es.pn/1kQYYRS"],"display_urls":["es.pn/1kQYYRS"],"domains":["es.pn"],"hashtags":["WorldCupRank"],"media":[{"id":472418530491498496,"id_str":"472418530491498496","media_url":"http://pbs.twimg.co
 m/media/Bo5eJodCAAA6jZP.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5eJodCAAA6jZP.jpg","url":"http://t.co/WMsROdzOZX","display_url":"pic.twitter.com/WMsROdzOZX","expanded_url":"http://twitter.com/ESPNFC/status/472418530994827264/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":463,"resize":"fit"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1023,"h":791,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"472418530994827264","user":{"name":"ESPN FC","url":"http://www.espnfc.com","description":"All the latest football news and opinion","location":"At the football, mainly","statuses_count":48528,"followers_count":415079,"friends_count":281,"screen_name":"ESPNFC","profile_image_url":"http://pbs.twimg.com/profile_images/378800000861375426/iRq_tDyJ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000861375426/iRq_tDyJ_normal.jpeg","lang":"en","time_zone":"London","utc_offset":3600,"listed_c
 ount":5621,"id":18091004,"id_str":"18091004","geo_enabled":false,"verified":true,"favourites_count":55,"created_at":"Sat, 13 Dec 2008 01:33:04 +0000"},"source":"<a href=\"http://poptip.com\" rel=\"nofollow\">Poptip</a>","created_at":"Fri, 30 May 2014 16:45:29 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Sendible","author":{"username":"rugbybizz","name":"Rugbybiz","id":2489867288,"avatar":"http://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png","link":"http://twitter.com/rugbybizz","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:38 +0000","received_at":1.4014686990793E9,"content":"RT @HarveyLZ: Leaving campus now to head upstate for NY State Rugby Championships.  Match tomorrow at 2:00. #rugby","id":"1e3e81aaa960a900e074f91cd905be10","link":"http://twitter.com/rugbybizz/status/472420078764703744","mentions":["HarveyLZ"],"hashtags":["rugby"]},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420078764703744","retweet":{"text":"Leaving campus now to head upstate for NY State Rugby Championships.  Match tomorrow at 2:00. #rugby","id":"472420078764703744","user":{"name":"Rugbybiz","url":"http://www.byaonline.co.uk","description":"Promoting SME business in locally in 
 Rugby & Nationally through the BYAO network","location":"Rugby","statuses_count":1124,"followers_count":418,"friends_count":869,"screen_name":"rugbybizz","profile_image_url":"http://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png","lang":"en","listed_count":1,"id":2489867288,"id_str":"2489867288","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Sun, 11 May 2014 13:44:25 +0000"},"source":"<a href=\"http://sendible.com\" rel=\"nofollow\">Sendible</a>","count":1,"created_at":"Fri, 30 May 2014 16:51:38 +0000","mentions":["HarveyLZ"],"hashtags":["rugby"],"lang":"en"},"retweeted":{"id":"472416935184179200","user":{"name":"Philip Lazzaro","description":"Head of Upper School @ The Harvey School - an independent 6-12 school in Westchester County","statuses_count":823,"followers_count":176,"friends_count":413,"screen_name":"HarveyLZ","profile_image
 _url":"http://pbs.twimg.com/profile_images/3167815962/12bdb73d9c28cd2f520e1d1018a23e61_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3167815962/12bdb73d9c28cd2f520e1d1018a23e61_normal.jpeg","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":0,"id":1024888153,"id_str":"1024888153","geo_enabled":true,"verified":false,"favourites_count":588,"created_at":"Thu, 20 Dec 2012 19:35:03 +0000"},"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","created_at":"Fri, 30 May 2014 16:39:09 +0000"}}}
+{"demographic":{"gender":"female"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"ValCoppola79","name":"Valeria Coppola","id":1596774792,"avatar":"http://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg","link":"http://twitter.com/ValCoppola79","language":"es"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:25 +0000","received_at":1.4014686858901E9,"content":"RT @MotoGP: #MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"1e3e81aa2d66a480e07418fc274b9266","link":"http://twitter.com/ValCoppola79/status/472420022699446273","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"hashtags":["MotoGP"]},"klout":{"score":14},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:22:57 +0000"],"meta":{"charset":["UTF-8"],"content_type
 ":["text/html"],"description":["The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."],"keywords":[["MotoGP World Championship","MotoGP","Moto2","Moto3","Official Website","motogp.com","Live Video","Live Timing","Live Experience","High Resolution","VideoPass","Valentino Rossi","Marc Marquez","Honda","Jorge Lorenzo","Motorbike","race tickets","paddock girls","vip village","Calendar","after the flag","no spoiler","Time Schedule","News","RSS","BMW","Tissot","Aperol","Bridgestone","Dani Pedrosa","Casey Stoner","Toni Elias"]],"lang":["en"],"opengraph":[{"title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."}],"twitter":[{"card":"summary","site":"@motogp","url":"http://www.motogp.com/en/photos/latest photos","title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto
 3, includes Live Video coverage, premium content and all the latest news."}]},"normalized_url":["http://motogp.com/en/photos/latest+photos"],"retweet_count":[0],"title":["motogp.com · Latest Photos"],"url":["http://www.motogp.com/en/photos/latest+photos"]},"twitter":{"id":"472420022699446273","retweet":{"text":"#MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"472420022699446273","user":{"name":"Valeria Coppola","statuses_count":58,"followers_count":5,"friends_count":16,"screen_name":"ValCoppola79","profile_image_url":"http://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg","lang":"es","listed_count":0,"id":1596774792,"id_str":"1596774792","geo_enabled":false,"verified":false,"favourites_count":101,"created_at":"M
 on, 15 Jul 2013 21:30:40 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":475,"created_at":"Fri, 30 May 2014 16:51:25 +0000","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"links":["http://www.motogp.com/en/photos/latest+photos"],"display_urls":["motogp.com/en/photos/late…"],"domains":["www.motogp.com"],"hashtags":["MotoGP"],"media":[{"id":472412807162769408,"id_str":"472412807162769408","media_url":"http://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","url":"http://t.co/vynRa1k4zI","display_url":"pic.twitter.com/vynRa1k4zI","expanded_url":"http://twitter.com/MotoGP/status/472412808504967168/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"47241280850496716
 8","user":{"name":"MotoGP™","url":"http://www.motogp.com","description":"Official Twitter Feed of the MotoGP™ World Championship","location":"All around the world","statuses_count":15839,"followers_count":945262,"friends_count":403,"screen_name":"MotoGP","profile_image_url":"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":7411,"id":14082692,"id_str":"14082692","geo_enabled":true,"verified":true,"favourites_count":3,"created_at":"Wed, 05 Mar 2008 11:19:05 +0000"},"source":"web","created_at":"Fri, 30 May 2014 16:22:45 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"web","author":{"username":"A_Fazhan","name":"FazhanNnNnNn","id":319670217,"avatar":"http://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg","link":"http://twitter.com/A_Fazhan","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:42 +0000","received_at":1.4014687027717E9,"content":"RT @TheTotalLFC: Good to see Liverpool trying to finalise 3/4 deals before the world cup. #lfc","id":"1e3e81aacf86a300e074822e109ecf80","link":"http://twitter.com/A_Fazhan/status/472420094492962817","mentions":["TheTotalLFC"],"hashtags":["lfc"]},"klout":{"score":42},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420094492962817","retweet":{"text":"Good to see Liverpool trying to finalise 3/4 deals before the world cup. #lfc","id":"472420094492962817","user":{"name":"FazhanNnNnNn","description":"♡The REDS ♡ YNWA ♡ 98'","statuses_count":16710,"followers_count":655,"friends_count":48
 5,"screen_name":"A_Fazhan","profile_image_url":"http://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg","lang":"en","time_zone":"Kuala Lumpur","utc_offset":28800,"listed_count":0,"id":319670217,"id_str":"319670217","geo_enabled":true,"verified":false,"favourites_count":1749,"created_at":"Sat, 18 Jun 2011 14:39:37 +0000"},"source":"web","count":3,"created_at":"Fri, 30 May 2014 16:51:42 +0000","mentions":["TheTotalLFC"],"hashtags":["lfc"],"lang":"en"},"retweeted":{"id":"472419990285459458","user":{"name":"Total LFC","description":"Real time updates about everything relating to Liverpool FC.News,Stats,Team sheets,Live  coverage,Pictures,Videos..etc","location":"Liverpool","statuses_count":43549,"followers_count":89245,"friends_count":1709,"screen_name":"TheTotalLFC","profile_image_url":"http://pbs.twimg.com/profile_images/2403633752/f21qqa6c7zopx7xmttn2_normal.p
 ng","profile_image_url_https":"https://pbs.twimg.com/profile_images/2403633752/f21qqa6c7zopx7xmttn2_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":752,"id":296750174,"id_str":"296750174","geo_enabled":true,"verified":false,"favourites_count":313,"created_at":"Wed, 11 May 2011 10:24:59 +0000"},"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","created_at":"Fri, 30 May 2014 16:51:17 +0000"}}}
+{"demographic":{"gender":"unisex"},"interaction":{"schema":{"version":3},"source":"Facebook","author":{"username":"unisourcesd","name":"Unisource San Diego","id":288513475,"avatar":"http://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg","link":"http://twitter.com/unisourcesd","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:50:35 +0000","received_at":1.4014686362373E9,"content":"Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a... http://t.co/2PFFarmQ7f","id":"1e3e81a8508faf80e0743cad6d4797ca","link":"http://twitter.com/unisourcesd/status/472419816020905984"},"klout":{"score":25},"language":{"tag":"en","tag_extended":"en","confidence":99},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:42 +0000"],"hops":[["http://fb.me/3iqEbKs4d"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Ra
 ncho Bernardo Inn! Also brought a awesome beach cruiser for the silent auction!"],"lang":["en"]},"normalized_url":["https://facebook.com/photo.php?fbid=10152101665750614"],"retweet_count":[0],"title":["Mobile Uploads - Unisource Solutions San Diego | Facebook"],"url":["https://www.facebook.com/photo.php?fbid=10152101665750614"]},"twitter":{"created_at":"Fri, 30 May 2014 16:50:35 +0000","display_urls":["fb.me/3iqEbKs4d"],"domains":["fb.me"],"filter_level":"medium","id":"472419816020905984","lang":"en","links":["http://fb.me/3iqEbKs4d"],"source":"<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>","text":"Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a... http://t.co/2PFFarmQ7f","user":{"name":"Unisource San Diego","url":"http://www.unisourceit.com","description":"Welcome to Simple.","statuses_count":548,"followers_count":200,"friends_count":802,"screen_name":"unisourcesd","profile_image_url":"http:
 //pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg","lang":"en","time_zone":"Arizona","utc_offset":-25200,"listed_count":0,"id":288513475,"id_str":"288513475","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Wed, 27 Apr 2011 00:16:54 +0000"}}}
+{"demographic":{"gender":"mostly_female"},"interaction":{"schema":{"version":3},"source":"Twitter for BlackBerry","author":{"username":"NeyHottie","name":"12th of June","id":538452542,"avatar":"http://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg","link":"http://twitter.com/NeyHottie","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:42 +0000","received_at":1.4014687027966E9,"content":"598kilos of cocaine bound to brazil ahead of the world cup confiscated.","id":"1e3e81aacf86a300e074606499c78598","link":"http://twitter.com/NeyHottie/status/472420095009251329"},"klout":{"score":24},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"created_at":"Fri, 30 May 2014 16:51:42 +0000","filter_level":"medium","id":"472420095009251329","lang":"en","source":"<a href=\"http://www.twitter.com\" rel=\"nofollow\">Twitter for BlackBerry</a>","text":"598kilos of cocaine bound to brazil ahead of the world cup conf
 iscated.","user":{"name":"12th of June","description":"Not looking for hookups|not tweetin to please","location":"God's Feet","statuses_count":1239,"followers_count":89,"friends_count":167,"screen_name":"NeyHottie","profile_image_url":"http://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg","lang":"en","listed_count":0,"id":538452542,"id_str":"538452542","geo_enabled":true,"verified":false,"favourites_count":16,"created_at":"Tue, 27 Mar 2012 20:17:44 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"sbaynham87","name":"Scott","id":464546734,"avatar":"http://pbs.twimg.com/profile_images/1756396678/image_normal.jpg","link":"http://twitter.com/sbaynham87","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:44 +0000","received_at":1.4014687044283E9,"content":"RT @MercedesAMGF1: GET VOTING! Retweet for #TheMontREALdeal, favourite for #MapleBeLeaf to be our #CanadianGP hashtag! You have 40mins starting... now! #F1","id":"1e3e81aae299a000e0740ce9532cb2c8","link":"http://twitter.com/sbaynham87/status/472420102097604608","mentions":["MercedesAMGF1"],"hashtags":["TheMontREALdeal","MapleBeLeaf","CanadianGP","F1"]},"klout":{"score":12},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420102097604608","retweet":{"text":"GET VOTING! Retweet for #TheMontREALdeal, favourite for #MapleBeLeaf to be our #CanadianGP hashtag! Yo
 u have 40mins starting... now! #F1","id":"472420102097604608","user":{"name":"Scott","statuses_count":29,"followers_count":16,"friends_count":101,"screen_name":"sbaynham87","profile_image_url":"http://pbs.twimg.com/profile_images/1756396678/image_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1756396678/image_normal.jpg","lang":"en","listed_count":0,"id":464546734,"id_str":"464546734","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Sun, 15 Jan 2012 10:39:02 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":231,"created_at":"Fri, 30 May 2014 16:51:44 +0000","mentions":["MercedesAMGF1"],"hashtags":["TheMontREALdeal","MapleBeLeaf","CanadianGP","F1"],"lang":"en"},"retweeted":{"id":"472404651653218305","user":{"name":"MERCEDES AMG F1","url":"http://www.MercedesAMGF1.com","description":"The official Twitter account of the MERCEDES AMG PETRONAS Formula One Team. Tweeting fro
 m Brackley and 20+ cool places around the world.","location":"Brackley, Northants, UK","statuses_count":23650,"followers_count":475777,"friends_count":1532,"screen_name":"MercedesAMGF1","profile_image_url":"http://pbs.twimg.com/profile_images/1881059795/Star_Carbon_Background_normal.gif","profile_image_url_https":"https://pbs.twimg.com/profile_images/1881059795/Star_Carbon_Background_normal.gif","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":31739,"id":26235265,"id_str":"26235265","geo_enabled":false,"verified":true,"favourites_count":1424,"created_at":"Tue, 24 Mar 2009 13:24:04 +0000"},"source":"web","created_at":"Fri, 30 May 2014 15:50:20 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"TenskiSam","name":"TENSKI","id":2530829180,"avatar":"http://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg","link":"http://twitter.com/TenskiSam","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:42 +0000","received_at":1.4014687032737E9,"content":"RT @GaryLineker: Wish Luis Suarez a speedy recovery from knee surgery. Hope he's fit and raring to go for Uruguay's World Cup game against Italy.","id":"1e3e81aacf86a300e0749a7c06803e44","link":"http://twitter.com/TenskiSam/status/472420096804417537","mentions":["GaryLineker"]},"language":{"tag":"en","tag_extended":"en","confidence":99},"twitter":{"id":"472420096804417537","retweet":{"text":"Wish Luis Suarez a speedy recovery from knee surgery. Hope he's fit and raring to go for Uruguay's World Cup game against Italy.","id":"472420096804417537","user":{"name":"TENSKI","description":"we're nothing but atoms 
 undergoing a series of reactions","location":"England","statuses_count":998,"followers_count":567,"friends_count":49,"screen_name":"TenskiSam","profile_image_url":"http://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg","lang":"en","listed_count":0,"id":2530829180,"id_str":"2530829180","geo_enabled":false,"verified":false,"favourites_count":5,"created_at":"Wed, 28 May 2014 20:51:48 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":1296,"created_at":"Fri, 30 May 2014 16:51:42 +0000","mentions":["GaryLineker"],"lang":"en"},"retweeted":{"id":"469467147039940608","user":{"name":"Gary Lineker","description":"Once kicked a ball about. Now talk about kicking a ball about. Still flogging spuds.","statuses_count":11938,"followers_count":2414917,"friends_count":534,"screen_name":"GaryLineker","profile_imag
 e_url":"http://pbs.twimg.com/profile_images/431019030804447233/I-om-WMc_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/431019030804447233/I-om-WMc_normal.jpeg","lang":"en","time_zone":"Hawaii","utc_offset":-36000,"listed_count":6747,"id":471287735,"id_str":"471287735","geo_enabled":false,"verified":true,"favourites_count":16,"created_at":"Sun, 22 Jan 2012 18:07:24 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","created_at":"Thu, 22 May 2014 13:17:44 +0000"}}}
+{"demographic":{"gender":"mostly_male"},"interaction":{"schema":{"version":3},"source":"Twitter for Android","author":{"username":"alexflynn_2","name":"Alex Flynn","id":2187986741,"avatar":"http://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg","link":"http://twitter.com/alexflynn_2","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:45 +0000","received_at":1.4014687062901E9,"content":"@BradyOkeefe5 @Chef_Blazil that and Mr Nguyen on the tennis page are my best contributions to this yearbook","id":"1e3e81aaec22a680e074c542d34807b8","link":"http://twitter.com/alexflynn_2/status/472420109349187584","mentions":["BradyOkeefe5","Chef_Blazil"],"mention_ids":[306041919,164773731]},"klout":{"score":28},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"created_at":"Fri, 30 May 2014 16:51:45 +0000","filter_level":"medium","id":"472420109349187584","in_reply_to_screen_name":"BradyOkeefe5","in_reply_to_statu
 s_id":"472412368295567360","in_reply_to_user_id":"306041919","lang":"en","mention_ids":[306041919,164773731],"mentions":["BradyOkeefe5","Chef_Blazil"],"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","text":"@BradyOkeefe5 @Chef_Blazil that and Mr Nguyen on the tennis page are my best contributions to this yearbook","user":{"name":"Alex Flynn","description":"Do you remember a band called Hüsker Dü?","location":"Tacoma, WA","statuses_count":678,"followers_count":98,"friends_count":90,"screen_name":"alexflynn_2","profile_image_url":"http://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg","lang":"en","listed_count":0,"id":2187986741,"id_str":"2187986741","geo_enabled":false,"verified":false,"favourites_count":2954,"created_at":"Tue, 19 Nov 2013 21:48:47 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"dlvr.it","author":{"username":"iResalacom","name":"iResala.com","id":265571683,"avatar":"http://pbs.twimg.com/profile_images/1271393624/icon_normal.png","link":"http://twitter.com/iResalacom","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:19 +0000","received_at":1.4014686799184E9,"content":"aljazeera: Afghan basketball team beats odds to aim high http://t.co/7Cx3pv1tHh","id":"1e3e81a9f42dad80e0749f492a38b1e2","link":"http://twitter.com/iResalacom/status/472419999005429760"},"klout":{"score":18},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:47 +0000"],"hops":[["http://bit.ly/1kdcDmt","http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high&utm_source=dlvr.it&utm_medium=twitter"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["A team of athletes from Afghanistan is in I
 taly to take part in an international basketball competition. Getting there has been a major..."],"lang":["en"],"opengraph":[{"title":"Afghan basketball team beats odds to aim high","description":"A team of athletes from Afghanistan is in Italy to take part in an international basketball competition. Getting there has been a major...","url":"http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high","type":"video","image":"http://islamicfacebook.com/media/image.php?u=10855&p=90695&t","site_name":"Muslim Social Network"}]},"normalized_url":["http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high"],"retweet_count":[0],"title":["Afghan basketball team beats odds to aim high"],"url":["http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:19 +0000","display_urls":["bit.ly/1kdcDmt"],"domains":["bit.ly"
 ],"filter_level":"medium","id":"472419999005429760","lang":"en","links":["http://bit.ly/1kdcDmt"],"source":"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>","text":"aljazeera: Afghan basketball team beats odds to aim high http://t.co/7Cx3pv1tHh","user":{"name":"iResala.com","url":"http://iResala.com","statuses_count":54724,"followers_count":49,"friends_count":0,"screen_name":"iResalacom","profile_image_url":"http://pbs.twimg.com/profile_images/1271393624/icon_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/1271393624/icon_normal.png","lang":"en","listed_count":1,"id":265571683,"id_str":"265571683","geo_enabled":false,"verified":false,"favourites_count":0,"created_at":"Sun, 13 Mar 2011 19:52:37 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"IFTTT","author":{"username":"AlmendraVelasco","name":"Almendra Velasco","id":2414775619,"avatar":"http://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg","link":"http://twitter.com/AlmendraVelasco","language":"es"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:19 +0000","received_at":1.4014686802702E9,"content":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? #MTV http://t.co/w3wANmHHLC","id":"1e3e81a9f42dad80e074c79ff9b60a6c","link":"http://twitter.com/AlmendraVelasco/status/472420000498974722","hashtags":["MTV"]},"klout":{"score":24},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:44:49 +0000"],"hops":[["http://ift.tt/1gIMpbR"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#0
 39;Jackass&#039; alum recover from an epic tricycle stunt."],"keywords":[["justin bieber","steve o","skatepark","tricycle"]],"lang":["en-us"],"opengraph":[{"site_name":"MTV News","title":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More?","url":"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/","image":"http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:9310573?width=1200&height=675","type":"article","description":"Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt."}],"twitter":[{"description":"Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt.","title":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More?","image":"http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:9310573","u
 rl":"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/","card":"summary"}]},"normalized_url":["http://mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark"],"retweet_count":[0],"title":["Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? - MTV"],"url":["http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:19 +0000","display_urls":["ift.tt/1gIMpbR"],"domains":["ift.tt"],"filter_level":"medium","hashtags":["MTV"],"id":"472420000498974722","lang":"en","links":["http://ift.tt/1gIMpbR"],"source":"<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>","text":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? #MTV http://t.co/w3wANmHHLC","user":{"name":"Almendra Velasco","description":"Viajera musical en un mundo bicolor.","statuses_count":3105,"followers_count":71,"friends_count":87,"screen_name":"AlmendraVelasco","profile_image_url":"http://pbs.twimg.com/profile_imag
 es/449257945402847232/zkCtwRTB_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg","lang":"es","listed_count":1,"id":2414775619,"id_str":"2414775619","geo_enabled":false,"verified":false,"favourites_count":0,"created_at":"Thu, 27 Mar 2014 18:50:30 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for BlackBerry®","author":{"username":"nayaamaliaaa","name":"nαααee♔","id":2439641473,"avatar":"http://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg","link":"http://twitter.com/nayaamaliaaa","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:48 +0000","received_at":1.4014687083943E9,"content":"RT @vidyanroktv: Hehe me too sayang♥{}\"@nayaamaliaaa: Syg bgt dh gua pokoknya ama @vidyanroktv :*:*♥ my little imuutsskuuu:*\"","id":"1e3e81ab08beaa00e07468f7ae629c2e","link":"http://twitter.com/nayaamaliaaa/status/472420118878625792","mentions":["nayaamaliaaa","vidyanroktv","vidyanroktv"],"mention_ids":[2439641473,376752407]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420118878625792","retweet":{"text":"Hehe me too sayang♥{}\"@nayaamaliaaa: Syg bgt dh gua pokoknya ama @vidyanroktv :*:*♥ my little imuutsskuuu:*\"","id":"472
 420118878625792","user":{"name":"nαααee♔","description":"follow twitter yang ini aja ya. yang nayaamaliaPG . @nayamaliaa itu ke hack! follback?just mention!:)","statuses_count":1599,"followers_count":58,"friends_count":52,"screen_name":"nayaamaliaaa","profile_image_url":"http://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg","lang":"en","listed_count":0,"id":2439641473,"id_str":"2439641473","geo_enabled":true,"verified":false,"favourites_count":34,"created_at":"Sat, 12 Apr 2014 06:50:10 +0000"},"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>","count":1,"created_at":"Fri, 30 May 2014 16:51:48 +0000","mentions":["nayaamaliaaa","vidyanroktv","vidyanroktv"],"mention_ids":[2439641473,376752407],"lang":"in"},"retweeted":{"id":"472418279999291394","user":{"name":"Viya","description":"STILL RICKYAZHAR♥ God,ple
 ase protect my relationship from girl destroyer!","location":"Peninggilan Village","statuses_count":12619,"followers_count":341,"friends_count":284,"screen_name":"vidyanroktv","profile_image_url":"http://pbs.twimg.com/profile_images/471299174026051584/tLbXvuJb_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471299174026051584/tLbXvuJb_normal.jpeg","lang":"en","time_zone":"Pacific Time (US & Canada)","utc_offset":-25200,"listed_count":0,"id":376752407,"id_str":"376752407","geo_enabled":true,"verified":false,"favourites_count":33,"created_at":"Tue, 20 Sep 2011 12:51:15 +0000"},"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>","created_at":"Fri, 30 May 2014 16:44:29 +0000"}}}
+{"demographic":{"gender":"unisex"},"interaction":{"schema":{"version":3},"source":"web","author":{"username":"AzapTraducoes","name":"Azap Traduções Ofcl.","id":76999737,"avatar":"http://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg","link":"http://twitter.com/AzapTraducoes","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:36 +0000","received_at":1.4014686970102E9,"content":"#FIFAWorldCup #Manaus Hey, English soccer fans! Know what to do in Manaus here: http://t.co/SBmMFCLegj\nTake vitamin B12 to scare mosquitos.","id":"1e3e81aa964dac00e0745206103f8436","link":"http://twitter.com/AzapTraducoes/status/472420071152046080","hashtags":["FIFAWorldCup","Manaus"]},"klout":{"score":16},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[500],"created_at":["Fri, 30 May 2014 16:51:48 +0000"],"hops":[["http://www.manausonline.com"]],"normalized_url":[null],"retweet_count":[0],"title":[null],"url":["h
 ttp://www.manausonline.com"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:36 +0000","display_urls":["manausonline.com"],"domains":["www.manausonline.com"],"filter_level":"medium","hashtags":["FIFAWorldCup","Manaus"],"id":"472420071152046080","lang":"en","links":["http://www.manausonline.com"],"source":"web","text":"#FIFAWorldCup #Manaus Hey, English soccer fans! Know what to do in Manaus here: http://t.co/SBmMFCLegj\nTake vitamin B12 to scare mosquitos.","user":{"name":"Azap Traduções Ofcl.","url":"http://www.azap.com.br","description":"Professional translation and interpreting services for intl events. We are based in Rio de Janeiro, Brazil. Fones, cabines e tradutores especializados.","location":"Rio de Janeiro, Brazil","statuses_count":309,"followers_count":90,"friends_count":848,"screen_name":"AzapTraducoes","profile_image_url":"http://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg","profile_image_url_https":"https://pbs.twimg.
 com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg","lang":"en","time_zone":"Greenland","utc_offset":-7200,"listed_count":0,"id":76999737,"id_str":"76999737","geo_enabled":false,"verified":false,"favourites_count":86,"created_at":"Thu, 24 Sep 2009 17:53:30 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"StephennNielsen","name":"stephen.","id":1091042449,"avatar":"http://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg","link":"http://twitter.com/StephennNielsen","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:48 +0000","received_at":1.4014687088755E9,"content":"@NickIsRadical tennis courts","id":"1e3e81ab08beaa00e074ec78a5dd5e54","link":"http://twitter.com/StephennNielsen/status/472420119537532929","mentions":["NickIsRadical"],"mention_ids":[64299521]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":93},"twitter":{"created_at":"Fri, 30 May 2014 16:51:48 +0000","filter_level":"medium","id":"472420119537532929","in_reply_to_screen_name":"NickIsRadical","in_reply_to_status_id":"472408457531101184","in_reply_to_user_id":"64299521","lang":"fr","mention_ids":[64299521],"mentions":["NickIsRadical"
 ],"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"@NickIsRadical tennis courts","user":{"name":"stephen.","url":"http://Instagram.com/steezaye","description":"Horlick, 18, single.","location":"Photographer | Film maker","statuses_count":2869,"followers_count":341,"friends_count":250,"screen_name":"StephennNielsen","profile_image_url":"http://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":0,"id":1091042449,"id_str":"1091042449","geo_enabled":false,"verified":false,"favourites_count":996,"created_at":"Tue, 15 Jan 2013 04:35:33 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPad","author":{"username":"VFagherazzi","name":"valentin fagherazzi ","id":2545563593,"avatar":"http://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg","link":"http://twitter.com/VFagherazzi","language":"fr"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:10 +0000","received_at":1.4014686702916E9,"content":"RT @MotoGP: #MotoGP @ValeYellow46 Rossi’s 300th Grand Prix weekend underway\nhttp://t.co/p7IoMfyiIL http://t.co/2IQ0WxPCER","id":"1e3e81a99e59a300e074e3d14c4173d0","link":"http://twitter.com/VFagherazzi/status/472419958778261504","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"hashtags":["MotoGP"]},"language":{"tag":"en","tag_extended":"en","confidence":97},"links":{"code":[200],"created_at":["Fri, 30 May 2014 15:27:37 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["The visit to Mugello is always special for V
 alentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor."],"keywords":[["MotoGP World Championship","MotoGP","Moto2","Moto3","Official Website","motogp.com","Live Video","Live Timing","Live Experience","High Resolution","VideoPass","Valentino Rossi","Marc Marquez","Honda","Jorge Lorenzo","Motorbike","race tickets","paddock girls","vip village","Calendar","after the flag","no spoiler","Time Schedule","News","RSS","BMW","Tissot","Aperol","Bridgestone","Dani Pedrosa","Casey Stoner","Toni Elias"]],"lang":["en"],"opengraph":[{"image":"http://photos.motogp.com/2014/05/30/46rossi_ds-_s1d9404_preview_big_169.jpg","title":"motogp.com · Rossi’s 300th Grand Prix weekend underway","description":"The visit to Mugello is always special for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor."}],"twitter":[{"card":"summary","site":"@motogp","url":"
 http://www.motogp.com/en/news/2014/Rossis 300th Grand Prix weekend underway","title":"motogp.com · Rossi’s 300th Grand Prix weekend underway","description":"The visit to Mugello is always special for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor.","image":"http://photos.motogp.com/2014/05/30/46rossi_ds-_s1d9404_preview_big_169.jpg"}]},"normalized_url":["http://motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway"],"retweet_count":[0],"title":["motogp.com · Rossi’s 300th Grand Prix weekend underway"],"url":["http://www.motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway"]},"twitter":{"id":"472419958778261504","retweet":{"text":"#MotoGP @ValeYellow46 Rossi’s 300th Grand Prix weekend underway\nhttp://t.co/p7IoMfyiIL http://t.co/2IQ0WxPCER","id":"472419958778261504","user":{"name":"valentin fagherazzi ","statuses_count":11,"followers_count":3,"friends_count":40,"screen_nam
 e":"VFagherazzi","profile_image_url":"http://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg","lang":"fr","listed_count":0,"id":2545563593,"id_str":"2545563593","geo_enabled":false,"verified":false,"favourites_count":11,"created_at":"Tue, 13 May 2014 18:49:58 +0000"},"source":"<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>","count":410,"created_at":"Fri, 30 May 2014 16:51:10 +0000","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"links":["http://www.motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway"],"display_urls":["motogp.com/en/news/2014/R…"],"domains":["www.motogp.com"],"hashtags":["MotoGP"],"media":[{"id":472399586619686913,"id_str":"472399586619686913","media_url":"http://pbs.twimg.com/media/Bo5M69CCAAEvzfj.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5M69CCAAEvzfj.jpg","url
 ":"http://t.co/2IQ0WxPCER","display_url":"pic.twitter.com/2IQ0WxPCER","expanded_url":"http://twitter.com/MotoGP/status/472399587861610496/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"472399587861610496","user":{"name":"MotoGP™","url":"http://www.motogp.com","description":"Official Twitter Feed of the MotoGP™ World Championship","location":"All around the world","statuses_count":15839,"followers_count":945262,"friends_count":403,"screen_name":"MotoGP","profile_image_url":"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":7411,"id":14082692,"id_str":"14082692","geo_enabled":true,"verified":true,"favour
 ites_count":3,"created_at":"Wed, 05 Mar 2008 11:19:05 +0000"},"source":"web","created_at":"Fri, 30 May 2014 15:30:13 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"web","author":{"username":"ADMCascardo","name":"Jorge Luiz Cascardo","id":71728158,"avatar":"http://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg","link":"http://twitter.com/ADMCascardo","language":"pt"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:25 +0000","received_at":1.4014686856191E9,"content":"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers(@LAClippers) por US$ 2 bi http://t.co/hR8ZroTXbW via @admnews #NBA","id":"1e3e81aa2d66a480e074c9c330a1aae8","link":"http://twitter.com/ADMCascardo/status/472420022376493056","mentions":["LAClippers","admnews"],"mention_ids":[19564719,20450814],"hashtags":["NBA"]},"klout":{"score":31},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:50 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["A oferta de Ballmer superou a
  de dois grupos; um deles, que ofereceu 1,6 bilhão de dólares, era liderado pelo magnata da mídia David Geffen e incluía a apresentadora de TV Oprah Winfrey e o presidente-executivo da Oracle, Larry Ellison"],"lang":["pt"],"opengraph":[{"title":"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers por US$ 2 bi","type":"article","image":"http://www.administradores.com.br/_assets/themes/default/img/adm_facebook.png","url":"http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/","site_name":"Administradores.com","description":"A oferta de Ballmer superou a de dois grupos; um deles, que ofereceu 1,6 bilhão de dólares, era liderado pelo magnata da mídia David Geffen e incluía a apresentadora de TV Oprah Winfrey e o presidente-executivo da Oracle, Larry Ellison"}]},"normalized_url":["http://administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-p
 or-us-2-bi/88597"],"retweet_count":[0],"title":["Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers por US$ 2 bi - Notícias - Negócios - Administradores.com"],"url":["http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:25 +0000","display_urls":["administradores.com.br/noticias/negoc…"],"domains":["www.administradores.com.br"],"filter_level":"medium","hashtags":["NBA"],"id":"472420022376493056","lang":"pt","links":["http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/"],"mention_ids":[19564719,20450814],"mentions":["LAClippers","admnews"],"source":"web","text":"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers(@LAClippers) por US$ 2 bi http://t.co/hR8ZroTXbW via @admnews #NBA","user":{"name":"Jorge Luiz Cascardo","description":"Oficialmente Admi
 nistrador - CRA/RJ 20-83064","location":"Rio de Janeiro - Brasil","statuses_count":2894,"followers_count":534,"friends_count":722,"screen_name":"ADMCascardo","profile_image_url":"http://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg","lang":"pt","time_zone":"Brasilia","utc_offset":-10800,"listed_count":22,"id":71728158,"id_str":"71728158","geo_enabled":false,"verified":false,"favourites_count":106,"created_at":"Sat, 05 Sep 2009 04:38:11 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"GavynnGrayson","name":"Gavynn","id":1676503957,"avatar":"http://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg","link":"http://twitter.com/GavynnGrayson","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:09 +0000","received_at":1.4014687299968E9,"content":"RT @emmy_xo_: I play rugby","id":"1e3e81abd104a280e074ad11b9a16050","link":"http://twitter.com/GavynnGrayson/status/472420209190395904","mentions":["emmy_xo_"]},"klout":{"score":33},"language":{"tag":"en","tag_extended":"en","confidence":94},"twitter":{"id":"472420209190395904","retweet":{"text":"I play rugby","id":"472420209190395904","user":{"name":"Gavynn","description":"Real girls arent perfect and perfect girls arent real","statuses_count":5202,"followers_count":205,"friends_count":370,"screen_name":"GavynnGrayson","profile_image_url":"http://pbs.twimg.com/profile_images/471761912498511872/pAyT
 A7KB_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg","lang":"en","listed_count":0,"id":1676503957,"id_str":"1676503957","geo_enabled":true,"verified":false,"favourites_count":1665,"created_at":"Fri, 16 Aug 2013 19:29:49 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":1,"created_at":"Fri, 30 May 2014 16:52:09 +0000","mentions":["emmy_xo_"],"lang":"en"},"retweeted":{"id":"472420166681120768","user":{"name":"Emily Medeiros☀️","description":"BearCreek","statuses_count":3126,"followers_count":402,"friends_count":370,"screen_name":"emmy_xo_","profile_image_url":"http://pbs.twimg.com/profile_images/471446298508668929/yPAmhOWo_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471446298508668929/yPAmhOWo_normal.jpeg","lang":"en","listed_count":0,"id":610813667,"id_str":"610813667","geo_enabled":false,"verified":false,"favourite
 s_count":3359,"created_at":"Sun, 17 Jun 2012 13:31:19 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","created_at":"Fri, 30 May 2014 16:51:59 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"twitterfeed","author":{"username":"photoshop00000","name":"photoshop","id":1390693447,"avatar":"http://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg","link":"http://twitter.com/photoshop00000","language":"ru"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:08 +0000","received_at":1.4014687288115E9,"content":"#news 5 Japan players to watch at the World Cup: TOKYO (AP) — Keisuke Honda and Shinji ... http://t.co/E69JtIx4hf http://t.co/6Si3P3zzT5","id":"1e3e81abc77aac00e0746475f2c2fcd6","link":"http://twitter.com/photoshop00000/status/472420203918159872","hashtags":["news"]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200,200],"created_at":["Fri, 30 May 2014 16:52:10 +0000","Thu, 29 May 2014 23:46:51 +0000"],"hops":[["http://yhoo.it/1hG6j2t","https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html?utm_medium=twitter&utm_s
 ource=twitterfeed"],["http://www.xn--e1afvigz.su","http://online.winner.com/promoRedirect?member=cashmoneyr&campaign=DEFAULT&channel=DEFAULT&zone=52299224&lp=52619734"]],"meta":{"charset":["UTF-8","UTF-8"],"content_type":["text/html","text/html"],"lang":["en-gb","en-us"]},"normalized_url":["https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html","http://poker.winner.com"],"retweet_count":[0,0],"title":["5 Japan players to watch at the World Cup","Play to Win at Winner.com Online Poker Room - Winner.com"],"url":["https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html","http://poker.winner.com/"]},"twitter":{"created_at":"Fri, 30 May 2014 16:52:08 +0000","display_urls":["yhoo.it/1hG6j2t","чипсет.su"],"domains":["yhoo.it","www.xn--e1afvigz.su"],"filter_level":"none","hashtags":["news"],"id":"472420203918159872","lang":"en","links":["http://yhoo.it/1hG6j2t","http://www.xn--e1afvigz.su"],"possibly_sensitive":true,"source":"<a href=\"http://twitte
 rfeed.com\" rel=\"nofollow\">twitterfeed</a>","text":"#news 5 Japan players to watch at the World Cup: TOKYO (AP) — Keisuke Honda and Shinji ... http://t.co/E69JtIx4hf http://t.co/6Si3P3zzT5","user":{"name":"photoshop","url":"http://xn--e1afvigz.su/","statuses_count":244053,"followers_count":436,"friends_count":1243,"screen_name":"photoshop00000","profile_image_url":"http://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg","lang":"ru","time_zone":"Abu Dhabi","utc_offset":14400,"listed_count":8,"id":1390693447,"id_str":"1390693447","geo_enabled":false,"verified":false,"favourites_count":0,"created_at":"Mon, 29 Apr 2013 23:17:43 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"twitterfeed","author":{"username":"dnbeatcreative","name":"downbeat","id":55691156,"avatar":"http://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg","link":"http://twitter.com/dnbeatcreative","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:10 +0000","received_at":1.401468730409E9,"content":"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/... http://t.co/7bpUMjROTM","id":"1e3e81abda8da900e0742981237189ba","link":"http://twitter.com/dnbeatcreative/status/472420210687758337"},"klout":{"score":31},"language":{"tag":"en","tag_extended":"en","confidence":99},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:46:06 +0000"],"hops":[["http://bit.ly/1mzrWEd","http://www.techmeme.com/140530/p17#a140530p17"]],"meta":{"charset":["CP1252"],"content_type":["text/html"],"description":["The essential tech news of the moment. Technology's news site of 
 record. Not for dummies."],"lang":["unknown"],"opengraph":[{"site_name":"Techmeme","type":"article","title":"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere","description":"This story, by Rolfe Winkler / Wall Street Journal, appeared on Techmeme.","image":"http://www.techmeme.com/img/techmeme_sq328.png"}]},"normalized_url":["http://techmeme.com/140530/p17"],"retweet_count":[0],"title":["Techmeme: Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/Wall Street Journal)"],"url":["http://www.techmeme.com/140530/p17"]},"twitter":{"created_at":"Fri, 30 May 2014 16:52:10 +0000","display_urls":["bit.ly/1mzrWEd"],"domains":["bit.ly"],"filter_level":"medium","id":"472420210687758337","lang":"en","links":["http://bit.ly/1mzrWEd"],"source":"<a href=\"http://twitterfeed.com\" rel=\"nofollow\">twitterfeed</a>","text":"Google's Motorola to close down Texas factory this year, will continue maki
 ng Moto X elsewhere (Rolfe Winkler/... http://t.co/7bpUMjROTM","user":{"name":"downbeat","description":"We're a Conversation Marketing Agency in the heart of Music City. Think CMO with an emphasis on New Media!","location":"Nashville, TN","statuses_count":13528,"followers_count":1549,"friends_count":1860,"screen_name":"dnbeatcreative","profile_image_url":"http://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":32,"id":55691156,"id_str":"55691156","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Fri, 10 Jul 2009 23:03:01 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"SweetLaly","name":"Laly #2 ⭐","id":42172919,"avatar":"http://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg","link":"http://twitter.com/SweetLaly","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:12 +0000","received_at":1.4014687326712E9,"content":"Watchin tennis again Raonić vs Simon 👌","id":"1e3e81abeda0a600e074f94f5be6ddea","link":"http://twitter.com/SweetLaly/status/472420220519579648"},"klout":{"score":52},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"created_at":"Fri, 30 May 2014 16:52:12 +0000","filter_level":"medium","id":"472420220519579648","lang":"ro","source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"Watchin tennis again Raonić vs Simon 👌","user":{"name":"Laly #2 ⭐","url":"http://theonlythingicanremember.tumblr.com/","description":"Need MUSIC to l
 ive! I'm so southern so I feel the cold ❄️⭐️ Football lover ⚽ Cruzada, Red Devil, Rossoneri & Borussen ⚽","location":"Happyland ✌⭐","statuses_count":203928,"followers_count":774,"friends_count":666,"screen_name":"SweetLaly","profile_image_url":"http://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg","lang":"en","time_zone":"Santiago","utc_offset":-14400,"listed_count":26,"id":42172919,"id_str":"42172919","geo_enabled":true,"verified":false,"favourites_count":9255,"created_at":"Sun, 24 May 2009 05:56:59 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"dlvr.it","author":{"username":"cameroondaily","name":"cameroon daily","id":258614852,"avatar":"http://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg","link":"http://twitter.com/cameroondaily","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:10 +0000","received_at":1.4014687305187E9,"content":"5 Cameroon players to watch at the World Cup: … attacking pace are vital to Cameroon's ambitions. Many Premier …... http://t.co/5NM6tQH8Zr","id":"1e3e81abda8da900e07488b315ce6a4e","link":"http://twitter.com/cameroondaily/status/472420211065229312"},"klout":{"score":19},"language":{"tag":"en","tag_extended":"en","confidence":99},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:52:11 +0000"],"hops":[["http://dlvr.it/5qc4BW","http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ&utm_source=dlvr.it&utm_medium=twitter"]],"meta":{"charset":["UTF-8"],"content_type":["text/html
 "],"lang":["en-us"]},"normalized_url":["http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ"],"retweet_count":[0],"title":["5 Cameroon players to watch at the World Cup - World News Report"],"url":["http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ"]},"twitter":{"created_at":"Fri, 30 May 2014 16:52:10 +0000","display_urls":["dlvr.it/5qc4BW"],"domains":["dlvr.it"],"filter_level":"medium","id":"472420211065229312","lang":"en","links":["http://dlvr.it/5qc4BW"],"source":"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>","text":"5 Cameroon players to watch at the World Cup: … attacking pace are vital to Cameroon's ambitions. Many Premier …... http://t.co/5NM6tQH8Zr","user":{"name":"cameroon daily","url":"http://www.cameroondaily.org","description":"Follow us to get all breaking news,latest cameroon ads,real estate,jobs  etc.Find all Cameroon related events worldwide on our website","location":"Yaou
 nde-Cameroon","statuses_count":3417,"followers_count":87,"friends_count":30,"screen_name":"cameroondaily","profile_image_url":"http://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg","lang":"en","time_zone":"West Central Africa","utc_offset":3600,"listed_count":2,"id":258614852,"id_str":"258614852","geo_enabled":true,"verified":false,"favourites_count":0,"created_at":"Mon, 28 Feb 2011 02:58:56 +0000"}}}
+{"demographic":{"gender":"mostly_male"},"interaction":{"schema":{"version":3},"source":"Twitter for Android","author":{"username":"HunterA0514","name":"Hunter","id":1684509404,"avatar":"http://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg","link":"http://twitter.com/HunterA0514","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:14 +0000","received_at":1.401468734885E9,"content":"RT @TweetLlkeAGuy: Volleyball butts &gt;","id":"1e3e81ac00b3a300e07439925adbe524","link":"http://twitter.com/HunterA0514/status/472420228031590400","mentions":["TweetLlkeAGuy"]},"klout":{"score":38},"language":{"tag":"en","tag_extended":"en","confidence":95},"twitter":{"id":"472420228031590400","retweet":{"text":"Volleyball butts &gt;","id":"472420228031590400","user":{"name":"Hunter","description":"higley baseball jv all star","statuses_count":3066,"followers_count":133,"friends_count":143,"screen_name":"HunterA0514","profile_image_url":"http://pbs.twimg.com/profi
 le_images/459871104681537536/Pu-swn88_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg","lang":"en","listed_count":0,"id":1684509404,"id_str":"1684509404","geo_enabled":false,"verified":false,"favourites_count":1759,"created_at":"Tue, 20 Aug 2013 00:23:29 +0000"},"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","count":73,"created_at":"Fri, 30 May 2014 16:52:14 +0000","mentions":["TweetLlkeAGuy"],"lang":"en"},"retweeted":{"id":"472413430344089600","user":{"name":"Tweet Like A Guy","url":"http://theonlinemancave.com","description":"Tweets only a guy could retweet.","location":"Join the Mancave","statuses_count":5359,"followers_count":179972,"friends_count":0,"screen_name":"TweetLlkeAGuy","profile_image_url":"http://pbs.twimg.com/profile_images/378800000354569384/234c19531f582f4fb43acc256d0f3ba2_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_imag
 es/378800000354569384/234c19531f582f4fb43acc256d0f3ba2_normal.png","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":152,"id":899461928,"id_str":"899461928","geo_enabled":false,"verified":false,"favourites_count":6,"created_at":"Tue, 23 Oct 2012 07:54:38 +0000"},"source":"<a href=\"http://www.socialoomph.com\" rel=\"nofollow\">SocialOomph</a>","created_at":"Fri, 30 May 2014 16:25:13 +0000"}}}
+{"demographic":{"gender":"mostly_male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"rsheiner","name":"Ryan Sheiner","id":261076056,"avatar":"http://pbs.twimg.com/profile_images/2341475014/image_normal.jpg","link":"http://twitter.com/rsheiner","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:15 +0000","received_at":1.4014687355899E9,"content":"RT @sh130toll: This time next week, #XGames will have taken over #Austin!! @XGamesAustin http://t.co/eNQdf7JdDv","id":"1e3e81ac0a3ca980e074a5971ce35bd8","link":"http://twitter.com/rsheiner/status/472420231462531073","mentions":["XGamesAustin","sh130toll"],"mention_ids":[1392537247],"hashtags":["XGames","Austin"]},"klout":{"score":23},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"id":"472420231462531073","retweet":{"text":"This time next week, #XGames will have taken over #Austin!! @XGamesAustin http://t.co/eNQdf7JdDv","id":"472420231462531073","user":{
 "name":"Ryan Sheiner","statuses_count":2507,"followers_count":61,"friends_count":112,"screen_name":"rsheiner","profile_image_url":"http://pbs.twimg.com/profile_images/2341475014/image_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2341475014/image_normal.jpg","lang":"en","listed_count":0,"id":261076056,"id_str":"261076056","geo_enabled":true,"verified":false,"favourites_count":625,"created_at":"Sat, 05 Mar 2011 05:23:05 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":9,"created_at":"Fri, 30 May 2014 16:52:15 +0000","mentions":["XGamesAustin","sh130toll"],"mention_ids":[1392537247],"hashtags":["XGames","Austin"],"media":[{"id":472360294661251072,"id_str":"472360294661251072","media_url":"http://pbs.twimg.com/media/Bo4pL3FIYAAPxDH.png","media_url_https":"https://pbs.twimg.com/media/Bo4pL3FIYAAPxDH.png","url":"http://t.co/eNQdf7JdDv","display_url":"pic.twitter.com/eNQdf7JdDv","expanded_url":"
 http://twitter.com/sh130toll/status/472360295747170305/photo/1","type":"photo","sizes":{"medium":{"w":599,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":337,"h":125,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"472360295747170305","user":{"name":"SH 130","url":"http://mysh130.com","description":"A better way between Austin and San Antonio. A new choice for Central Texas motorists. The fastest way to Circuit of the Americas. #CanYouLoveARoad","location":"Central Texas","statuses_count":1190,"followers_count":617,"friends_count":387,"screen_name":"sh130toll","profile_image_url":"http://pbs.twimg.com/profile_images/451832502005403648/IBMl8_Mz_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/451832502005403648/IBMl8_Mz_normal.png","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":17,"id":813811567,"id_str":"813811567","geo_enabled":false,"verifie
 d":false,"favourites_count":1065,"created_at":"Sun, 09 Sep 2012 20:11:32 +0000"},"source":"web","created_at":"Fri, 30 May 2014 12:54:05 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"hernanl29","name":"HL VR46","id":164058521,"avatar":"http://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg","link":"http://twitter.com/hernanl29","language":"es"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:35 +0000","received_at":1.4014686959523E9,"content":"RT @MotoGP: #MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"1e3e81aa8cc4a580e0745f400262dbce","link":"http://twitter.com/hernanl29/status/472420066110500865","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"hashtags":["MotoGP"]},"klout":{"score":27},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:22:57 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["The official website of MotoGP, Moto2 and Mo
 to3, includes Live Video coverage, premium content and all the latest news."],"keywords":[["MotoGP World Championship","MotoGP","Moto2","Moto3","Official Website","motogp.com","Live Video","Live Timing","Live Experience","High Resolution","VideoPass","Valentino Rossi","Marc Marquez","Honda","Jorge Lorenzo","Motorbike","race tickets","paddock girls","vip village","Calendar","after the flag","no spoiler","Time Schedule","News","RSS","BMW","Tissot","Aperol","Bridgestone","Dani Pedrosa","Casey Stoner","Toni Elias"]],"lang":["en"],"opengraph":[{"title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."}],"twitter":[{"card":"summary","site":"@motogp","url":"http://www.motogp.com/en/photos/latest photos","title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."}]
 },"normalized_url":["http://motogp.com/en/photos/latest+photos"],"retweet_count":[0],"title":["motogp.com · Latest Photos"],"url":["http://www.motogp.com/en/photos/latest+photos"]},"twitter":{"id":"472420066110500865","retweet":{"text":"#MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"472420066110500865","user":{"name":"HL VR46","description":"VR46 fan","location":"Venezuela","statuses_count":2696,"followers_count":272,"friends_count":691,"screen_name":"hernanl29","profile_image_url":"http://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg","lang":"es","time_zone":"Caracas","utc_offset":-16200,"listed_count":3,"id":164058521,"id_str":"164058521","geo_enabled":false,"verified":false,"favourites_count":81,"created_at":"Wed, 07 Jul 2010 23:18:59 +0000"},"source":"
 <a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":476,"created_at":"Fri, 30 May 2014 16:51:35 +0000","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"links":["http://www.motogp.com/en/photos/latest+photos"],"display_urls":["motogp.com/en/photos/late…"],"domains":["www.motogp.com"],"hashtags":["MotoGP"],"media":[{"id":472412807162769408,"id_str":"472412807162769408","media_url":"http://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","url":"http://t.co/vynRa1k4zI","display_url":"pic.twitter.com/vynRa1k4zI","expanded_url":"http://twitter.com/MotoGP/status/472412808504967168/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}],"filter_level":"low","lang":"en"},"retweeted":{"id":"472412808504967168","user":{"name":"Mot
 oGP™","url":"http://www.motogp.com","description":"Official Twitter Feed of the MotoGP™ World Championship","location":"All around the world","statuses_count":15839,"followers_count":945261,"friends_count":403,"screen_name":"MotoGP","profile_image_url":"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":7411,"id":14082692,"id_str":"14082692","geo_enabled":true,"verified":true,"favourites_count":3,"created_at":"Wed, 05 Mar 2008 11:19:05 +0000"},"source":"web","created_at":"Fri, 30 May 2014 16:22:45 +0000"}}}
+{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"EscofolioDotCom","name":"Carlos Escobar","id":21428353,"avatar":"http://pbs.twimg.com/profile_images/81857694/Mguin_normal.jpg","link":"http://twitter.com/EscofolioDotCom","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:21 +0000","received_at":1.4014687421976E9,"content":"RT @chrispape: Make your picks for #TBTOpen $500,000 winner take all basketball hunger games.  #tbt4 mypicks - Barstool philly, Suds, Showtime and Eberlein","id":"1e3e81ac4375a080e074fd2fb55fee7e","link":"http://twitter.com/EscofolioDotCom/status/472420260210286592","mentions":["chrispape"],"hashtags":["TBTOpen","tbt4"]},"klout":{"score":23},"language":{"tag":"en","tag_extended":"en","confidence":99},"twitter":{"id":"472420260210286592","retweet":{"text":"Make your picks for #TBTOpen $500,000 winner take all basketball hunger games.  #tbt4 mypicks - Barstool philly, Suds,
  Showtime and Eberlein","id":"472420260210286592","user":{"name":"Carlos Escobar","description":"I make things for the internet","location":"Quincy, Massachusetts","statuses_count":641,"followers_count":143,"friends_count":215,"screen_name":"EscofolioDotCom","profile_image_url":"http://pbs.twimg.com/profile_images/81857694/Mguin_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/81857694/Mguin_normal.jpg","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":13,"id":21428353,"id_str":"21428353","geo_enabled":true,"verified":false,"favourites_count":30,"created_at":"Fri, 20 Feb 2009 20:08:44 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":1,"created_at":"Fri, 30 May 2014 16:52:21 +0000","mentions":["chrispape"],"hashtags":["TBTOpen","tbt4"],"filter_level":"low","lang":"en"},"retweeted":{"id":"472417617568079872","user":{"name":"Chris Pape","url":"http://www.gen
 uineinteractive.com","description":"Founder, Executive Creative Director at Genuine","location":"ÜT: 41.287813,-72.527655","statuses_count":1124,"followers_count":3598,"friends_count":2806,"screen_name":"chrispape","profile_image_url":"http://pbs.twimg.com/profile_images/392850661/Cpape_Headshot_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/392850661/Cpape_Headshot_normal.jpg","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":139,"id":24547356,"id_str":"24547356","geo_enabled":true,"verified":false,"favourites_count":49,"created_at":"Sun, 15 Mar 2009 16:42:28 +0000"},"source":"web","created_at":"Fri, 30 May 2014 16:41:51 +0000"}}}
+{"interaction":{"schema":{"version":3},"source":"Instagram","author":{"username":"DirtHammers","name":"Dirt Hammers.com","id":246593057,"avatar":"http://pbs.twimg.com/profile_images/460581097060196352/f_G1s6vl_normal.jpeg","link":"http://twitter.com/DirtHammers","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:23 +0000","received_at":1.4014687435894E9,"content":"Wicked looking track ironmanmx preview by jedi25 #mx #motocross #moto http://t.co/JSrrQS2JXs","id":"1e3e81ac5687ad80e074bc8dc2a4d122","link":"http://twitter.com/DirtHammers/status/472420266484576256","hashtags":["mx","motocross","moto"]},"klout":{"score":4

<TRUNCATED>

[05/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
new file mode 100644
index 0000000..977ed70
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
@@ -0,0 +1,7 @@
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/justmekkb","name":"justmekkb","username":"justmekkb"},"content":"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \nProvince!\uFEFF","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:06:10 +0000","id":"1e3b28be72e0ad00e072d00a0815e3b6","link":"http:\/\/www.youtube.com\/all_comments?v=30FuTYnnXmM","received_at":4743642843909958769,"schema":{"version":3},"subtype":"comment","title":"Apache Snow II: ...","type":"youtube"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/justmekkb","name":"justmekkb","username":"justmekkb"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=30FuTYnnXmM","content":"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \nProvince!\uFEFF","contenttype":"html","crawled":"Sun, 30 Mar 2014 13:49:36 +0000","created_at":"Sun, 23 Mar 2014 13:06:10 +0000","domain":"
 www.youtube.com","id":"1571681202","lang":"en","langid":22,"link":"http:\/\/www.youtube.com\/all_comments?v=30FuTYnnXmM","robots_disallowed":"no","site_commentid":"z12of13o5wixs3qde22ixfnxytfjgftpi04","siteid":"youtube","title":"Apache Snow II: ...","type":"comment","videoid":"5cuajavn6pjal18jnh1sp3","videolink":"http:\/\/www.youtube.com\/watch?v=30FuTYnnXmM"}}
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/redman1808","name":"REDMAN1808","username":"redman1808"},"content":"Apache Knife Graduation 3-23-2014\nwww.Apache-Knife.com\uFEFF","contenttype":"html","created_at":"Tue, 25 Mar 2014 23:29:01 +0000","id":"1e3b4753edb9ac80e0722abeeb9c452c","link":"http:\/\/www.youtube.com\/all_comments?v=W0vcwufX9OM","schema":{"version":3},"subtype":"comment","title":"Apache Knife ...","type":"youtube"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/redman1808","name":"REDMAN1808","username":"redman1808"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=W0vcwufX9OM","content":"Apache Knife Graduation 3-23-2014\nwww.Apache-Knife.com\uFEFF","contenttype":"html","crawled":"Wed, 02 Apr 2014 00:23:13 +0000","created_at":"Tue, 25 Mar 2014 23:29:01 +0000","domain":"www.youtube.com","id":"1573452031","lang":"de","langid":31,"link":"http:\/\/www
 .youtube.com\/all_comments?v=W0vcwufX9OM","robots_disallowed":"no","site_commentid":"z12ad53pimmefroo504ccbkitvjmzft4lwg0k","siteid":"youtube","title":"Apache Knife ...","type":"comment","videoid":"7cdig0ofjq8ls18jv5ftid","videolink":"http:\/\/www.youtube.com\/watch?v=W0vcwufX9OM"}}
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/zja4ri3hkdviwos3sv_lsg","name":"zja4ri3hkdviwos3sv_lsg","username":"zja4ri3hkdviwos3sv_lsg"},"content":"Grande Apache, davvero un gran colpo ;)\uFEFF","contenttype":"html","created_at":"Thu, 27 Mar 2014 16:18:25 +0000","id":"1e3b5cb6c3a5ae80e072504981b43950","link":"http:\/\/www.youtube.com\/all_comments?v=bsCvwYmwwiQ","schema":{"version":3},"subtype":"comment","title":"Grande Apache, ...","type":"youtube"},"language":{"confidence":97,"tag":"it","tag_extended":"it"},"youtube":{"author":{"link":"http:\/\/youtube.com\/zja4ri3hkdviwos3sv_lsg","name":"zja4ri3hkdviwos3sv_lsg","username":"zja4ri3hkdviwos3sv_lsg"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=bsCvwYmwwiQ","content":"Grande Apache, davvero un gran colpo ;)\uFEFF","contenttype":"html","crawled":"Fri, 28 Mar 2014 13:44:20 +0000","created_at":"Thu, 27 Mar 2014 16:18:25 +0000","domain":"www.youtube.com","id":"1570252147","lang":"it","langid":42,"link":"http:\/\/
 www.youtube.com\/all_comments?v=bsCvwYmwwiQ","robots_disallowed":"no","site_commentid":"z12kud2xxqy1vdb1a22twvzh0lmatvjet","siteid":"youtube","title":"Grande Apache, ...","type":"comment","videoid":"5n634p8c4591818k1ov5g5","videolink":"http:\/\/www.youtube.com\/watch?v=bsCvwYmwwiQ"}}
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/cejowdum4lewo0p3dsv2ya","name":"cejowdum4lewo0p3dsv2ya","username":"cejowdum4lewo0p3dsv2ya"},"content":"Grande apache! Dove abiti?\uFEFF","contenttype":"html","created_at":"Thu, 27 Mar 2014 16:25:30 +0000","id":"1e3b5cc698c3a900e072da410d1cba80","link":"http:\/\/www.youtube.com\/all_comments?v=KJ2ovwkoFVw","received_at":4743644290448849319,"schema":{"version":3},"subtype":"comment","title":"Grande apache! Dove ...","type":"youtube"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/cejowdum4lewo0p3dsv2ya","name":"cejowdum4lewo0p3dsv2ya","username":"cejowdum4lewo0p3dsv2ya"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=KJ2ovwkoFVw","content":"Grande apache! Dove abiti?\uFEFF","contenttype":"html","crawled":"Thu, 03 Apr 2014 13:37:42 +0000","created_at":"Thu, 27 Mar 2014 16:25:30 +0000","domain":"
 www.youtube.com","id":"1574460814","lang":"unknown","link":"http:\/\/www.youtube.com\/all_comments?v=KJ2ovwkoFVw","robots_disallowed":"no","site_commentid":"z133eviq3rquwfwp004ciptogzfwxzvy4w00k","siteid":"youtube","title":"Grande apache! Dove ...","type":"comment","videoid":"6ggq0sgl06i3318k44l1tr","videolink":"http:\/\/www.youtube.com\/watch?v=KJ2ovwkoFVw"}}
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/tsunx4","name":"tsunx4","username":"tsunx4"},"content":"Sinnis Apache 125 - \u043A\u0438\u0442\u0430\u0439\u0441\u043A\u0430\u044F \u043A\u043E\u043F\u0438\u044F Suzuki DR125\uFEFF","contenttype":"html","created_at":"Sun, 30 Mar 2014 20:53:00 +0000","id":"1e3b84d47551ae00e07213c00f9208ca","link":"http:\/\/www.youtube.com\/all_comments?v=5mNtz3z-LwM","received_at":4743645206479298049,"schema":{"version":3},"subtype":"comment","title":"Sinnis Apache 125 - ...","type":"youtube"},"language":{"confidence":52,"tag":"ru","tag_extended":"ru"},"youtube":{"author":{"link":"http:\/\/youtube.com\/tsunx4","name":"tsunx4","username":"tsunx4"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=5mNtz3z-LwM","content":"Sinnis Apache 125 - \u043A\u0438\u0442\u0430\u0439\u0441\u043A\u0430\u044F \u043A\u043E\u043F\u0438\u044F Suzuki DR125\uFEFF","contenttype":"html","crawled":"Sun, 06 Apr 2014 02:17:33 +0000","created_at":"Sun, 30 Mar 2014 2
 0:53:00 +0000","domain":"www.youtube.com","id":"1575948688","lang":"ru","langid":65,"link":"http:\/\/www.youtube.com\/all_comments?v=5mNtz3z-LwM","robots_disallowed":"no","site_commentid":"z13ztrsy2kmtxrxqp04cg5hqjrqjczdjbj0","siteid":"youtube","title":"Sinnis Apache 125 - ...","type":"comment","videoid":"6a4b6ht4qnqg518k8buu8c","videolink":"http:\/\/www.youtube.com\/watch?v=5mNtz3z-LwM"}}
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/thepaulobraveheart","name":"ThePaulobraveheart","username":"thepaulobraveheart"},"content":"Boeing AH-64 Apache Longbow Attack Helicopter\uFEFF","contenttype":"html","created_at":"Thu, 03 Apr 2014 00:28:14 +0000","id":"1e3bac6d7ea6a300e0728131423302cc","link":"http:\/\/www.youtube.com\/all_comments?v=u4Z590EW3Jg","schema":{"version":3},"subtype":"comment","title":"Boeing AH-64 Apache ...","type":"youtube"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Boeing","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0},"title":{"entities":[{"name":"Boeing","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/thepaulobraveheart","name":"ThePaulobraveheart","username":"thepaulobraveheart"},"commentslink":"http:\/\/www.youtube.com\/
 all_comments?v=u4Z590EW3Jg","content":"Boeing AH-64 Apache Longbow Attack Helicopter\uFEFF","contenttype":"html","crawled":"Thu, 10 Apr 2014 01:30:06 +0000","created_at":"Thu, 03 Apr 2014 00:28:14 +0000","domain":"www.youtube.com","id":"1578410306","lang":"unknown","link":"http:\/\/www.youtube.com\/all_comments?v=u4Z590EW3Jg","robots_disallowed":"no","site_commentid":"z13dsduxvsrzxpvrl04cddjiqzarhviz1vs0k","siteid":"youtube","title":"Boeing AH-64 Apache ...","type":"comment","videoid":"54geaa757jd6u18kijirss","videolink":"http:\/\/www.youtube.com\/watch?v=u4Z590EW3Jg"}}
+{"interaction":{"author":{"link":"http:\/\/youtube.com\/sqnaq_zotxi6axlutgp_ka","name":"sqnaq_zotxi6axlutgp_ka","username":"sqnaq_zotxi6axlutgp_ka"},"content":"Apache ft El Abusador de verso Lapiz calle\uFEFF","contenttype":"html","created_at":"Sat, 12 Apr 2014 14:32:27 +0000","id":"1e3c24f452c8af80e07269b9f7db9568","link":"http:\/\/www.youtube.com\/all_comments?v=ErKMJcM8H2U","received_at":4743648098787195355,"schema":{"version":3},"subtype":"comment","title":"Apache ft El ...","type":"youtube"},"language":{"confidence":97,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/sqnaq_zotxi6axlutgp_ka","name":"sqnaq_zotxi6axlutgp_ka","username":"sqnaq_zotxi6axlutgp_ka"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=ErKMJcM8H2U","content":"Apache ft El Abusador de verso Lapiz calle\uFEFF","contenttype":"html","crawled":"Mon, 14 Apr 2014 01:51:24 +0000","created_at":"Sat, 12 Apr 2014 14:32:27 +0000","domain":
 "www.youtube.com","id":"1580763243","lang":"unknown","link":"http:\/\/www.youtube.com\/all_comments?v=ErKMJcM8H2U","robots_disallowed":"no","site_commentid":"z12qwfdjwte1gbjix04chfjpknihvbybt5s","siteid":"youtube","title":"Apache ft El ...","type":"comment","videoid":"75sq7rhi8thf118kvgcg6l","videolink":"http:\/\/www.youtube.com\/watch?v=ErKMJcM8H2U"}}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
----------------------------------------------------------------------
diff --git a/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java b/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
index 7ea82b6..ff72e1b 100644
--- a/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
+++ b/streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProviderTask.java
@@ -130,8 +130,8 @@ public class StreamsProviderTask extends BaseStreamsTask implements DatumStatusC
                             }
                             flushResults(resultSet);
                             // the way this works needs to change...
-//                            if(zeros > maxZeros)
-//                                this.keepRunning.set(false);
+                            if(zeros > maxZeros)
+                                this.keepRunning.set(false);
                             Thread.sleep(DEFAULT_SLEEP_TIME_MS);
                         } catch (InterruptedException e) {
                             this.keepRunning.set(false);


[45/45] git commit: Merge PR#36 from rbnks 'rbnks/STREAMS-105'

Posted by mf...@apache.org.
Merge PR#36 from rbnks 'rbnks/STREAMS-105'


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/c7cbecdc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/c7cbecdc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/c7cbecdc

Branch: refs/heads/master
Commit: c7cbecdcd3e7fd5cf754d7ba3720a377e4e10a42
Parents: bce1657 7d9ee34
Author: mfranklin <mf...@apache.org>
Authored: Mon Jun 23 14:04:49 2014 -0400
Committer: mfranklin <mf...@apache.org>
Committed: Mon Jun 23 14:04:49 2014 -0400

----------------------------------------------------------------------
 .../provider/DatasiftStreamConfigurator.java    |    2 +-
 .../provider/DatasiftStreamProvider.java        |    2 +-
 .../DatasiftTypeConverterProcessor.java         |   75 +-
 .../serializer/DatasiftActivitySerializer.java  |  209 +-
 .../DatasiftDefaultActivitySerializer.java      |  211 +
 .../DatasiftTweetActivitySerializer.java        |  234 +
 .../main/jsonschema/com/datasift/Datasift.json  |   44 +-
 .../com/datasift/test/DatasiftSerDeTest.java    |   19 +-
 .../DatasiftTypeConverterProcessorTest.java     |    2 +-
 .../DatasiftActivitySerializerTest.java         |   74 +
 .../src/test/resources/amazon_datasift_json.txt |   10 +
 .../src/test/resources/blog_datasift_json.txt   |  719 +++
 .../src/test/resources/board_datasift_json.txt  | 4160 ++++++++++++++++++
 .../test/resources/facebook_datasift_json.txt   | 1843 ++++++++
 .../src/test/resources/part-r-00000.json        | 1724 ++++----
 .../resources/rand_sample_datasift_json.txt     | 1547 +++++++
 .../resources/random_sample_datasift_json.txt   | 1547 +++++++
 .../src/test/resources/reddit_datasift_json.txt |   33 +
 .../test/resources/twitter_datasift_json.txt    | 1000 +++++
 .../test/resources/wikipedia_datasift_json.txt  |  252 ++
 .../test/resources/youtube_datasift_json.txt    |    7 +
 .../apache/streams/data/util/RFC3339Utils.java  |    5 +
 .../jackson/StreamsDateTimeDeserializer.java    |    2 +-
 23 files changed, 12660 insertions(+), 1061 deletions(-)
----------------------------------------------------------------------



[23/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
index 96f5174..426faef 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/rand_sample_datasift_json.txt
@@ -1,1547 +1,1547 @@
-{"amazon":{"anchor":"533193","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br />\n<br />\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\nI'm running a single instance PHP 5.5 environment.<br />\n<br />\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\n<br />\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br /
 >\n<br />\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\n<br />\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\n<br />\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\n<br />\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\n(SSLRequireSSL takes precedence over Auth.)<br />\n<br />\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https://\">https://</a> domain.<br />\n<br />\nI guess it has to do with the proxy setup?:<br />\n<pre class=\"jive-pre\"><code class=\"jive
 -code jive-java\">ProxyPass / http:<font color=\"darkgreen\">//localhost:80/ retry=0</font>\nProxyPassReverse / http:<font color=\"darkgreen\">//localhost:80/</font>\nProxyPreserveHost on\n</code></pre><br />\nIs there anyway I can get this to work?<br />\n<br />\nThanks!<br />\n<br />\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\n<br />\n\n                </div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","foru
 mid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193","links":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n          
       Hi there,<br />\n<br />\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\nI'm running a single instance PHP 5.5 environment.<br />\n<br />\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\n<br />\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\n<br />\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\n<br />\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authenticati
 on.<br />\n<br />\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\n<br />\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\n(SSLRequireSSL takes precedence over Auth.)<br />\n<br />\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https://\">https://</a> domain.<br />\n<br />\nI guess it has to do with the proxy setup?:<br />\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass / http:<font color=\"darkgreen\">//localhost:80/ retry=0</font>\nProxyPassReverse / http:<font color=\"darkgreen\">//localhost:80/</font>\nProxyPreserveHost on\n</code></pre><br />\nIs there anyway I can get this to work?<br />\n<br />\nThanks!<br />\n<br />\nps: I tried both the 2013.09 
 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\n<br />\n\n                </div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 0
 1 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text/html","text/html","text/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.Singl
 eInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html","http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
-{"amazon":{"anchor":"533271","author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https://forums.aws.amazon.com/fo
 rum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https://forums.aws.amazon.com/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL 
 directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
-{"blog":{"atomversion":"1.0","author":{"name":"basyura"},"blog":{"link":"http://d.hatena.ne.jp/basyura/","title":"basyura's blog"},"blogid":"55821125","content":"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass /sample http://localhost:3000/sample\n  ProxyPassReverse /sample http://localhost:3000/sample\n</VirtualHost></pre><p>config/environments/development.rb</p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"</span><span class=\"synConstant\">/sample</span><span class=\"synSpecial\">\"</span>\n</pre><p>起動</p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \"/sample/assets/\"</code> と定義すればいいのかと思ってたけど違ったみ
 たい。こっちはどういう時に使うのかよく分からんかった。</p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","domain":"d.hatena.ne.jp","guid":"1e2c1f54e6c6548c4381b6e9a6361cea","id":"1e3b279c65cbac00e0729be4b09bfd5c","lang":"ja","link":"http://blog.basyura.org/entry/2014/03/23/195624","links":["http://localhost:3000","http://localhost/sample","http://localhost:3000/sample"],"parseddate":"Sun, 23 Mar 2014 15:32:03 +0000","postid":"1426a00d-f33f-4144-b396-5160bda65a31","title":"apache + rails をサブディレクトリで動かしたい","type":"post","updated":"Sun, 23 Mar 2014 10:56:24 +0000"},"interaction":{"author":{"name":"basyura"},"content":"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass /sample http://localhost:3000/sample\n  ProxyPassReverse /sample http://localhost:3000/sample\
 n</VirtualHost></pre><p>config/environments/development.rb</p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"</span><span class=\"synConstant\">/sample</span><span class=\"synSpecial\">\"</span>\n</pre><p>起動</p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \"/sample/assets/\"</code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","id":"1e3b279c65cbac00e0729be4b09bfd5c","link":"http://blog.basyura.org/entry/2014/03/23/195624","schema":{"version":3},"subtype":"post","title":"apache + rails をサブディレクトリで動かしたい","type":"blog"},"language":{"confidence":49,"tag":"ja","tag_extended":"ja"},"links":{"code":[40
 4],"created_at":["Sun, 23 Mar 2014 15:41:17 +0000"],"hops":[["http://localhost/sample"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["http://localhost/sample"]}}
-{"blog":{"author":{"name":"FunPonsel"},"blog":{"link":"http://funponsel.org/","title":"PonSeL Indonesia."},"blogid":"71176595","content":"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","domain":"funponsel.org","guid":"0633391e1e9c865bb976c4605ca9d22f","id":"1e3b2b3b5c93a780e072555ff59c6636","lang":"id","link":"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","parseddate":"Sun, 23 Mar 2014 19:07:40 +0000","postid":"df16f773-3ac0-4de5-9e15-2923aac2b119","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"author":{"name":"FunPonsel"},"content
 ":"Jakarta -4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu […]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","id":"1e3b2b3b5c93a780e072555ff59c6636","link":"http://funponsel.org/33180/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","schema":{"version":3},"subtype":"post","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
-{"blog":{"author":{"name":"hh58"},"blog":{"link":"http://blog.sina.com.cn/hu263","title":"hh58"},"blogid":"73188486","content":"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源协议。<br />\n\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。<br />\n<br />\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\n\n但”为所欲为”的前提当�
 ��发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\n\n原来代码中的BSD协议。<br />\n3. 不可以用开源代码的作者/机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\n\nApache Licence 2.0(Apache License, Version 2.0、Apache
  License, Version 1.1、Apache License, Version 1.0)<br />\n\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\n\n1. 需要给代码的用户一份Apache Licence<br />\n2. 如果你修改了代码,需要再被修改的文件中说明。<br />\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\n标,专利声明和其他原来作者规定需要包含的说明。<br />\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\n\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\n\nApache Licence也是对商业应用友好的许可。使用者也可以在需要的时候修�
 �代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\n\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\n\nGPL协议的主要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问题,还可以享受免费的优势。<br />\n\n由于
 GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\n\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\n<br />\nLGPL(GNU Lesser General Public License)<br />\n\nLGPL是GPL的一个为主要为类库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需要开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\n\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因此LGPL协议的开源代码很适合作为第三方类库被商�
 �软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\n\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\n\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\n\n<br />\n<br />\nReference: 百度百科<br />\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\n\n<br /><br /><img src=\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\"> <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\" target=\"_bl
 ank\">青春就应该这样绽放</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\" target=\"_blank\">你不得不信的星座秘密</a><img src=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Mon, 24 Mar 2014 03:14:12 +0000","domain":"blog.sina.com.cn","guid":"672664163c8d436f36cd797e5134ac78","id":"1e3b3025f371aa00e072242f15612c08","lang":"zh-cn","link":"http://blog.sina.com.cn/s
 /blog_844c1d8b0101fv02.html","links":["http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD","http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"parseddate":"Fri, 28 Mar 2014 18:25:03 +0000","postid":"7fc3321c-ce75-43af-9b5a-24486d45df88","title":"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)","type":"post"},"interaction":{"author":{"name":"hh58"},"content":"现今存在的开源协议很多,而经过Open Source Initiative组织通过批准的开源协议目前有58种(http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD, GPL, LGPL,MIT等都是OSI批准的协议。如果要开源自己的代码,最好也是选择这些被批准的开源协议。<br />\n\n这里我们来看四种最常用的开源协议及它们的适用范围,供那些准备开源或者使用开源产品的开发人员/厂家参考。
 <br />\n<br />\nBSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。<br />\n\n但”为所欲为”的前提当你发布使用了BSD协议的代码,或则以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件:<br />\n1. 如果再发布的产品中包含源代码,则在源代码中必须带有原来代码中的BSD协议。 2. 如果再发布的只是二进制类库/软件,则需要在类库/软件的文档和版权声明中包含<br />\n\n原来代码中的BSD协议。<br />\n3. 不可以用开源代码的作者/机构名字和原来产品的名字做市场推广。 BSD 代码鼓励代码共享,但需要尊重代码作者的著作权。BSD由于允许使用者修改和重新发布代
 码,也允许使用或在BSD代码上开发商业软件发布和销售,因此是对商业集成很友好的协议。而很多的公司企业在选用开源产品的时候都首选BSD协议,因为可以完全控制这些第三方的代码,在必要的时候可以修改或者二次开发。<br />\n\nApache Licence 2.0(Apache License, Version 2.0、Apache License, Version 1.1、Apache License, Version 1.0)<br />\n\nApache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布(作为开源或商业软件)。需要满足的条件也和BSD类似:<br />\n\n1. 需要给代码的用户一份Apache Licence<br />\n2. 如果你修改了代码,需要再被修改的文件中说明。<br />\n3. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商<br />\n标,专利声明和其他�
 �来作者规定需要包含的说明。<br />\n4. 如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有Apache<br />\n\nLicence。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。<br />\n\nApache Licence也是对商业应用友好的许可。使用者也可以在需要的时候修改代码来满足需要并作为开源或商业产品发布/销售。 GPL(GNU General Public License)<br />\n\n我们很熟悉的Linux就是采用了GPL。GPL协议和BSD, Apache Licence等鼓励代码重用的许可很不一样。GPL的出发点是代码的开源/免费使用和引用/修改/衍生代码的开源/免费使用,但不允许修改后和衍生的代码做为闭源的商业软件发布和销售。这也就是为什么我们能用免费的各种linux,包括商业公司的linux和linux上各种各样的由个人,组织,以及商业软件公司开发的免费软件了。<br />\n\nGPL协议的�
 �要内容是只要在一个软件中使用(“使用”指类库引用,修改后的代码或者衍生代码)GPL 协议的产品,则该软件产品必须也采用GPL协议,既必须也是开源和免费。这就是所谓的”传染性”。GPL协议的产品作为一个单独的产品使用没有任何问题,还可以享受免费的优势。<br />\n\n由于GPL严格要求使用了GPL类库的软件产品必须使用GPL协议,对于使用GPL协议的开源代码,商业软件或者对代码有保密要求的部门就不适合集成/采用作为类库和二次开发的基础。<br />\n\n其它细节如再发布的时候需要伴随GPL协议等和BSD/Apache等类似。<br />\n<br />\nLGPL(GNU Lesser General Public License)<br />\n\nLGPL是GPL的一个为主要为类库使用设计的开源协议。和GPL要求任何使用/修改/衍生之GPL类库的的软件必须采用GPL协议不同。LGPL允许商业软件通过类库引用(link)方式使用LGPL类库而不需�
 ��开源商业软件的代码。这使得采用LGPL协议的开源代码可以被商业软件作为类库引用并发布和销售。<br />\n\n但是如果修改LGPL协议的代码或者衍生,则所有修改的代码,涉及修改部分的额外代码和衍生的代码都必须采用LGPL协议。因此LGPL协议的开源代码很适合作为第三方类库被商业软件引用,但不适合希望以LGPL协议代码为基础,通过修改和衍生的方式做二次开发的商业软件采用。<br />\n\nGPL/LGPL都保障原作者的知识产权,避免有人利用开源代码复制并开发类似的产品 MIT(MIT)<br />\n\nMIT是和BSD一样宽范的许可协议,作者只想保留版权,而无任何其他了限制.也就是说,你必须在你的发行版里包含原许可协议的声明,无论你是以二进制发布的还是以源代码发布的. <br />\n\n<br />\n<br />\nReference: 百度百科<br />\nhttp://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4s
 zYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br />\n\n<br /><br /><img src=\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\"> <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\" target=\"_blank\">青春就应该这样绽放</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\" target=\"_blank\">你不得不信的星座秘密</a><img src=\"http://sina.allyes.com/main/adfclick?db=sina&bid=20472
 0,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Mon, 24 Mar 2014 03:14:12 +0000","id":"1e3b3025f371aa00e072242f15612c08","link":"http://blog.sina.com.cn/s/blog_844c1d8b0101fv02.html","schema":{"version":3},"subtype":"post","title":"五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)","type":"blog"},"language":{"confidence":82,"tag":"zh","tag_extended":"zh-cn"},"links":{"code":[404,200],"created_at":["Fri, 28 Mar 2014 18:36:08 +0000","Fri, 28 Mar 2014 18:36:11 +0000"],"hops":[["http://www.opensource.org/licenses/alphabetical)。我们在常见的开源协议如BSD","http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD"],[]],"meta":{"charset":["","GB2312"],"content_type":["","text/html"],"description":["","在线互动式文档分享平台,在
 这里,您可以和千万网友分享自己手中的文档,全文阅读其他用户的文档,同时,也可以利用分享文档获取的积分下载文档"],"lang":["","unknown"]},"normalized_url":[null,"http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"retweet_count":[0,0],"title":["null","五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)_百度文库"],"url":["http://opensource.org/licenses/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD","http://wenku.baidu.com/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"]}}
-{"blog":{"author":{"name":"Reset"},"blog":{"link":"http://linux.org.ru/","title":"Linux.org.ru: Новости"},"blogid":"42212478","content":"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мегабайт записей в секунду.\n</li><li> Масштабируемость: кластер можно прозрачно расширять без простоя, потоки данных партицированы.\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в производительност
 и.\n</li></ul><p>Изменения в версии 0.8.1:\n</p><ul><li> Поддержка дедупликации логов.\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\n</li><li> Поддержка расширения числа партиций и удаления топиков.\n</li><li> Автоматическая балансировка лидеров партиций.\n</li><li> Багфиксы.\n</li></ul><p><a href=\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\">Новое в версии 0.8.1</a><br>\n<a href=\"http://kafka.apache.org/downloads.html\">Скачать</a>\n</p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i class=\"icon-tag\"></i> <a class=tag rel=tag href=\"/tag/apache\">apache</a>, <a class=tag rel=tag href=\"/tag/kafka\">kafka</a></p><img src=\"http://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\" height=\"1\" wid
 th=\"1\"/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","domain":"linux.org.ru","guid":"c8e402c6f69616765379b32b6edf23d6","id":"1e3b3148d255aa00e072d1c6eda76db0","lang":"ru","link":"http://www.linux.org.ru/news/opensource/10310499","parseddate":"Mon, 24 Mar 2014 07:36:23 +0000","postid":"ad06b468-00fd-4934-858a-758a5d1d80c9","title":"Вышла новая версия Apache Kafka","type":"post"},"interaction":{"author":{"name":"Reset"},"content":"<p>Apache Kafka — это распределенная система передачи сообщений, рассчитанная на высокую пропускную способность.</p><p>Ключевые особенности системы:\n</p><ul><li> Скорость: один узел кластера может обрабатывать сотни мегабайт записей в секунду.\n</li><li> Масштабируемость: кластер можно прозрачно ра�
 �ширять без простоя, потоки данных партицированы.\n</li><li> Надежность: сообщения в кластере отреплицированы, каждый узел может держать терабайты данных без потерь в производительности.\n</li></ul><p>Изменения в версии 0.8.1:\n</p><ul><li> Поддержка дедупликации логов.\n</li><li> Увеличение скорость записи за счет более рационального использования fsync.\n</li><li> Поддержка расширения числа партиций и удаления топиков.\n</li><li> Автоматическая балансировка лидеров партиций.\n</li><li> Багфиксы.\n</li></ul><p><a href=\"http://blog.empathybox.com/post/79427855885/whats-new-in-kafka-0-8-1\">Новое в версии 0.8.1</a><br>\n<a href=
 \"http://kafka.apache.org/downloads.html\">Скачать</a>\n</p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i class=\"icon-tag\"></i> <a class=tag rel=tag href=\"/tag/apache\">apache</a>, <a class=tag rel=tag href=\"/tag/kafka\">kafka</a></p><img src=\"http://feeds.feedburner.com/~r/org/LOR/~4/0Cl5cgvj20E\" height=\"1\" width=\"1\"/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","id":"1e3b3148d255aa00e072d1c6eda76db0","link":"http://www.linux.org.ru/news/opensource/10310499","schema":{"version":3},"subtype":"post","title":"Вышла новая версия Apache Kafka","type":"blog"},"language":{"confidence":95,"tag":"ru","tag_extended":"ru"}}
-{"blog":{"author":{"name":"jay"},"blog":{"link":"http://gilamotor.com/","title":"Gilamotor Evalube"},"blogid":"56981296","category":"News,headline,Andry Berlianto,Round The Borneo,tvs apache rtr 180","content":"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17
 ,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di sep
 utaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\n\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 2\" /></a>\n<a href='http://gilamotor.com/2
 014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" /></a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","domain":"gilamotor.com","guid":"d61190c66d456eb1694e425f2f101864","id":"1e3b33725343ab00e0724a3022b9fdfe","lang":"id","link":"http://gilamotor.com/2014/0
 3/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/","parseddate":"Mon, 24 Mar 2014 09:50:09 +0000","postid":"eecec8d4-4a11-45b0-93d4-3cbfcecd5865","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"jay"},"content":"<p><strong>GILAMOTORcom –</strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.</p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.</p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalu
 i tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.</p>\n<p>“Disektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,” papar Andry Berlianto, Road Captain RTB.</p>\n<p>“Terbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,” sambung Agoy yang juga ikut dalam tim RTB.</p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau  TVSApache juga handal dijadikan motor petualang.</p>\n<p>“Project Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya
  nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,” tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.</p>\n\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-1/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-2/' title='TVS Apache RTR Round The Borneo 2'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"at
 tachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 2\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-3/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" /></a>\n<a href='http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/tvs-apache-rtr-round-the-borneo-4/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http://gilamotor.com/wp-content/uploads/2014/03/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" /></a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","id":"1e3b33725343ab00e0724a3022b9fdfe","
 link":"http://gilamotor.com/2014/03/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache/","received_at":4743640609237236502,"schema":{"version":3},"subtype":"post","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
-{"blog":{"author":{"name":"admin"},"blog":{"link":"http://www.joinebook.com/","title":"Join eBook, Free eBook Download"},"blogid":"72892858","content":"<div id=\"iframeContent\">\n<h3>Book Description</h3>\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\n<p><b>Overview</b></p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\n</ul>\n<p><b>In Detail</b></p>\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is built on top of Apache Hadoop, Zookeeper, a
 nd Thrift.</p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.</p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to sec
 ure your data.</p>\n<p><b>What you will learn from this book</b></p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\n<li>Monitor clusters – both performance and application logs</li>\n<li>Secure your data in Accumulo</li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\n<li>Integrate to various cloud platforms</li>\n<li>Use the Accumulo command-line shell</li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\n<li>Understand what tools are needed to optimize Accumulo performance</li>\n</ul>\n<p><b>Approach</b></p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\n<p><b>Who this book is written for</b></p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It’s assumed that you have a
 n understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\n<h3>Book Details</h3>\n<div>\n<ul>\n<li><b>Paperback:</b> 120 pages</li>\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\n<li><b>Language:</b> English</li>\n<li><b>ISBN-10:</b> 1783285990</li>\n<li><b>ISBN-13:</b> 978-1783285990</li>\n</ul>\n</div>\n</div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","domain":"www.joinebook.com","guid":"7e2ed225f2be5b7a8f3ee6d7defa89b3","id":"1e3b38071f03a400e072d82a1cb03a68","lang":"en","link":"http://www.joinebook.com/apache-accumulo-for-developers/","parseddate":"Tue, 25 Mar 2014 14:15:02 +0000","postid":"0b3e093d-4e84-42ca-bcb1-eb140b008ff6","title":"Apache Accumulo for Developers","type":"post"},"interaction":{"author":{"name":"admin"},"content":"<div id=\"iframeContent\">\n<h3>Book Description</h3>\n<p>Build and integrate Accumulo clusters with various cloud platforms</p>\n<p><b>Overview</b
 ></p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux</li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms</li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease</li>\n</ul>\n<p><b>In Detail</b></p>\n<p>Accumulo is a sorted and distributed key/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google’s BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift.</p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by s
 tep guide in taking full advantage of this power.</p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them.</p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.</p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data.</p>\n<p><b>What you will learn from this book</b></p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo</li>\n<li>Monitor clusters – both performance and application logs</li>\n<li>Secure your data in Accumulo</li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance</li>\n<li
 >Integrate to various cloud platforms</li>\n<li>Use the Accumulo command-line shell</li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs</li>\n<li>Understand what tools are needed to optimize Accumulo performance</li>\n</ul>\n<p><b>Approach</b></p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.</p>\n<p><b>Who this book is written for</b></p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It’s assumed that you have an understanding of how Hadoop works, both HDFS and the Map/Reduce. No prior knowledge of ZooKeeper is assumed.</p>\n<h3>Book Details</h3>\n<div>\n<ul>\n<li><b>Paperback:</b> 120 pages</li>\n<li><b>Publisher:</b> Packt Publishing (October 16, 2013)</li>\n<li><b>Language:</b> English</li>\n<li><b>ISB
 N-10:</b> 1783285990</li>\n<li><b>ISBN-13:</b> 978-1783285990</li>\n</ul>\n</div>\n</div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","id":"1e3b38071f03a400e072d82a1cb03a68","link":"http://www.joinebook.com/apache-accumulo-for-developers/","schema":{"version":3},"subtype":"post","title":"Apache Accumulo for Developers","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Apache Accumulo","sentiment":35,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"ZooKeeper","sentiment":22,"co
 nfident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"Windows","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes":["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust"]},{"name":"Linux","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes":["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical ex
 amples","value store","highly robust"]},{"name":"Amazon.com","sentiment":7,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","performance bottlenecks","cloud platforms","monitoring tools","cell-level security"]},{"name":"Google","sentiment":4,"confident":1,"label":"Company","evidence":5,"type":"Company","about":0,"themes":["real-time data storage","highly robust"]},{"name":"October 16, 2013","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0,"themes":["Book Details Paperback","prior knowledge"]}],"sentiment":2,"topics":[{"name":"Software and Internet","score":0.50457036495209,"additional":"Apache Accumulo for Developers looks at the process of setting up three systems – Hadoop, ZooKeeper, and Accumulo – and configuring, monitoring, and securing them. You will also learn to trouble
 shoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data. What you will learn from this book Set up Hadoop, ZooKeeper, and Accumulo Monitor clusters – both performance and application logs Secure your data in Accumulo Optimize Hadoop, ZooKeeper, and Accumulo performance Integrate to various cloud platforms Use the Accumulo command-line shell Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs Understand what tools are needed to optimize Accumulo performance Approach The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.","hits":0}]},"title":{"sentiment":0,"topics":[{"name":"Software and Internet","score":0.55211216211319,"additional":"Apache Accumulo for Developers","hits":0}]}}}
-{"blog":{"blog":{"link":"http://ibm.ulitzer.com/","title":"Latest News from IBM News on Ulitzer"},"blogid":"71106617","content":"<p><span class=\"xn-location\">FOREST HILL, Md.</span>, <span class=\"xn-chron\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\"http://ibm.ulitzer.com/node/3026607\" target=\"_blank\">read more</a></p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","domain":"ibm.ulitzer.com","guid":"3032fcc90b1d53e13ec24b46bf6ad3a3","id":"1e3b41519b74a180e072fbcdee35ca7e","lang":"en","link":"http://ibm.ulitzer.com/node/3026607","parseddate":"Tue, 25 Mar 2014 14:51:38 +0000","postid":"6eeaec5e-861b-4640-8276-f7ab8b8a3523","title":"The Apache Software Foundation Announces Apache™ Cloud
 Stack™ v4.3","type":"post"},"interaction":{"content":"<p><span class=\"xn-location\">FOREST HILL, Md.</span>, <span class=\"xn-chron\">March 25, 2014</span> /PRNewswire/ -- The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.</p><p><a href=\"http://ibm.ulitzer.com/node/3026607\" target=\"_blank\">read more</a></p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","id":"1e3b41519b74a180e072fbcdee35ca7e","link":"http://ibm.ulitzer.com/node/3026607","schema":{"version":3},"subtype":"post","title":"The Apache Software Foundation Announces Apache™ CloudStack™ v4.3","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"FOREST HILL, Md.","sentiment":0,"confident":1,"label":"Place","evidence":4,
 "type":"Place","about":1,"themes":["latest feature release","all-volunteer developers"]},{"name":"March 25, 2014","sentiment":-1,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["latest feature release","all-volunteer developers"]}],"sentiment":-1},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"Apache"},"comment":{"id":"650dba80c6b04a2124e0075cff28af4b"},"content":"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la vérité<br />\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les sauver.</p>","contenttyp
 e":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","domain":"leblogdrzz.over-blog.com","id":"1e3b4580ed1da080e072338f47a54b24","lang":"fr","link":"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/","parseddate":"Tue, 25 Mar 2014 20:22:24 +0000","post":{"created_at":"Tue, 25 Mar 2014 09:46:53 +0000","guid":"287825f6c2bd7e5f1a5615286d028e56","link":"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens/","title":"Salem Ben Ammar, auteur chez Dreuz, est menacé de mort par des islamistes tunisiens"},"source":{"crawled":"Tue, 25 Mar 2014 11:43:43 +0000","guid":"5c3074412dceeb8b550f4f8467bdce0d","id":"48710360","language":"fr","link":"leblogdrzz.over-blog.com","title":"Dreuz.info","type":"blogs"},"title":"Par : Apache","type":"comment"},"interaction":{"author":{"name":"Apache"},"content":"<p>C&rsquo;est triste pour ces hommes sincères et lucides, amoureux de la 
 vérité<br />\nLes intégristes n&rsquo;aiment pas la vérité tant ils sont aveuglés par LEUR VÉRITÉ qu&rsquo;ils veulent nous imposer par la force et par la mort.<br />\nDans toutes les religions l&rsquo;intégrisme est dangereux.<br />\nNous avons excellé dans l&rsquo;inquisition en tant que chrétiens .<br />\nMaintenant nous subissons à notre tour les excès de gens élevés dans de fausses idées moyenâgeuses.<br />\nJe souhaite de tout mon cœur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les protège .<br />\nIls sont peut être sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la vérité et pratiquant le bien est agréable à ses yeux.Et que sa main ne sera pas assez courte pour les sauver.</p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","id":"1e3b4580ed1da080e072338f47a54b24","link":"http://www.dreuz.info/2014/03/salem-ben-ammar-auteur-chez-dreuz-est-m
 enace-de-mort-par-des-islamistes-tunisiens/","schema":{"version":3},"subtype":"comment","title":"Par : Apache","type":"blog"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
-{"blog":{"author":{"name":"Tip Meister"},"blog":{"link":"http://www.lamp-tips.com/","title":"Linux Apache MySQL PHP Tips"},"blogid":"71186799","content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","domain":"www.lamp-tips.com","guid":"eb93f438e4191fd92fc1664a71c30a83","id":"1e3b4799c71ea800e07243367e6972b4","lang":"en","link":"http://www.lamp-tips.com/apache/what-does-apache-camel-do/","parseddate":"Wed, 26 Mar 2014 00:16:44 +0000","postid":"33815629-a87b-488f-9ca5-98c7359733d1","title":"What does Apache Camel do?","type":"post"},"interaction":{"author":{"name":"Tip Meister"},"content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","id":"1e3b4799c71ea800e07243367e6972b4","link":"http://www.lamp-tips.com/apache/what-does-apache-camel-do/","received_at":4743641192805852774,"schema":{"version":3},"subtype":"post","title":"What does Apache Camel do?","type":"blog
 "},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"Svět knihy"},"blog":{"link":"http://ceske-knizky.cz/","title":"České knížky"},"blogid":"71098056","content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afghánistánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsmrtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez přestávky. Pokud jste přehléd
 l jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot v historii britského letectv
 a vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém knihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \n \nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordcentrála X (Cílek Roman)  Výbuch n
 ad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","domain":"ceske-knizky.cz","guid":"f6d6c4a76240a3d4ef20ea2a75f80893","id":"1e3b4809fbcaa200e072eade39a77334","lang":"cs","link":"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/","parseddate":"Wed, 26 Mar 2014 02:37:30 +0000","postid":"858cfa87-6b6a-49a8-aa1c-7bf5449976d8","title":"Pilotem Apache (Macy Ed)","type":"post"},"interaction":{"author":{"name":"Svět knihy"},"content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech služby v britské armádě plánuje Ed Macy odchod do výslužby. Ale tento plán odkládá, protože souhlasil s ještě jedním turnusem v jižním Afghánistánu jako zbraňový specialista, létající na úplně novém vrtulníku Apache. Je to nejsm
 rtonosnější a technicky nejvyspělejší vrtulník na světě. Letět s vrtulníkem Apache do boje je jako hrát současně na Xboxu, PlayStationu a velmistrovskou partii šachu – a přitom se vézt na největší horské dráze v Disneylandu. Podle zjištění amerických studií dokáže jen malé procento lidských mozků souběžně zvládnout všechny požadované činnosti při pilotování tohoto letounu.…A nejenom jednu nebo dvě minuty, ale tři hodiny bez přestávky. Pokud jste přehlédl jednu klíčovou věc, mohl jste okamžitě zabít sebe i svého kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvalně známé afghánské provincii Hilmand, v drsné a nehostinné oblasti, místními nazývané Dašt-e-Margo (Poušť smrti). Operace dostala název Herrick. Posláním Macyho a jeho letky Apache bylo bojovat spolu s muži na zemi a chránit je všemi nezbytnými prostředky. Když se jeden příslušník námořní pěchoty pohřešoval v akci, 
 Ed a jeho tým byli jedinou nadějí armády na to, že ho dopraví zpátky živého. S vojáky, připoutanými po obou stranách bitevních vrtulníků musel přistát v srdci pevnosti Jugroom, tálibánském opěrném bodě a postavit se tváří v tvář hordám neúprosného nepřítele. Následoval dech beroucí pokus o záchranu. Kniha Pilotem Apache, něco mezi Černý jestřáb sestřelen a Těsně vedle, popisuje odvážnou misi, za niž byl Ed Macy jako první pilot v historii britského letectva vyznamenán velmi prestižním Vojenským křížem. Pilotem Apache je příběh Macyho, story o odvaze, nebezpečí a kamarádství, kterou přečtete jedním dechem. Kniha je doplněna situačními mapkami a barevnou obrazovou přílohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelství: Omnibooks  Rok vydání: 2012  Doporučená cena: 349  Počet stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je možně koupit v klasickém internetovém kn
 ihkupectví Beletrie nebo moderním internetovém knihkupectví U Mobi . Koupené knihy si můžete uložit do kabelky  čí aktovky z internetového obchodu www.purses-kabelky.cz \n \nDalší knihy:   Československá lidová armáda…  Největší tajemná spiknutí (G…  Krugo Bajkalka (Turek Václav)  Reportérem na třech kontinen…  Můj život – Fascinující a in…  Ilumináti (Makow Henri)  Pražské katastrofy  Globální Minotaurus – Amerik…  Mordcentrála X (Cílek Roman)  Výbuch nad tajgou (Jiránek J…  Radikální pravice v Německu …  Nepokořená (Valčeva Kristiana)  Tenkrát za první republiky (…  Věchi (Milníky) (Berďajev Ni…  Belze, Sobibor, Treblinka (A…","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","id":"1e3b4809fbcaa200e072eade39a77334","link":"http://ceske-knizky.cz/pilotem-apache-macy-ed-2/","schema":{"version":3},"subtype":"post","title":"Pilotem Apache (Macy Ed)","type":"blog"},"language":{"confidence":99,"t
 ag":"cs","tag_extended":"cs"}}
-{"blog":{"author":{"name":"Benjamin D. Thomas"},"blog":{"link":"http://lxer.com/","title":"LXer Linux News"},"blogid":"40458952","content":"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.","contenttype":"html","created_at":"Wed, 26 Mar 2014 02:36:43 +0000","domain":"lxer.com","guid":"ba43401e2c320b2c4d1fad73af1fe133","id":"1e3b48f77886af80e072c8aa90d223ec","lang":"en","link":"http://lxer.com/module/newswire/ext_link.php?rid=200184","parseddate":"Wed, 26 Mar 2014 03:04:54 +0000","postid":"14e1bba7-358e-480d-9d5a-7dd55d8293bc","title":"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"Benjamin D. Thomas"},"content":"Apache HTTP server could be made to crash if it received specially craftednetwork traffic.","contenttype":"html","created_at":"Wed, 26 Mar 2014 02:36:43 +0000","id":"1e3b48f77886af80e072c8aa90d223ec","link":"http://lxer.com/module/newswire/ext_link.p
 hp?rid=200184","received_at":4743641234971543627,"schema":{"version":3},"subtype":"post","title":"Ubuntu: 2152-1: Apache HTTP Server vulnerabilities","type":"blog"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"charmalloc"},"blog":{"link":"http://java.dzone.com/","title":"Javalobby - The heart of the Java developer community"},"blogid":"59183819","content":"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumulo provides a richer data model than simple key-value stores, but is not a fully relational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and the Value are represented a
 s byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated synchronization mechanism. As clients insert and query data, and as machines are added and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:30:00 +0000","domain":"j
 ava.dzone.com","guid":"210840f9a9d28bfbefe3d97dc7f4b05f","id":"1e3b4a7aca0bac00e07244d00bd5c3bc","lang":"en","link":"http://java.dzone.com/articles/big-data-apache-accumulo","parseddate":"Wed, 26 Mar 2014 06:35:35 +0000","postid":"c37ebe75-e2aa-4691-b548-68be0e8fc015","title":"Big Data with Apache Accumulo Preserving Security with Open Source","type":"post"},"interaction":{"author":{"name":"charmalloc"},"content":"Related MicroZone ResourcesBuild Big Data Apps with JavaScript and DjangoDownload Hunk: Splunk Analytics for HadoopGet Started Developing with Splunk, the Platform for Machine Data Like this piece? Share it with your friends: | More Episode 19 of the podcast was a talk with Adam Fuchs. Adam talked about Apache Accumulo which is a system built for doing random i/o with peta bytes of data. Distributing the computation to the data with cell level security is where Accumulo really shines. Accumulo provides a richer data model than simple key-value stores, but is not a fully r
 elational database. Data is represented as key-value pairs, where the key and value are comprised of the following elements: Key Value Row ID Column Timestamp Family Qualifier Visibility All elements of the Key and the Value are represented as byte arrays except for Timestamp, which is a Long. Accumulo sorts keys by element and lexicographically in ascending order. Timestamps are sorted in descending order so that later versions of the same Key appear first in a sequential scan. Tables consist of a set of sorted key-value pairs. Accumulo stores data in tables, which are partitioned into tablets. Tablets are partitioned on row boundaries so that all of the columns and values for a particular row are found together within the same tablet. The Master assigns Tablets to one TabletServer at a time. This enables row-level transactions to take place without using distributed locking or some other complicated synchronization mechanism. As clients insert and query data, and as machines are a
 dded and removed from the cluster, the Master migrates tablets to ensure they remain available and that the ingest and query load is balanced across the cluster.","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:30:00 +0000","id":"1e3b4a7aca0bac00e07244d00bd5c3bc","link":"http://java.dzone.com/articles/big-data-apache-accumulo","schema":{"version":3},"subtype":"post","title":"Big Data with Apache Accumulo Preserving Security with Open Source","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Adam Fuchs","sentiment":8,"confident":1,"label":"Person","evidence":7,"type":"Person","about":1,"themes":["cell level security","peta bytes"]}],"sentiment":1},"title":{"entities":[{"name":"Apache Accumulo Preserving Security","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
-{"blog":{"author":{"name":"紫贏"},"blog":{"link":"http://z-win.blogspot.com/","title":"紫贏的記事本"},"blogid":"58568180","content":"win7 上apache php 用com去開word 2013 時,字型沒換的問題\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\n但要用word另存pdf時,字型沒換,目前決解的方案是\n控制台>系統管理工具>元件服務 ,\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\n內容 > 識別身分 用 互動式使用者\n但使用時一定要有使用登入到桌面,無法在純service下進行","contenttype":"html","created_at":"Wed, 26 Mar 2014 06:31:11 +0000","domain":"z-win.blogspot.com","guid":"66ef237ea01acb41d588b4a45fca07d6","id":"1e3b4b038b6ea180e072c86f262afd10","lang":"zh-tw","link":"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html","parseddate":"Wed, 26 Mar 2014 06:32:47 +0000","postid":"550399d6-64b6-4541-930a-e4
 0b53eff547","title":"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題","type":"post"},"interaction":{"author":{"name":"紫贏"},"content":"win7 上apache php 用com去開word 2013 時,字型沒換的問題\n在win7上 的 apache 要在服務的登入選項中 打勾 允許與桌面互動,才能開word\n但要用word另存pdf時,字型沒換,目前決解的方案是\n控制台>系統管理工具>元件服務 ,\n中的 元件服務 > 電腦 > 我的電腦 > DCOM設定 > mICROSOFT wORD 97-2003的文件\n內容 > 識別身分 用 互動式使用者\n但使用時一定要有使用登入到桌面,無法在純service下進行","contenttype":"html","created_at":"Wed, 26 Mar 2014 06:31:11 +0000","id":"1e3b4b038b6ea180e072c86f262afd10","link":"http://z-win.blogspot.com/2014/03/win7-apache-php-comword-2013.html","schema":{"version":3},"subtype":"post","title":"win7 上apache php 用com去開word 2013 另存時,字型沒換的問題","type":"blog"},"langu
 age":{"confidence":70,"tag":"zh","tag_extended":"zh-tw"}}
-{"blog":{"author":{"name":"Sean Michael Kerner"},"blog":{"link":"http://lxer.com/","title":"LXer Linux News"},"blogid":"40458952","content":"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform.\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4.2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written
  in C#, meaning native support written in a language that suits the platform best,\" Trippaers said. \"It also shows the possibilities of working with other languages in the CloudStack project.\"\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the best tool for the job, he said.\nDynamic Compute\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the new Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\n\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\" Trippaers said.\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand by the tenant.\n\"This means that instead of h
 aving to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\" Trippaers said.\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enables off-loading of SSL traffic to load balancers.\n\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\" Trippaers explained. \"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\"\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\nWhat's Next\nLooking forward, there are a number of different technologies and features under consideration for future releases of CloudStack. One of those
  technologies is the open-source Docker container virtualization technology.\n\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\" Trippaers said. \"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\"\nOther features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.\n\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\" Trippaers said. \"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and 
 users alike.\"\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:11:22 +0000","domain":"lxer.com","guid":"96eab9efacbe97941d0f03ffa2933164","id":"1e3b4d75cd9ea900e072ae686e3e344c","lang":"en","link":"http://www.eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html","parseddate":"Wed, 26 Mar 2014 11:15:22 +0000","postid":"65ca246b-c53d-4c41-8b8c-a2a5d868d195","title":"Apache CloudStack 4.3 Released","type":"post"},"demographic":{"gender":"mostly_male"},"interaction":{"author":{"name":"Sean Michael Kerner"},"content":"The CloudStack 4.3 open-source cloud platform adds new hypervisor, SSL and dynamic computing capabilities. The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform.\nThe CloudStack 4.3 release is the first major update to CloudStack since the 4
 .2 release debuted in October. CloudStack is an open-source effort that Citrix donated to Apache in April 2012. The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011.\nCloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor.\nHugo Trippaers, vice president of Apache CloudStack, told eWEEK that discussions regarding supporting Hyper-V started back in 2012. \"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\" Trippaers said. \"It also shows the possibilities of working with other languages in the CloudStack project.\"\nAlhough the CloudStack project is currently predominantly Java code, there is always the opportunity to select the best tool for the job, he said.\nDynamic Compute\nAnother key feature of the CloudStack 4.3 release is known as Dynamic Compute. Trippaers explained that the ne
 w Dynamic Compute offering is unrelated to the autoscaling features that Cloudstack has been supporting since version 4.2.\n\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\" Trippaers said.\nWith previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. With the new Dynamic Compute offering, there is a more flexible compute capability that can be filled on demand by the tenant.\n\"This means that instead of having to maintain lists of fixed compute offerings catering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\" Trippaers said.\nApache CloudStack 4.3 also includes a new Secure Sockets Layer (SSL) termination that enables off-loading of SSL traffic to load balancers.\n\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\" Trip
 paers explained. \"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\"\nA Netscaler is a Citrix Application Delivery Controller (ADC). According to Trippaers, dedicated devices like the Netscaler can also offer significant performance improvements in handling SSL traffic.\nWhat's Next\nLooking forward, there are a number of different technologies and features under consideration for future releases of CloudStack. One of those technologies is the open-source Docker container virtualization technology.\n\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\" Trippaers said. \"I'm convinced that we will come up with the right answer in the not-so-distant future and release Docker support with one of the next releases.\"\nOther features CloudStack developers are working on for future releases include networking across failure domains for
  increased resiliency and improving support for bare metal deployments.\n\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\" Trippaers said. \"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\"\nSean Michael Kerner is a senior editor at eWEEK and InternetNews.com. Follow him on Twitter @TechJournalist.","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:11:22 +0000","id":"1e3b4d75cd9ea900e072ae686e3e344c","link":"http://www.eweek.com/cloud/open-source-apache-cloudstack-4.3-supports-microsoft-hyper-v.html","schema":{"version":3},"subtype":"post","title":"Apache CloudStack 4.3 Released","type":"blog"},"language":{"confidence":99,"tag":"en","
 tag_extended":"en"},"salience":{"content":{"entities":[{"name":"CloudStack","sentiment":32,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["major update","next releases","bare metal deployments","future releases","code quality improvements","right answer","not-so-distant future","CloudStack developers","failure domains","improving support","huge number","functional tests","serious number","predictable behavior","open-source effort","flexible compute capability","compute offering","creating instances","different technologies","original technology"]},{"name":"Citrix","sentiment":3,"confident":1,"label":"Company","evidence":7,"type":"Company","about":0,"themes":["Citrix Application Delivery Controller","significant performance improvements","major update","open-source effort","original technology","virtualization hypervisor","precious resources","virtual machines","dedicated devices"]},{"name":"Apache","sentiment":3,"confident":1,"label":"Company","evi
 dence":5,"type":"Company","about":0,"themes":["major update","open-source effort","original technology"]},{"name":"April 2012","sentiment":3,"confident":1,"label":"Date","evidence":5,"type":"Pattern","about":0,"themes":["major update","open-source effort","original technology"]},{"name":"Microsoft","sentiment":4,"confident":1,"label":"Company","evidence":3,"type":"Company","about":0,"themes":["original technology","virtualization hypervisor","supporting Hyper-V","vice president"]},{"name":"Hugo Trippaers","sentiment":60,"confident":1,"label":"Person","evidence":7,"type":"Person","about":1,"themes":["next releases","dynamic offerings","code quality improvements","future releases","compute offering","huge number","functional tests","different technologies","serious number","predictable behavior","key feature","right answer","not-so-distant future","significant performance improvements","native support","flexible compute capability","dedicated devices","precious resources","virtual mac
 hines","creating instances","bare metal deployments","CloudStack developers","failure domains","improving support","supporting Hyper-V","vice president","container virtualization technology"]},{"name":"vice president","sentiment":2,"confident":1,"label":"Job Title","evidence":3,"type":"Job Title","about":0,"themes":["virtualization hypervisor","supporting Hyper-V","vice president","native support"]},{"name":"Netscaler","sentiment":8,"confident":1,"label":"Company","evidence":7,"type":"Company","about":0,"themes":["significant performance improvements","precious resources","virtual machines","dedicated devices","different technologies","future releases"]},{"name":"Sean Michael Kerner","sentiment":3,"confident":1,"label":"Person","evidence":3,"type":"Person","about":0,"themes":["code quality improvements","next release","serious number","predictable behavior","senior editor"]},{"name":"senior editor","sentiment":3,"confident":1,"label":"Job Title","evidence":3,"type":"Job Title","abou
 t":0,"themes":["code quality improvements","next release","serious number","predictable behavior","senior editor"]},{"name":"\"As part of the Hyper-V support, we are releasing a version of the CloudStack Agent written in C#, meaning native support written in a language that suits the platform best,\"","sentiment":4,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["supporting Hyper-V","vice president","native support"]},{"name":"\"It also shows the possibilities of working with other languages in the CloudStack project.\"","sentiment":0,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["native support"]},{"name":"\"The Dynamic Compute offering provides for flexibility to tenants when creating instances,\"","sentiment":3,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["Compute offering","creating instances"]},{"name":"\"This means that instead of having to maintain lists of fixed compute offerings c
 atering to all, a number of dynamic offerings can be made available, and the user has the freedom to set, for example, the number of CPUs,\"","sentiment":4,"confident":1,"label":"Quote","evidence":1,"type":"Quote","about":0,"themes":["fixed compute offerings catering","flexible compute capability","dynamic offerings"]},{"name":"\"With this feature, the SSL connection and all the encryption/decryption is handled by, for example, a Netscaler,\";\"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\"","sentiment":2,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0,"themes":["Citrix Application Delivery Controller","precious resources","virtual machines"]},{"name":"\"Docker is more than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\";\"I'm convinced that we will come up with the right answer in the not-so-distant future and release Doc
 ker support with one of the next releases.\"","sentiment":2,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0,"themes":["container virtualization technology","bare metal deployments","right answer","not-so-distant future","next releases","CloudStack developers","future releases","failure domains","improving support"]},{"name":"\"Next to feature development, the community is also focusing on quality of CloudStack, and with the 4.3 release, a lot of improvements have been made to our build systems, including a huge number of automated functional tests,\";\"The next release of CloudStack will have new features but will also contain a serious number of code quality improvements that should translate in an even more predictable behavior for administrators and users alike.\"","sentiment":4,"confident":1,"label":"Quote","evidence":2,"type":"Quote","about":0,"themes":["code quality improvements","bare metal deployments","huge number","functional tests","next release","seri
 ous number","predictable behavior","CloudStack developers","future releases","failure domains","improving support"]}],"sentiment":3,"topics":[{"name":"Software and Internet","score":0.591965675354,"additional":"The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform. \"This frees up precious resources on the user's virtual machines and saves the user from having to worry about configuring SSL in his environment.\" Other features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.","hits":0},{"name":"Mobile Devices","score":0.56688523292542,"additional":"The Apache Software Foundation today announced the release of CloudStack 4.3, providing new features to users of the open-source cloud platform. According to Trippaers, dedicated devices like the Netscaler can also offer signif
 icant performance improvements in handling SSL traffic. Other features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.","hits":0},{"name":"Technology","score":0.56676977872849,"additional":"The original technology behind CloudStack came to Citrix by way of the acquisition of Cloud.com in 2011. One of those technologies is the open-source Docker container virtualization technology. Other features CloudStack developers are working on for future releases include networking across failure domains for increased resiliency and improving support for bare metal deployments.","hits":0},{"name":"Hardware","score":0.49846687912941,"additional":"CloudStack 4.3 offers support for Microsoft's Hyper-V virtualization hypervisor. With previous CloudStack releases, the configuration in a compute offering was fixed; for example, two cores and 4G bit of memory. \"Docker is more 
 than just a hypervisor, and that needs to be reflected in how it is supported in CloudStack,\" Trippaers said.","hits":0}]},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"xenbast"},"blog":{"link":"http://olatsaba.blogspot.com/","title":"olatsaba"},"blogid":"70744341","content":"Θυμάμαι μικρός απολάμβανα να βγαίνω στην αυλή να βλέπω τα αεροπλάνα που πέρναγαν πάνω από τα κεφάλια μας τις μέρες παρέλασης... τώρα μεγάλωσα, άλλαξα σπίτι... και εξακολουθώ έχω τα ίδια χούγια...","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:36:20 +0000","domain":"olatsaba.blogspot.com","guid":"c8d1a117ba201f1b1d1f8550ee95a0d4","id":"1e3b4dad9ba9a200e072e848e2b4aa64","lang":"el","link":"http://olatsaba.blogspot.com/2014/03/apache.html","parseddate":"Wed, 26 Mar 2014 13:00:22 +0000","postid":"15335b4b-a4c9-4316-9e0c-50380fef0aea","title":"Apache πάνω από το Αιγάλεω","type":"post"},"interaction":{"author":{"name":"xenbast"},"content":"Θυμάμαι μικρός απολά�
 �βανα να βγαίνω στην αυλή να βλέπω τα αεροπλάνα που πέρναγαν πάνω από τα κεφάλια μας τις μέρες παρέλασης... τώρα μεγάλωσα, άλλαξα σπίτι... και εξακολουθώ έχω τα ίδια χούγια...","contenttype":"html","created_at":"Wed, 26 Mar 2014 11:36:20 +0000","id":"1e3b4dad9ba9a200e072e848e2b4aa64","link":"http://olatsaba.blogspot.com/2014/03/apache.html","received_at":4743641386565354127,"schema":{"version":3},"subtype":"post","title":"Apache πάνω από το Αιγάλεω","type":"blog"},"language":{"confidence":100,"tag":"el","tag_extended":"el"}}
-{"blog":{"blog":{"link":"http://www.vmware.com/vmtn/planet/v12n/","title":"Planet V12n"},"blogid":"58694970","content":"The Apache Software Foundation which took over the developement of CloudStack platform from Citrix in April 2012 today released version 4.3 of Apache CloudStack. Apache CloudStack is open source...","contenttype":"html","created_at":"Wed, 26 Mar 2014 12:54:04 +0000","domain":"www.vmware.com","guid":"00cdf6340d990297bb9fe4f9173591a2","id":"1e3b4e5b5b07ae00e0722892428e5d58","lang":"en","link":"http://cloudcomputing.info/en/news/2014/03/the-apache-software-foundation-releases-cloudstack-4-3-0.html","parseddate":"Wed, 26 Mar 2014 16:33:23 +0000","postid":"fc060354-51a9-4758-ab71-b43c027a8903","title":"The Apache software foundation releases CloudStack 4.3.0 (virtualization.info)","type":"post"},"interaction":{"content":"The Apache Software Foundation which took over the developement of CloudStack platform from Citrix in April 2012 today released version 4.3 of Apache C
 loudStack. Apache CloudStack is open source...","contenttype":"html","created_at":"Wed, 26 Mar 2014 12:54:04 +0000","id":"1e3b4e5b5b07ae00e0722892428e5d58","link":"http://cloudcomputing.info/en/news/2014/03/the-apache-software-foundation-releases-cloudstack-4-3-0.html","schema":{"version":3},"subtype":"post","title":"The Apache software foundation releases CloudStack 4.3.0 (virtualization.info)","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Citrix","sentiment":0,"confident":1,"label":"Company","evidence":2,"

<TRUNCATED>

[41/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
index cb59601..9e649e3 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/blog_datasift_json.txt
@@ -1,719 +1,719 @@
-"{\"blog\":{\"author\":{\"name\":\"Stileex\"},\"blog\":{\"link\":\"http://laptop.toprealtime.net/\",\"title\":\"Laptop News\"},\"blogid\":\"71107731\",\"content\":\"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning …\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 21:35:23 +0000\",\"domain\":\"laptop.toprealtime.net\",\"guid\":\"8921b89d1faad3d22a6e2a7ed55765e1\",\"id\":\"1e3b209dfc61af80e072ce1ee22bb088\",\"lang\":\"en\",\"link\":\"http://laptop.toprealtime.net/2014/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate/\",\"parseddate\":\"Sun, 23 Mar 2014 00:21:59 +0000\",\"postid\":\"ed8205a9-2812-4fa6-a730-692b75adc9d7\",\"title\":\"MSI GE60 Apache Pro 003 15.6″: Excellent Gaming Laptop – PressAndUpdate\",\"type\":\"post\"},\"interaction\":
 {\"author\":{\"name\":\"Stileex\"},\"content\":\"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning …\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 21:35:23 +0000\",\"id\":\"1e3b209dfc61af80e072ce1ee22bb088\",\"link\":\"http://laptop.toprealtime.net/2014/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate/\",\"received_at\":4743640105474628098,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"MSI GE60 Apache Pro 003 15.6″: Excellent Gaming Laptop – PressAndUpdate\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"MSI\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":2,\"type\":\"Company\",\"about\":1,\"themes\":[\"fast
  performance\",\"great graphics\",\"audio output\",\"gaming freak\",\"gaming laptop\",\"lightweight laptop\",\"stunning …\"]}],\"sentiment\":2,\"topics\":[{\"name\":\"Video Games\",\"score\":0.64548820257187,\"additional\":\"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning …\",\"hits\":0},{\"name\":\"Hardware\",\"score\":0.45651730895042,\"additional\":\"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning …\",\"hits\":0}]},\"title\":{\"sentiment\":6,\"topics\":[{\"name\":\"Video Games\",\"score\":0.62834107875824,\"additional\":\"MSI GE60 Apache Pro 003 15.6″: Excellent Gaming Lapt
 op – PressAndUpdate\",\"hits\":0}]}}}"
-"{\"blog\":{\"author\":{\"name\":\"Slick aka, Paul Everett\"},\"blog\":{\"link\":\"http://travelswithtwinkles.blogspot.com/\",\"title\":\"Travels with Twinkles\"},\"blogid\":\"70539695\",\"content\":\"March 17 - 21, 2014: After picking up our mail at the Globe post office (our new South Dakota license plates and registration), it was Adios to Globe and onward on Rt 188 up over a steep pass to Roosevelt Lake.   Roosevelt Lake is a huge recreational area, enormous, with eight developed campgrounds that contain 1,500 campsites and several boat ramps and marinas. This area is jointly operated by the National Forest Service and the US Department of Agriculture.  It is all first come, first served campsites, nice size campsites with picnic tables, shade armadas, fire pits, Toilet/Bath house, potable water, but no hookups or amenities.  It is a really great boating and fishing area that attracts people from all over.  They have a crazy camping system here, to camp you first need a Tont
 o Pass which you can only get at local merchants or the ranger station, but not at the Campground ?  This pass is a card with scratch off boxes for the date and is good for only 24 hours. Since we are staying 5 days, we had to buy 5 cards, one for each day and we have to put a new card on the vehicle with the new date scratched off each day. Seems like a wasteful and inefficient method !  Tonto Pass While I'm on a rant, another thing, they have about 1,500 campsites here, but no store of any kind where you can buy necessities such as water, ice, beer, snacks, etc and also only two part time dump stations.  Also only one privately owned gas station/store at the south end of the recreation area, that's it, otherwise you must drive 30 some miles to Globe or Payson for anything. The recreation area could be making considerable money with some kind of store here, I would think ?     On Wednesday, we went to the Tonto National Monument practically across the road from the campground.
   This is a Salado Indian cliff dwelling site that is remarkable.  There is a lower and a upper cliff dwelling, however the upper is only accessible by guided tours on weekends.  The view from the cliff dwelling was really beautiful although todays lake in the distance did not exist back then.  If it had the Salado might still be here.  They were productive farmers who built irrigation canals from the river to water their crops and were also hunters and gathers.  They developed a style of Polychrome pottery with intricate designs that became most popular.  They disappeared sometime in the mid 1400's, it is speculated due to the harsh cycles of drought and flooding here. This also plagued the early US settlers, which led to building the Roosevelt Dam which in turn led to the development of the whole Phoenix metropolitan area.  Progress ?  Tonto Cliff Dwellings Interior of Cliff Dwellings Interior view of cliff dwellings View from the cliff dwellings, Roosevelt lake in distan
 ce View of Roosevelt Dam on display at visitors center View of Roosevelt Bridge Another angle of the bridge View of Roosevelt Dam, the original Dam was all masonry block construction.\\nThe Dam was modified latter to raise to a higher height and to strengthen. The pretty side of Roosevelt Dam Thursday I went off in search of adventure with a drive from Roosevelt Dam to Tortilla Flat on the Apache Trail.  Twinkles declined as she is not fond of roads that have endless drop offs with minimal or no guard rails. It is 26 miles in length, 22 of which is dirt and not smooth dirt, but mostly a bumpy, corduroy surface.  It is also narrow in places, sometimes one lane only, steep, curvy and dusty.  The Jeep has a stiff suspension and rides very rough, had to keep the speed low so I wouldn't dribble over the edge in places. The scenery however is world class, especially the most scary parts near Fish Creek.  I did have a minor accident off the road taking a photo, when I lost my balance, 
 fell into a cactus, scrapped by leg and landed on an anthill. I broke my fall with the camera, but somehow did not seem to damage it.  Overall not much damage, except for about an hour with needle and tweezers picking out cactus needles. View of Salt River from the Apache Trail Apache Trail view, nice Bridge Brittle bush are blooming everywhere Poppys all over too ! Something in Daisy family, should know View of Apache Lake from Apache Trail Interesting Saguaro's along trail Luscious green Cottonwood Trees along creek Taking a break from the brain rattling ride Headings down into Canyon area View in the Canyon Over the bridge then up the narrow ledge above  It was worse than it looks here Coming back up from the other side, better on the inside of road Nice camp fire setting along trail In spite of my slip, I got the photo I wanted Another common flower in bloom everywhere Theodore Roosevelt, traveled on the Apache trail to the dedication of the Roosevelt Dam on March 18, 1911 and
  said the following about the trail in his speech; \\\"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\\\".  (He did have a way with words.) In that vein, I'm now hooked on Tony Hillerman books, who also has a way with words.  I am now on my third book this month, might be a record.  Twinkles, the original bookworm is very impressed.  The books take place in the Navajo and Pima Indian country where we are headed.  I'm trying think more like an indian these days We are taking short hops north with the next one on Friday to Payson, Arizona.  We plan about 4-5 days there to recharge with a full hookup campsite.  Lots to see and do in Payson, it's Zane Grey country. Keep on moving On, Twinkles and Slick\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 05:10:54 +0000\",\"doma
 in\":\"travelswithtwinkles.blogspot.com\",\"guid\":\"b6d83791b3272825ea1f6e8f64a77de7\",\"id\":\"1e3b2498251ca300e072258d0d14ada8\",\"lang\":\"en\",\"link\":\"http://travelswithtwinkles.blogspot.com/2014/03/roosevelt-dam-and-apache-trail.html\",\"parseddate\":\"Sun, 23 Mar 2014 05:13:20 +0000\",\"postid\":\"cd66debe-de0c-4f34-8290-8d72e79cc040\",\"title\":\"Roosevelt Dam and the Apache Trail\",\"type\":\"post\"},\"demographic\":{\"gender\":\"unisex\"},\"interaction\":{\"author\":{\"name\":\"Slick aka, Paul Everett\"},\"content\":\"March 17 - 21, 2014: After picking up our mail at the Globe post office (our new South Dakota license plates and registration), it was Adios to Globe and onward on Rt 188 up over a steep pass to Roosevelt Lake.   Roosevelt Lake is a huge recreational area, enormous, with eight developed campgrounds that contain 1,500 campsites and several boat ramps and marinas. This area is jointly operated by the National Forest Service and the US Department of Agricult
 ure.  It is all first come, first served campsites, nice size campsites with picnic tables, shade armadas, fire pits, Toilet/Bath house, potable water, but no hookups or amenities.  It is a really great boating and fishing area that attracts people from all over.  They have a crazy camping system here, to camp you first need a Tonto Pass which you can only get at local merchants or the ranger station, but not at the Campground ?  This pass is a card with scratch off boxes for the date and is good for only 24 hours. Since we are staying 5 days, we had to buy 5 cards, one for each day and we have to put a new card on the vehicle with the new date scratched off each day. Seems like a wasteful and inefficient method !  Tonto Pass While I'm on a rant, another thing, they have about 1,500 campsites here, but no store of any kind where you can buy necessities such as water, ice, beer, snacks, etc and also only two part time dump stations.  Also only one privately owned gas station/st
 ore at the south end of the recreation area, that's it, otherwise you must drive 30 some miles to Globe or Payson for anything. The recreation area could be making considerable money with some kind of store here, I would think ?     On Wednesday, we went to the Tonto National Monument practically across the road from the campground.  This is a Salado Indian cliff dwelling site that is remarkable.  There is a lower and a upper cliff dwelling, however the upper is only accessible by guided tours on weekends.  The view from the cliff dwelling was really beautiful although todays lake in the distance did not exist back then.  If it had the Salado might still be here.  They were productive farmers who built irrigation canals from the river to water their crops and were also hunters and gathers.  They developed a style of Polychrome pottery with intricate designs that became most popular.  They disappeared sometime in the mid 1400's, it is speculated due to the harsh cycles of dr
 ought and flooding here. This also plagued the early US settlers, which led to building the Roosevelt Dam which in turn led to the development of the whole Phoenix metropolitan area.  Progress ?  Tonto Cliff Dwellings Interior of Cliff Dwellings Interior view of cliff dwellings View from the cliff dwellings, Roosevelt lake in distance View of Roosevelt Dam on display at visitors center View of Roosevelt Bridge Another angle of the bridge View of Roosevelt Dam, the original Dam was all masonry block construction.\\nThe Dam was modified latter to raise to a higher height and to strengthen. The pretty side of Roosevelt Dam Thursday I went off in search of adventure with a drive from Roosevelt Dam to Tortilla Flat on the Apache Trail.  Twinkles declined as she is not fond of roads that have endless drop offs with minimal or no guard rails. It is 26 miles in length, 22 of which is dirt and not smooth dirt, but mostly a bumpy, corduroy surface.  It is also narrow in places, sometimes 
 one lane only, steep, curvy and dusty.  The Jeep has a stiff suspension and rides very rough, had to keep the speed low so I wouldn't dribble over the edge in places. The scenery however is world class, especially the most scary parts near Fish Creek.  I did have a minor accident off the road taking a photo, when I lost my balance, fell into a cactus, scrapped by leg and landed on an anthill. I broke my fall with the camera, but somehow did not seem to damage it.  Overall not much damage, except for about an hour with needle and tweezers picking out cactus needles. View of Salt River from the Apache Trail Apache Trail view, nice Bridge Brittle bush are blooming everywhere Poppys all over too ! Something in Daisy family, should know View of Apache Lake from Apache Trail Interesting Saguaro's along trail Luscious green Cottonwood Trees along creek Taking a break from the brain rattling ride Headings down into Canyon area View in the Canyon Over the bridge then up the narrow ledge a
 bove  It was worse than it looks here Coming back up from the other side, better on the inside of road Nice camp fire setting along trail In spite of my slip, I got the photo I wanted Another common flower in bloom everywhere Theodore Roosevelt, traveled on the Apache trail to the dedication of the Roosevelt Dam on March 18, 1911 and said the following about the trail in his speech; \\\"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an indefinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\\\".  (He did have a way with words.) In that vein, I'm now hooked on Tony Hillerman books, who also has a way with words.  I am now on my third book this month, might be a record.  Twinkles, the original bookworm is very impressed.  The books take place in the Navajo and Pima Indian country where we are headed.  I'm trying think more like an indian thes
 e days We are taking short hops north with the next one on Friday to Payson, Arizona.  We plan about 4-5 days there to recharge with a full hookup campsite.  Lots to see and do in Payson, it's Zane Grey country. Keep on moving On, Twinkles and Slick\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 05:10:54 +0000\",\"id\":\"1e3b2498251ca300e072258d0d14ada8\",\"link\":\"http://travelswithtwinkles.blogspot.com/2014/03/roosevelt-dam-and-apache-trail.html\",\"received_at\":4743640177664376334,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Roosevelt Dam and the Apache Trail\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"March 17\",\"sentiment\":0,\"confident\":1,\"label\":\"Date\",\"evidence\":1,\"type\":\"Pattern\",\"about\":1,\"themes\":[\"several boat ramps\",\"steep pass\",\"post office\",\"license plates\",\"recreational area\",\"developed campgrounds\"]},{\"n
 ame\":\"Roosevelt Lake\",\"sentiment\":19,\"confident\":1,\"label\":\"Person\",\"evidence\":7,\"type\":\"Person\",\"about\":1,\"themes\":[\"cliff dwellings View\",\"visitors center View\",\"masonry block construction\",\"camp fire setting\",\"endless drop offs\",\"distance View\",\"bridge View\",\"narrow ledge\",\"common flower\",\"rattling ride\",\"area View\",\"indefinable something\",\"sublimely beautiful\",\"guard rails\",\"pretty side\",\"several boat ramps\",\"steep pass\",\"post office\",\"license plates\",\"recreational area\",\"developed campgrounds\",\"View\"]},{\"name\":\"Bath house\",\"sentiment\":4,\"confident\":1,\"label\":\"building\",\"evidence\":4,\"type\":\"Place\",\"about\":0,\"themes\":[\"nice size campsites\",\"potable water\",\"served campsites\",\"picnic tables\",\"shade armadas\",\"fire pits\",\"great boating\",\"fishing area\"]},{\"name\":\"Fish Creek\",\"sentiment\":-3,\"confident\":1,\"label\":\"Place\",\"evidence\":3,\"type\":\"Place\",\"about\":0,\"theme
 s\":[\"stiff suspension\",\"scary parts\",\"world class\",\"minor accident\"]},{\"name\":\"Daisy\",\"sentiment\":17,\"confident\":1,\"label\":\"Person\",\"evidence\":7,\"type\":\"Person\",\"about\":0,\"themes\":[\"camp fire setting\",\"narrow ledge\",\"common flower\",\"rattling ride\",\"area View\",\"indefinable something\",\"sublimely beautiful\"]},{\"name\":\"Theodore Roosevelt\",\"sentiment\":17,\"confident\":1,\"label\":\"http://en.wikipedia.org/wiki/Theodore_Roosevelt\",\"evidence\":7,\"type\":\"Person\",\"about\":0,\"themes\":[\"camp fire setting\",\"narrow ledge\",\"common flower\",\"rattling ride\",\"area View\",\"indefinable something\",\"sublimely beautiful\",\"third book\"]},{\"name\":\"March 18, 1911\",\"sentiment\":17,\"confident\":1,\"label\":\"Date\",\"evidence\":4,\"type\":\"Pattern\",\"about\":0,\"themes\":[\"camp fire setting\",\"narrow ledge\",\"common flower\",\"rattling ride\",\"area View\",\"indefinable something\",\"sublimely beautiful\"]},{\"name\":\"Alps\",
 \"sentiment\":17,\"confident\":1,\"label\":\"Place\",\"evidence\":4,\"type\":\"Place\",\"about\":0,\"themes\":[\"camp fire setting\",\"narrow ledge\",\"common flower\",\"rattling ride\",\"area View\",\"indefinable something\",\"sublimely beautiful\"]},{\"name\":\"Tony Hillerman\",\"sentiment\":4,\"confident\":1,\"label\":\"http://en.wikipedia.org/wiki/Tony_Hillerman\",\"evidence\":7,\"type\":\"Person\",\"about\":0,\"themes\":[\"third book\",\"original bookworm\"]},{\"name\":\"Payson, Arizona\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":2,\"type\":\"Place\",\"about\":0,\"themes\":[\"full hookup campsite\",\"short hops\"]},{\"name\":\"Zane Grey\",\"sentiment\":0,\"confident\":1,\"label\":\"http://en.wikipedia.org/wiki/Zane_Grey\",\"evidence\":1,\"type\":\"Person\",\"about\":0,\"themes\":[\"full hookup campsite\"]},{\"name\":\"\\\"The Apache Trail combines the grandeur of the Alps, the glory of the rockies, the magnificence of the Grand Canyon and then adds an ind
 efinable something that none of the others have, to me, it is most awe-inspiring and most sublimely beautiful\\\"\",\"sentiment\":6,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"camp fire setting\",\"narrow ledge\",\"common flower\",\"rattling ride\",\"area View\",\"indefinable something\",\"sublimely beautiful\"]}],\"sentiment\":1},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"标准好青年\"},\"blog\":{\"link\":\"http://blog.sina.com.cn/itbrick\",\"title\":\"brick_学习笔记\"},\"blogid\":\"72924259\",\"category\":\"技术学习笔记\",\"content\":\"<p>\\napache与tomcat配合使用,可以将一些静态地址交给apache处理,以减少tomcat的压力,也就是说所有的请求都是先经过80端口apache,apache通过配置httpd来分发请求给tomcat,个人是这样简单理解的,如果什么理解错误请大家指正。</P>\\n<p>\\n我在与各个平台做接口的时候遇到了一个问题,servlet部署完毕确认无误以后,发现无法访问到servlet,查看tomcat的access日志,发现tomcat根本就没有接收到请求此servlet的请求,也就是说,apache根本就没有将此请求分发给tomcat.知道问题出在哪里就好办啦。\\n打开apache的配置文件httpd,找到你配置apache的分发,填入“jkmount /<font COLOR=\\\"#FD2200\\\">项目相对路径</FONT
 >/* <font COLOR=\\\"#FF0000\\\">XXX</FONT>”,这样就把此项目下的所有访问都会发放给tomcat去处理了,此时测试servlet已经可以正常访问。这样显然有点不太合理咯,就失去了做负载的意义。所以具体了解一下jkmount的配置吧。看下面:</P>\\n<p> </P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n第一种情形:部分静态页面需要apache处理,不转发给后端的tomcat<br /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-s
 pACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount\\n <wbr />/*  <wbr /><span> </SPAN> <wbr />router <wbr /> <wbr /><span> </SPAN> <wbr />###默认将所有请求转发给tomcat处理<br />\\n</SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JKUnmount</SPAN><span> </SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">/*.php  <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###php请求不交给tomcat处理<br />\\n\\nJKUnmount /*.htm  <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###htm请求不交给tomcat处理<br />\\n\\nJKUnmount /*.html\\n <wbr />router</SPAN><span> </SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">###html请求不交给tomcat处理</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(25
 5,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(0,0,0); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<font FACE=\\\"Verdana\\\"><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JKUnmount\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN>/css/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###css请求不交给tomcat处理<br />\\n\\nJKUnmount  <wbr /><span> </SPAN> <wbr /><span> </SPAN>/js/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr /><span> </SPAN>###js请求不交给tomcat处理</SPAN><br />\\n</FONT></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLo
 r: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JKUnmount\\n <wbr />/image/*\\n <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###image请求不交给tomcat</SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">处理</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n <wbr /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-
 TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">第二种情形:将所有请求转发到后端tomcat之后,将不同路径定位给不同的tomcat</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> 
 </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>router</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /login/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN>tomcat1</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=
 \\\"CoLor: rgb(255,0,0)\\\">JkMount /shop/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN>tomcat2</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /buy/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>tomcat3</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-ad
 just: auto; -webkit-text-stroke-width: 0px\\\">\\n <wbr /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">注意,这种情形下,必须要有这样的处理:</SPAN><br /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">worker.lis
 t=router,jkstatus,tomcat1,tomcat2,tomcat3</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">如果是第一种情形,tomcat1,tomcat2,tomcat3是不需要写在上面这个地方的</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"C
 oLor: rgb(255,0,0)\\\">而是写在下面:</SPAN><br /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">worker.router.balance_workers=tomcat1,tomcat2,tomcat3</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n实际使用中,应该是上述两种情形相结�
 �使用的较多,将静态内容交给apache处理,然后将动态内容分布到不同的服务器上。</P><br /><img src=\\\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\\\"> <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\\\" target=\\\"_blank\\\">青春就应该这样绽放</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\\\" target=\\\"_blank\\\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\\\" target=\\\"_blank\\\">你不得不信的星座秘密</a><img src=\
 \\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\\\">\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 06:24:03 +0000\",\"domain\":\"blog.sina.com.cn\",\"guid\":\"6a902f61d0de9b94802dd8639766aeca\",\"id\":\"1e3b253ba5e0a380e07202fe08241ac4\",\"lang\":\"zh-cn\",\"link\":\"http://blog.sina.com.cn/s/blog_6813a1a70101ujw1.html\",\"parseddate\":\"Sun, 23 Mar 2014 16:23:06 +0000\",\"postid\":\"375538de-6d1d-4b89-93ea-7bbc815ea231\",\"title\":\"apache与tomcat 配合使用,简单了解一下jkmount\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"标准好青年\"},\"content\":\"<p>\\napache与tomcat配合使用,可以将一些静态地址交给apache处理,以减少tomcat的压力,也就是说所有的请求都是先经过80端口apache,apache通过配置httpd来分发请求给tomcat,个人是这样简单理
 解的,如果什么理解错误请大家指正。</P>\\n<p>\\n我在与各个平台做接口的时候遇到了一个问题,servlet部署完毕确认无误以后,发现无法访问到servlet,查看tomcat的access日志,发现tomcat根本就没有接收到请求此servlet的请求,也就是说,apache根本就没有将此请求分发给tomcat.知道问题出在哪里就好办啦。\\n打开apache的配置文件httpd,找到你配置apache的分发,填入“jkmount /<font COLOR=\\\"#FD2200\\\">项目相对路径</FONT>/* <font COLOR=\\\"#FF0000\\\">XXX</FONT>”,这样就把此项目下的所有访问都会发放给tomcat去处理了,此时测试servlet已经可以正常访问。这样显然有点不太合理咯,就失去了做负载的意义。所以具体了解一下jkmount的配置吧。看下面:</P>\\n<p> </P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT
 : 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n第一种情形:部分静态页面需要apache处理,不转发给后端的tomcat<br /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount\\n <wbr />/*  <wbr /><span> </SPAN> <wbr />router <wbr /> <wbr /><span> </SPAN> <wbr />###默认将所有请求转发给tomcat处理<br />\\n</SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JKUnmount</SPAN><span> </SPAN><span S
 TYLE=\\\"CoLor: rgb(255,0,0)\\\">/*.php  <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###php请求不交给tomcat处理<br />\\n\\nJKUnmount /*.htm  <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###htm请求不交给tomcat处理<br />\\n\\nJKUnmount /*.html\\n <wbr />router</SPAN><span> </SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">###html请求不交给tomcat处理</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(0,0,0); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<font FACE=\\\"Verdana\\\"><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JKUnmount\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN>/css/*\
 \n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###css请求不交给tomcat处理<br />\\n\\nJKUnmount  <wbr /><span> </SPAN> <wbr /><span> </SPAN>/js/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr /><span> </SPAN>###js请求不交给tomcat处理</SPAN><br />\\n</FONT></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JKUnmount\\n <wbr />/image/*\\n <wbr /><span> </SPAN>router <wbr /> <wbr /><span> </SPAN> <wbr />###image请求不
 交给tomcat</SPAN><span STYLE=\\\"CoLor: rgb(255,0,0)\\\">处理</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n <wbr /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">第二种情形:将所有请求转发到后端tomcat之后,将不同路径定位给�
 �同的tomcat</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>router</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\
 ">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /login/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN>tomcat1</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /shop/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN>tomcat2</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust:
  auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">JkMount /buy/*\\n <wbr /><span> </SPAN> <wbr /><span> </SPAN> <wbr /><span> </SPAN>tomcat3</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n <wbr /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\
 \\"CoLor: rgb(255,0,0)\\\">注意,这种情形下,必须要有这样的处理:</SPAN><br /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">worker.list=router,jkstatus,tomcat1,tomcat2,tomcat3</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\
 "CoLor: rgb(255,0,0)\\\">如果是第一种情形,tomcat1,tomcat2,tomcat3是不需要写在上面这个地方的</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\"CoLor: rgb(255,0,0)\\\">而是写在下面:</SPAN><br /></P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n<span STYLE=\\\
 "CoLor: rgb(255,0,0)\\\">worker.router.balance_workers=tomcat1,tomcat2,tomcat3</SPAN><br />\\n</P>\\n<p STYLE=\\\"pADDinG-BoTToM: 5px; WiDoWs: 2; TexT-TrAnsForM: none; BACKGroUnD-CoLor: rgb(255,255,255); TexT-inDenT: 0px; MArGin: 0px; pADDinG-LeFT: 0px; pADDinG-riGHT: 0px; FonT: 14px/1.5 宋体; WHiTe-spACe: normal; orpHAns: 2; LeTTer-spACinG: normal; CoLor: rgb(17,66,70); WorD-spACinG: 0px; pADDinG-Top: 5px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px\\\">\\n实际使用中,应该是上述两种情形相结合使用的较多,将静态内容交给apache处理,然后将动态内容分布到不同的服务器上。</P><br /><img src=\\\"http://simg.sinajs.cn/blog7style/images/special/1265.gif\\\"> <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E5%86%99%E7%9C%9F\\\" target=\\\"_blank\\\">青春就应该这样绽放</a>  <a href=\\\"
 http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\\\" target=\\\"_blank\\\">游戏测试:三国时期谁是你最好的兄弟!!</a>  <a href=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http://qing.blog.sina.com.cn/tag/%E6%98%9F%E5%BA%A7\\\" target=\\\"_blank\\\">你不得不信的星座秘密</a><img src=\\\"http://sina.allyes.com/main/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http://simg.sinajs.cn/blog7style/images/common/sg_trans.gif?t=0\\\">\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 06:24:03 +0000\",\"id\":\"1e3b253ba5e0a380e07202fe08241ac4\",\"link\":\"http://blog.sina.com.cn/s/blog_6813a1a70101ujw1.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"apache与tom
 cat 配合使用,简单了解一下jkmount\",\"type\":\"blog\"},\"language\":{\"confidence\":62,\"tag\":\"zh\",\"tag_extended\":\"zh-cn\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Linux\"},\"blog\":{\"link\":\"http://www.linuxidc.com/\",\"title\":\"Linux公社 - Linux系统门户网站\"},\"blogid\":\"71099770\",\"content\":\"Apache Camel 2.13.0 发布了,可通过这里 下载 ,该版本经过了 6 个月的开发,包含一些新的组件用来集成 Splunk、Hadoop 2、Infinispan、JGroups 等。详情请看 release notes\\nApache Camel 是一个非常强大的基于规则的路由以及媒介引擎,该引擎提供了一个基于POJO的 企业应用模式(Enterprise Integration Patterns)的实现,你可以采用其异常强大且十分易用的API (可以说是一种Java的领域定义语言 Domain Specific Language)来配置其路由或者中介的规则。 通过这种领域定义语言,你可以在你的IDE中用简单的Java Code就可以写出一个类型安全并具有一定智能的规则描述文件。这与那种复杂的XML配置相比极大简化了规则定义开发。 当然Apache Camel也提供了
 一个对Spring 配置文件的支持。\\nApache Camel 的详细介绍:请点这里\\nApache Camel 的下载地址:请点这里\\n相关阅读:\\nApache Camel框架集成Spring http://www.linuxidc.com/Linux/2012-02/53564.htm\\nApache Camel框架入门示例 http://www.linuxidc.com/Linux/2012-02/53565.htm\\nApache Camel框架之事务控制 http://www.linuxidc.com/Linux/2012-02/54000.htm\\nApache Camel框架之JMS路由 http://www.linuxidc.com/Linux/2012-02/54001.htm\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 06:41:14 +0000\",\"domain\":\"www.linuxidc.com\",\"guid\":\"7a1732fd1f06963ea78e6e00626f5bdc\",\"id\":\"1e3b25620e42a100e0726b93894e2256\",\"lang\":\"zh-cn\",\"link\":\"http://www.linuxidc.com/Linux/2014-03/98702.htm\",\"links\":[\"http://www.linuxidc.com/Linux/2012-02/53564.htm\",\"http://www.linuxidc.com/Linux/2012-02/53565.htm\",\"http://www.linuxidc.com/Linux/2012-02/54000.htm\",\"http://www.linuxidc.com/Linux/2012-02/54001.htm\"],\"parseddate\":\"Su
 n, 23 Mar 2014 06:45:16 +0000\",\"postid\":\"2e863b15-7146-4143-905c-981eb64c6931\",\"title\":\"Apache Camel 2.13.0 发布,规则引擎\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Linux\"},\"content\":\"Apache Camel 2.13.0 发布了,可通过这里 下载 ,该版本经过了 6 个月的开发,包含一些新的组件用来集成 Splunk、Hadoop 2、Infinispan、JGroups 等。详情请看 release notes\\nApache Camel 是一个非常强大的基于规则的路由以及媒介引擎,该引擎提供了一个基于POJO的 企业应用模式(Enterprise Integration Patterns)的实现,你可以采用其异常强大且十分易用的API (可以说是一种Java的领域定义语言 Domain Specific Language)来配置其路由或者中介的规则。 通过这种领域定义语言,你可以在你的IDE中用简单的Java Code就可以写出一个类型安全并具有一定智能的规则描述文件。这与那种复杂的XML配置相比极大简化了规则定义�
 ��发。 当然Apache Camel也提供了一个对Spring 配置文件的支持。\\nApache Camel 的详细介绍:请点这里\\nApache Camel 的下载地址:请点这里\\n相关阅读:\\nApache Camel框架集成Spring http://www.linuxidc.com/Linux/2012-02/53564.htm\\nApache Camel框架入门示例 http://www.linuxidc.com/Linux/2012-02/53565.htm\\nApache Camel框架之事务控制 http://www.linuxidc.com/Linux/2012-02/54000.htm\\nApache Camel框架之JMS路由 http://www.linuxidc.com/Linux/2012-02/54001.htm\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 06:41:14 +0000\",\"id\":\"1e3b25620e42a100e0726b93894e2256\",\"link\":\"http://www.linuxidc.com/Linux/2014-03/98702.htm\",\"received_at\":4743640202461956381,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Camel 2.13.0 发布,规则引擎\",\"type\":\"blog\"},\"language\":{\"confidence\":66,\"tag\":\"zh\",\"tag_extended\":\"zh-cn\"},\"links\":{\"code\":[200,200,200,200],\"created_at\":[\"Sun, 23
  Mar 2014 06:59:54 +0000\",\"Sun, 23 Mar 2014 06:59:55 +0000\",\"Sun, 23 Mar 2014 06:59:57 +0000\",\"Sun, 23 Mar 2014 06:59:59 +0000\"],\"meta\":{\"charset\":[\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"Apache Camel提供了和Spring的集成,通过Spring容器(ApplicationContext)来管理Camel的CamelContext,这样的话,就不需要写代码来控\",\"Apache Camel是Apache基金会下的一个开源项目,它是一个基于规则路由和处理的引擎,提供企业集成模式的Java对象的实现,通过应用程\",\"本文简单介绍一下Apache Camel如何对route进行事务控制,首先介绍整个route只涉及到一个事务参与者的情况,然后再介绍route中涉及到\",\"继上次Camel如何在做项目集成类型的项目(见 http://www.linuxidc.com/Linux/2012-02/54002.htm )中用于从FTP取文件和传文件之后\"],\"keywords\":[[\"Apache\",\"Spring\",\"Apache 
 Camel\",\"Camel\",\"Apache Camel框架集成Spring\",\"服务器\",\"Linux服务器\",\"Apache\",\"Hadoop\",\"集群\",\"分布式\",\"Nginx\",\"Tomcat\",\"分布式系统\"],[\"Apache\",\"Apache Camel\",\"Camel\",\"Apache Camel框架入门示例\",\"服务器\",\"Linux服务器\",\"Apache\",\"Hadoop\",\"集群\",\"分布式\",\"Nginx\",\"Tomcat\",\"分布式系统\"],[\"Apache\",\"Apache Camel框架之事务控制\",\"服务器\",\"Linux服务器\",\"Apache\",\"Hadoop\",\"集群\",\"分布式\",\"Nginx\",\"Tomcat\",\"分布式系统\"],[\"Apache\",\"Apache Camel框架之JMS路由\",\"服务器\",\"Linux服务器\",\"Apache\",\"Hadoop\",\"集群\",\"分布式\",\"Nginx\",\"Tomcat\",\"分布式系统\"]],\"lang\":[\"zh\",\"zh\",\"zh\",\"zh\"]},\"normalized_url\":[\"http://linuxidc.com/Linux/2012-02/53564.htm\",\"http://linuxidc.com/Linux/2012-02/53565.htm\",\"http://linuxidc.com/Linux/2012-02/54000.htm\",\"http://linuxidc.com/Linux/2012-02/54001.htm\"],\"retweet_count\":[0,0,0,0],\"t
 itle\":[\"Apache Camel框架集成Spring_服务器应用_Linux公社-Linux系统门户网站\",\"Apache Camel框架入门示例_服务器应用_Linux公社-Linux系统门户网站\",\"Apache Camel框架之事务控制_服务器应用_Linux公社-Linux系统门户网站\",\"Apache Camel框架之JMS路由_服务器应用_Linux公社-Linux系统门户网站\"],\"url\":[\"http://www.linuxidc.com/Linux/2012-02/53564.htm\",\"http://www.linuxidc.com/Linux/2012-02/53565.htm\",\"http://www.linuxidc.com/Linux/2012-02/54000.htm\",\"http://www.linuxidc.com/Linux/2012-02/54001.htm\"]}}"
-"{\"blog\":{\"atomversion\":\"1.0\",\"author\":{\"link\":\"http://unix.stackexchange.com/users/63364\",\"name\":\"user3422709\"},\"blog\":{\"link\":\"http://unix.stackexchange.com/questions\",\"title\":\"Recent Questions - Unix & Linux Stack Exchange\"},\"blogid\":\"70930296\",\"content\":\"<p>I want to upgrade apache version from 2.2.15 to 2.4.4 in centos. is there need to download update file to a folder and update apache.is there any posibility? help me</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:12:01 +0000\",\"domain\":\"unix.stackexchange.com\",\"guid\":\"f63feb8825334de16e1dcd6def5759ad\",\"id\":\"1e3b27393172ae80e072be788cb08176\",\"lang\":\"en\",\"link\":\"http://unix.stackexchange.com/questions/121001/how-to-upgrade-apache-2-2-15-to-2-4-4-in-centos\",\"parseddate\":\"Sun, 23 Mar 2014 10:49:20 +0000\",\"postid\":\"488789d6-6eee-4247-b3d8-0cc8e11811f5\",\"title\":\"how to upgrade apache 2.2.15 to 2.4.4 in centos\",\"type\":\"post\",\"updated\":\"Sun, 
 23 Mar 2014 10:12:01 +0000\"},\"interaction\":{\"author\":{\"link\":\"http://unix.stackexchange.com/users/63364\",\"name\":\"user3422709\"},\"content\":\"<p>I want to upgrade apache version from 2.2.15 to 2.4.4 in centos. is there need to download update file to a folder and update apache.is there any posibility? help me</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:12:01 +0000\",\"id\":\"1e3b27393172ae80e072be788cb08176\",\"link\":\"http://unix.stackexchange.com/questions/121001/how-to-upgrade-apache-2-2-15-to-2-4-4-in-centos\",\"received_at\":4743640262723317531,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"how to upgrade apache 2.2.15 to 2.4.4 in centos\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":6},\"title\":{\"sentiment\":6}}}"
-"{\"blog\":{\"blog\":{\"link\":\"http://oto.detik.com/\",\"title\":\"oto.detik\"},\"blogid\":\"58741660\",\"content\":\"<img src=\\\"http://images.detik.com/content/2014/03/23/647/covertvs.jpg\\\" align=\\\"left\\\" hspace=\\\"7\\\" width=\\\"100\\\" />4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu.<img width='1' height='1' src='http://detik.feedsportal.com/c/33613/f/656103/s/38817599/mf.gif' border='0'/><br clear='all'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href=\\\"http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/twitter.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://s
 hare.feedsportal.com/share/facebook/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/facebook.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/linkedin.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/googleplus.png\\\" border=\
 \\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/email/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/email.png\\\" border=\\\"0\\\" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/1/rc.htm\\\" rel=\\\"nofollow\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/1/rc.img\\\" border=\\\"0\\\"/></a><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/2/rc.htm\\\" rel=\\\"nofollow\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/2/rc.img\\\" border=\\\"0\\\"/></a><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/388175
 99/rc/3/rc.htm\\\" rel=\\\"nofollow\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/3/rc.img\\\" border=\\\"0\\\"/></a><br/><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/a2.htm\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/a2.img\\\" border=\\\"0\\\"/></a><img width=\\\"1\\\" height=\\\"1\\\" src=\\\"http://pi.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/a2t.img\\\" border=\\\"0\\\"/>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:20:27 +0000\",\"domain\":\"oto.detik.com\",\"enclosure\":{\"length\":\"10240\",\"type\":\"image/jpg\",\"url\":\"http://detik.feedsportal.com/c/33613/f/656103/e/1/s/38817599/l/0Limages0Bdetik0N0Ccontent0C20A140C0A30C230C6470Ccovertvs0Bjpg/covertvs.jpg\"},\"guid\":\"93b3473955afddad63f7b3114649900e\",\"id\":\"1e3b274c0b0aa780e072d88bd3090e90\",\"lang\":\"ms\",\"link\":\"http://oto.detik.com/re
 adfoto/2014/03/23/172027/2534055/647/1/tvs-apache-taklukkan-ganasnya-kalimantan\",\"parseddate\":\"Sun, 23 Mar 2014 12:50:31 +0000\",\"postid\":\"2b77192b-e580-48d9-b13c-1b39e02c6db1\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\"type\":\"post\"},\"interaction\":{\"content\":\"<img src=\\\"http://images.detik.com/content/2014/03/23/647/covertvs.jpg\\\" align=\\\"left\\\" hspace=\\\"7\\\" width=\\\"100\\\" />4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu.<img width='1' height='1' src='http://detik.feedsportal.com/c/33613/f/656103/s/38817599/mf.gif' border='0'/><br clear='all'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href=\\\"http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Ap
 ache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/twitter.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/facebook.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/linkedin.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-takl
 ukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/googleplus.png\\\" border=\\\"0\\\" /></a> <a href=\\\"http://share.feedsportal.com/share/email/?u=http%3A%2F%2Foto.detik.com%2Freadfoto%2F2014%2F03%2F23%2F172027%2F2534055%2F647%2F1%2Ftvs-apache-taklukkan-ganasnya-kalimantan&t=TVS+Apache+Taklukkan+Ganasnya+Kalimantan\\\" target=\\\"_blank\\\"><img src=\\\"http://res3.feedsportal.com/social/email.png\\\" border=\\\"0\\\" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/1/rc.htm\\\" rel=\\\"nofollow\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/1/rc.img\\\" border=\\\"0\\\"/></a><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/2/rc.htm\\\" rel=\\\"nofollow\\\"><img src=\\\"http://da.feedsportal.com/r/
 191801893726/u/0/f/656103/c/33613/s/38817599/rc/2/rc.img\\\" border=\\\"0\\\"/></a><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/3/rc.htm\\\" rel=\\\"nofollow\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/rc/3/rc.img\\\" border=\\\"0\\\"/></a><br/><br/><a href=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/a2.htm\\\"><img src=\\\"http://da.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/a2.img\\\" border=\\\"0\\\"/></a><img width=\\\"1\\\" height=\\\"1\\\" src=\\\"http://pi.feedsportal.com/r/191801893726/u/0/f/656103/c/33613/s/38817599/a2t.img\\\" border=\\\"0\\\"/>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:20:27 +0000\",\"id\":\"1e3b274c0b0aa780e072d88bd3090e90\",\"link\":\"http://oto.detik.com/readfoto/2014/03/23/172027/2534055/647/1/tvs-apache-taklukkan-ganasnya-kalimantan\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"
 title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"id\",\"tag_extended\":\"id\"}}"
-"{\"blog\":{\"atomversion\":\"1.0\",\"author\":{\"name\":\"basyura\"},\"blog\":{\"link\":\"http://d.hatena.ne.jp/basyura/\",\"title\":\"basyura's blog\"},\"blogid\":\"55821125\",\"content\":\"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\\n<pre class=\\\"code\\\" data-unlink><VirtualHost *:80>\\n  ProxyPass /sample http://localhost:3000/sample\\n  ProxyPassReverse /sample http://localhost:3000/sample\\n</VirtualHost></pre><p>config/environments/development.rb</p>\\n<pre class=\\\"code\\\" data-unlink>config.relative_url_root = <span class=\\\"synSpecial\\\">\\\"</span><span class=\\\"synConstant\\\">/sample</span><span class=\\\"synSpecial\\\">\\\"</span>\\n</pre><p>起動</p>\\n<pre class=\\\"code\\\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \\\"/sample/assets/\\\"</
 code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:56:24 +0000\",\"domain\":\"d.hatena.ne.jp\",\"guid\":\"1e2c1f54e6c6548c4381b6e9a6361cea\",\"id\":\"1e3b279c65cbac00e0729be4b09bfd5c\",\"lang\":\"ja\",\"link\":\"http://blog.basyura.org/entry/2014/03/23/195624\",\"links\":[\"http://localhost:3000\",\"http://localhost/sample\",\"http://localhost:3000/sample\"],\"parseddate\":\"Sun, 23 Mar 2014 15:32:03 +0000\",\"postid\":\"1426a00d-f33f-4144-b396-5160bda65a31\",\"title\":\"apache + rails をサブディレクトリで動かしたい\",\"type\":\"post\",\"updated\":\"Sun, 23 Mar 2014 10:56:24 +0000\"},\"interaction\":{\"author\":{\"name\":\"basyura\"},\"content\":\"<p><code>http://localhost:3000</code> じゃなくて、<code>http://localhost/sample</code> で動かしたい。</p><p>httpd.conf</p>\\n<pre class=\\\"code\
 \\" data-unlink><VirtualHost *:80>\\n  ProxyPass /sample http://localhost:3000/sample\\n  ProxyPassReverse /sample http://localhost:3000/sample\\n</VirtualHost></pre><p>config/environments/development.rb</p>\\n<pre class=\\\"code\\\" data-unlink>config.relative_url_root = <span class=\\\"synSpecial\\\">\\\"</span><span class=\\\"synConstant\\\">/sample</span><span class=\\\"synSpecial\\\">\\\"</span>\\n</pre><p>起動</p>\\n<pre class=\\\"code\\\" data-unlink>bundle exec thin start --prefix /sample</pre><p>できたけど正解が分からない。</p><p><code>application.rb</code> に <code>config.assets.prefix = \\\"/sample/assets/\\\"</code> と定義すればいいのかと思ってたけど違ったみたい。こっちはどういう時に使うのかよく分からんかった。</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 10:56:24 +0000\",\"id\":\"1e3b279c65cbac00e0729be4b09bfd5c\",\"link\":\"http://blog.basyura.org/entry/2014/03/23/195624\",\"schema\":{
 \"version\":3},\"subtype\":\"post\",\"title\":\"apache + rails をサブディレクトリで動かしたい\",\"type\":\"blog\"},\"language\":{\"confidence\":49,\"tag\":\"ja\",\"tag_extended\":\"ja\"},\"links\":{\"code\":[404],\"created_at\":[\"Sun, 23 Mar 2014 15:41:17 +0000\"],\"hops\":[[\"http://localhost/sample\"]],\"normalized_url\":[null],\"retweet_count\":[0],\"title\":[\"null\"],\"url\":[\"http://localhost/sample\"]}}"
-"{\"blog\":{\"author\":{\"name\":\"Vincenzo Avallone\"},\"blog\":{\"link\":\"http://www.maidirecalcio.com/\",\"title\":\"Mai Dire Calcio\"},\"blogid\":\"71333736\",\"content\":\"<p>Il messaggio recapitato al commissario tecnico della Nazionale argentina è forte e chiaro: gli argentini vogliono Carlitos Tevez ai Mondiali. Nel Barrio di Ciudadela infatti, periferia di Buenos Aires non lontano dal quartiere di origine dell’ Apache, un muro è stato colorato di albiceleste, come fosse la schiena di un giocatore immaginario che veste la […]</p><p>The post <a\\nrel=\\\"nofollow\\\" href=\\\"http://www.maidirecalcio.com/2014/03/23/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\\\">Tevez, Fuerte Apache si mobilita per portarlo al Mondiale</a> appeared first on <a\\nrel=\\\"nofollow\\\" href=\\\"http://www.maidirecalcio.com\\\">Mai Dire Calcio</a>.</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 11:15:06 +0000\",\"domain\":\"www.maidirecalcio.com\",\"guid\":
 \"e9bc0c5da4bbccea8531762935b3d759\",\"id\":\"1e3b27c63205a900e072218749574b36\",\"lang\":\"it\",\"link\":\"http://www.maidirecalcio.com/2014/03/23/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\",\"parseddate\":\"Sun, 23 Mar 2014 11:53:33 +0000\",\"postid\":\"8c831eeb-c75b-4c15-9bd8-7ffe0c2d1aaa\",\"title\":\"Tevez, Fuerte Apache si mobilita per portarlo al Mondiale\",\"type\":\"post\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"name\":\"Vincenzo Avallone\"},\"content\":\"<p>Il messaggio recapitato al commissario tecnico della Nazionale argentina è forte e chiaro: gli argentini vogliono Carlitos Tevez ai Mondiali. Nel Barrio di Ciudadela infatti, periferia di Buenos Aires non lontano dal quartiere di origine dell’ Apache, un muro è stato colorato di albiceleste, come fosse la schiena di un giocatore immaginario che veste la […]</p><p>The post <a\\nrel=\\\"nofollow\\\" href=\\\"http://www.maidirecalcio.com/2014/03/23/tevez-fuerte-apache-si
 -mobilita-per-portarlo-mondiale.html\\\">Tevez, Fuerte Apache si mobilita per portarlo al Mondiale</a> appeared first on <a\\nrel=\\\"nofollow\\\" href=\\\"http://www.maidirecalcio.com\\\">Mai Dire Calcio</a>.</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 11:15:06 +0000\",\"id\":\"1e3b27c63205a900e072218749574b36\",\"link\":\"http://www.maidirecalcio.com/2014/03/23/tevez-fuerte-apache-si-mobilita-per-portarlo-mondiale.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Tevez, Fuerte Apache si mobilita per portarlo al Mondiale\",\"type\":\"blog\"},\"language\":{\"confidence\":92,\"tag\":\"it\",\"tag_extended\":\"it\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Jose Manuel Ibáñez Argos\"},\"blog\":{\"link\":\"http://informaticayseguridad.blogspot.com/\",\"title\":\"Blog de Informática y Seguridad en Internet\"},\"blogid\":\"54303941\",\"content\":\"Se han anunciado dos vulnerabilidades en el servidor web Apache que  podrían permitir a un atacante remoto provocar condiciones de denegación de servicio.  Apache es el servidor web más popular del mundo, usado por más del 52% de los sitios web, disponible en código fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS/2 y Novell NetWare. Detalle e Impacto de las las vulnerabilidades  El primero de los problemas (con CVE-2014-0098) reside en mod_log_config al tratar cookies truncadas. Por otra parte, un problema (con CVE-2013-6438) en el tratamiento de XML en mod_dav al calcular de forma incorrecta el final de una cadena al eliminar espacios iniciales y situar un carácter NUL fuera del búfer. 
  Recomendación\\nApache ha publicado la versión 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http://httpd.apache.org/download.cgi Más información\\nApache httpd 2.4 vulnerabilities http://httpd.apache.org/security/vulnerabilities_24.html Changes with Apache 2.4.9 http://www.apache.org/dist/httpd/CHANGES_2.4.9 Fuente: Hispasec\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 11:18:25 +0000\",\"domain\":\"informaticayseguridad.blogspot.com\",\"guid\":\"588afa42e7391ab3061d8032a1be10a6\",\"id\":\"1e3b27cd9bd5a680e072f29ae72e07b6\",\"lang\":\"es\",\"link\":\"http://informaticayseguridad.blogspot.com/2014/03/servidor-web-dos-vulnerabilidades-en-el.html\",\"links\":[\"http://httpd.apache.org/download.cgi\",\"http://httpd.apache.org/security/vulnerabilities_24.html\",\"http://www.apache.org/dist/httpd/CHANGES_2.4.9\"],\"parseddate\":\"Sun, 23 Mar 2014 11:39:50 +0000\",\"postid\":\"cad3d44a-c491-42d8-8a72-3aa6e6d2c1e1\",\"title\":\"SERVIDOR WEB.  
 Dos vulnerabilidades en el Apache\",\"type\":\"post\"},\"demographic\":{\"gender\":\"mostly_male\"},\"interaction\":{\"author\":{\"name\":\"Jose Manuel Ibáñez Argos\"},\"content\":\"Se han anunciado dos vulnerabilidades en el servidor web Apache que  podrían permitir a un atacante remoto provocar condiciones de denegación de servicio.  Apache es el servidor web más popular del mundo, usado por más del 52% de los sitios web, disponible en código fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS/2 y Novell NetWare. Detalle e Impacto de las las vulnerabilidades  El primero de los problemas (con CVE-2014-0098) reside en mod_log_config al tratar cookies truncadas. Por otra parte, un problema (con CVE-2013-6438) en el tratamiento de XML en mod_dav al calcular de forma incorrecta el final de una cadena al eliminar espacios iniciales y situar un carácter NUL fuera del búfer.  Recomendación\\nApache ha publicado la vers
 ión 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http://httpd.apache.org/download.cgi Más información\\nApache httpd 2.4 vulnerabilities http://httpd.apache.org/security/vulnerabilities_24.html Changes with Apache 2.4.9 http://www.apache.org/dist/httpd/CHANGES_2.4.9 Fuente: Hispasec\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 11:18:25 +0000\",\"id\":\"1e3b27cd9bd5a680e072f29ae72e07b6\",\"link\":\"http://informaticayseguridad.blogspot.com/2014/03/servidor-web-dos-vulnerabilidades-en-el.html\",\"received_at\":4743640275696469253,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"SERVIDOR WEB.  Dos vulnerabilidades en el Apache\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"es\",\"tag_extended\":\"es\"},\"links\":{\"code\":[200,200,200],\"created_at\":[\"Sat, 22 Mar 2014 23:19:50 +0000\",\"Sun, 23 Mar 2014 11:51:11 +0000\",\"Sun, 23 Mar 2014 11:51:12 +0000\"],\"meta\":{\"charset\":[\"UTF-8\",\"UTF-8\",\"\"],\"cont
 ent_type\":[\"text/html\",\"text/html\",\"\"],\"lang\":[\"unknown\",\"unknown\",\"\"]},\"normalized_url\":[\"http://httpd.apache.org/download.cgi\",\"http://httpd.apache.org/security/vulnerabilities_24.html\",\"http://www.apache.org/dist/httpd/CHANGES_2.4.9\"],\"retweet_count\":[0,0,0],\"title\":[\"Download - The Apache HTTP Server Project\",\"httpd 2.4 vulnerabilities - The Apache HTTP Server Project\",\"null\"],\"url\":[\"http://httpd.apache.org/download.cgi\",\"http://httpd.apache.org/security/vulnerabilities_24.html\",\"http://www.apache.org/dist/httpd/CHANGES_2.4.9\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-7,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"final de una cadena\",\"condiciones de denegación\",\"incluyendo diversas implementaciones\",\"popular del mundo\",\"infinidad de plataformas\",\"situar un carácter\",\"tratamiento de XML\",\"dos vulnerabilidades\",\"servidor web\",\"a
 tacante remoto\",\"sitios web\",\"otra parte\",\"forma incorrecta\",\"espacios iniciales\",\"vulnerabilities http\"]},{\"name\":\"Microsoft\",\"sentiment\":13,\"confident\":1,\"label\":\"Company\",\"evidence\":2,\"type\":\"Company\",\"about\":1,\"themes\":[\"condiciones de denegación\",\"incluyendo diversas implementaciones\",\"popular del mundo\",\"infinidad de plataformas\",\"dos vulnerabilidades\",\"servidor web\",\"atacante remoto\",\"sitios web\"]}],\"sentiment\":-2,\"topics\":[{\"name\":\"Software e Internet\",\"score\":0.63400012254715,\"additional\":\"Se han anunciado dos vulnerabilidades en el servidor web Apache que podrían permitir a un atacante remoto provocar condiciones de denegación de servicio. Apache es el servidor web más popular del mundo, usado por más del 52% de los sitios web, disponible en código fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS/2 y Novell NetWare. Recomendación Apache ha public
 ado la versión 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http://httpd.apache.org/download.cgi Más información Apache httpd 2.4 vulnerabilities http://httpd.apache.org/security/vulnerabilities_24.html\",\"hits\":0},{\"name\":\"Tecnología\",\"score\":0.50564223527908,\"additional\":\"Se han anunciado dos vulnerabilidades en el servidor web Apache que podrían permitir a un atacante remoto provocar condiciones de denegación de servicio. Apache es el servidor web más popular del mundo, usado por más del 52% de los sitios web, disponible en código fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS/2 y Novell NetWare. Recomendación Apache ha publicado la versión 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http://httpd.apache.org/download.cgi Más información Apache httpd 2.4 vulnerabilities http://httpd.apache.org/security/vulnerabilities_24.html\",\"hits\":0},{
 \"name\":\"Medios de Comunicación Social\",\"score\":0.46225720643997,\"additional\":\"Se han anunciado dos vulnerabilidades en el servidor web Apache que podrían permitir a un atacante remoto provocar condiciones de denegación de servicio. Apache es el servidor web más popular del mundo, usado por más del 52% de los sitios web, disponible en código fuente y para infinidad de plataformas, incluyendo diversas implementaciones de UNIX, Microsoft Windows , OS/2 y Novell NetWare. Recomendación Apache ha publicado la versión 2.4.9 destinada a corregir estos problemas, que puede descargarse desde, http://httpd.apache.org/download.cgi Más información Apache httpd 2.4 vulnerabilities http://httpd.apache.org/security/vulnerabilities_24.html\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"FunPonsel\"},\"blog\":{\"link\":\"http://funponsel.org/\",\"title\":\"PonSeL Indonesia.\"},\"blogid\":\"71176595\",\"content\":\"TVS Apache Taklukkan Ganasnya Kalimantan Pool – detikOto Minggu, 23/03/2014 17:20 WIB  - 4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu melintasi rute khas wilayah Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kal-Sel. Istimewa/TVS. Komentar (0 Komentar) Urutkan berdasar : Share|\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 13:03:00 +0000\",\"domain\":\"funponsel.org\",\"guid\":\"9cc4cab8a6376d8cafcbeaa80f0d3282\",\"id\":\"1e3b28b75ee5aa00e072a0c0d1521cc2\",\"lang\":\"ms\",\"link\":\"http://funponsel.org/33178/tvs-apache-taklukkan-ganasnya-kalimantan.ht
 ml\",\"parseddate\":\"Sun, 23 Mar 2014 13:07:27 +0000\",\"postid\":\"648d8f04-5dd8-4cfc-b400-e53f10e862c3\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"FunPonsel\"},\"content\":\"TVS Apache Taklukkan Ganasnya Kalimantan Pool – detikOto Minggu, 23/03/2014 17:20 WIB  - 4 Unit pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu melintasi rute khas wilayah Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kal-Sel. Istimewa/TVS. Komentar (0 Komentar) Urutkan berdasar : Share|\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 13:03:00 +0000\",\"id\":\"1e3b28b75ee5aa00e072a0c0d1521cc2\",\"link\":\"http://funponsel.org/33178/tvs-apache-taklukkan-ganasnya-kalimantan.html\",\
 "received_at\":4743640296833951570,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TVS Apache Taklukkan Ganasnya Kalimantan\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"id\",\"tag_extended\":\"id\"}}"
-"{\"blog\":{\"author\":{\"name\":\"Archive\"},\"blog\":{\"link\":\"http://www.devheads.net/\",\"title\":\"DevHeads.net - Developer Notes\"},\"blogid\":\"56002132\",\"category\":\"User\",\"content\":\"<p>Here is the example of what I am trying to do.</p>\\n<p>JBoss Webserver Private IP : 192.168.10.100</p>\\n<p>JBoss Webserver Public IP 172.x.x.x</p>\\n<p>Server connected to Jboss: 192.168.10.101 & 192.168.10.102</p>\\n<p>If I am on the Jboss machine I can access 192.168.10.101\\\\abc\\\\test.html</p>\\n<p>If I am outside the network its not possible to access URL<br />\\n192.168.10.101\\\\abc\\\\test.html</p>\\n<p>To solve the problem I have PAC file as a proxy for my browser which<br />\\nredirect all request for 192.168.10.101 address to apache httpd proxy<br />\\nserver which sits inside the (192.168.x.x) network.</p>\\n<p>Upto this point everything works OK.</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 14:34:15 +0000\",\"domain\":\"www.devheads.net\",\"guid\"
 :\"41571cd1022a2d8c8489c7a5ff5de4db\",\"id\":\"1e3b29835490ad80e072e841574845c2\",\"lang\":\"en\",\"link\":\"http://www.devheads.net/server/apache/user/apache-httpd-proxy-configuration.htm\",\"parseddate\":\"Sun, 23 Mar 2014 14:48:42 +0000\",\"postid\":\"c2729127-a37c-4999-abc0-64b574c1bab5\",\"title\":\"[users@httpd] apache httpd proxy configuration\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Archive\"},\"content\":\"<p>Here is the example of what I am trying to do.</p>\\n<p>JBoss Webserver Private IP : 192.168.10.100</p>\\n<p>JBoss Webserver Public IP 172.x.x.x</p>\\n<p>Server connected to Jboss: 192.168.10.101 & 192.168.10.102</p>\\n<p>If I am on the Jboss machine I can access 192.168.10.101\\\\abc\\\\test.html</p>\\n<p>If I am outside the network its not possible to access URL<br />\\n192.168.10.101\\\\abc\\\\test.html</p>\\n<p>To solve the problem I have PAC file as a proxy for my browser which<br />\\nredirect all request for 192.168.10.101 address to apache h
 ttpd proxy<br />\\nserver which sits inside the (192.168.x.x) network.</p>\\n<p>Upto this point everything works OK.</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 14:34:15 +0000\",\"id\":\"1e3b29835490ad80e072e841574845c2\",\"link\":\"http://www.devheads.net/server/apache/user/apache-httpd-proxy-configuration.htm\",\"received_at\":4743640321305275164,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"[users@httpd] apache httpd proxy configuration\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Jboss\",\"sentiment\":-4,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"httpd proxy server\"]}],\"sentiment\":0,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.50918489694595,\"additional\":\"Here is the example of what I am trying to do. Server connected to Jboss: 192.168.10.101 & 192.168.10.102 If I am o
 n the Jboss machine I can access 192.168.10.101\\\\abc\\\\test.html If I am outside the network its not possible to access URL 192.168.10.101\\\\abc\\\\test.html To solve the problem I have PAC file as a proxy for my browser which redirect all request for 192.168.10.101 address to apache httpd proxy server which sits inside the (192.168.x.x) network.\",\"hits\":0}]},\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"Software and Internet\",\"score\":0.50268775224686,\"additional\":\"[users@httpd] apache httpd proxy configuration\",\"hits\":0}]}}}"
-"{\"blog\":{\"author\":{\"name\":\"Pablo Villalobos\"},\"blog\":{\"link\":\"http://cinematerapia.blogspot.com/\",\"title\":\"Sólo Cine\"},\"blogid\":\"35825511\",\"content\":\"Esto viene a ser como Rambo, nadamás que con un indio apache acabando con todo el regimiento militar norteamericano.\\nY es de las que deben haber visto Tarantino y Rodríguez porque la música cambia abruptamente, y hay cortes justito antes de las malas palabras. Sí, cortes con el ruido que hace una edición con sierra eléctrica.\\nCorría el año de 1866 y resulta que los soldados de la confederación ya estaban por irse a sus casas y nada, que Sam Glass acepta quedarse horas extras porque la paga será buena y quiere comprarse un pedacito de tierra para vivir tranquilamente con Martha, su mujer. Y le escribe una carta explicándole su demora y le envía una cajita musical para que se entretenga en lo que él llega. Y acá anda el indio ''camisa amarilla'' mate y mate soldados y en cortes vemos a Martha
  cantando una canción mientras o lava la ropa en agua hirviendo afuera en el patio o prepara mantequilla, no entendí, el caso es que ella, en sus días de ocio y hastío, compuso la letra para la música de la cajita y ahora con ella pasa el tiempo más musicalmente en espera de su esposo.\\nSi he sabido que al final durante los créditos me cantarían la canción con la trama no habría puesto tanta atención. Al final te cuenta toda la historia, y dice:\\nBajo el cielo azul que cubre desiertos, valles y montañas, había un indio muy pacífico que se cansó de ver morir a su pueblo. Por ser como era la tribu mezcaleros lo eligió como jefe y se puso la camisa amarilla. Hasta fumó la pipa de la paz con el hombre blanco, quienes lo llamaban ''ella''.\\nPero un día alguien rompió la promesa y con todo el dolor de su corazón, este indio tuvo que pelear para proteger su tierra y a su gente. \\nQué bueno que eran de los tranquilos!\",\"contenttype\":\"html\",\"created_at\":\"Sun
 , 23 Mar 2014 15:12:00 +0000\",\"domain\":\"cinematerapia.blogspot.com\",\"guid\":\"2617ab4c64af2bd63264a5ed826a3a73\",\"id\":\"1e3b29d7b54aa000e072875ee6772ff6\",\"lang\":\"es\",\"link\":\"http://cinematerapia.blogspot.com/2014/03/apache-blood-1975.html\",\"parseddate\":\"Sun, 23 Mar 2014 15:13:50 +0000\",\"postid\":\"611cc35f-5163-4918-9264-4cc790e2a0d8\",\"title\":\"Apache blood (1975)\",\"type\":\"post\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"name\":\"Pablo Villalobos\"},\"content\":\"Esto viene a ser como Rambo, nadamás que con un indio apache acabando con todo el regimiento militar norteamericano.\\nY es de las que deben haber visto Tarantino y Rodríguez porque la música cambia abruptamente, y hay cortes justito antes de las malas palabras. Sí, cortes con el ruido que hace una edición con sierra eléctrica.\\nCorría el año de 1866 y resulta que los soldados de la confederación ya estaban por irse a sus casas y nada, que Sam Glass acepta q
 uedarse horas extras porque la paga será buena y quiere comprarse un pedacito de tierra para vivir tranquilamente con Martha, su mujer. Y le escribe una carta explicándole su demora y le envía una cajita musical para que se entretenga en lo que él llega. Y acá anda el indio ''camisa amarilla'' mate y mate soldados y en cortes vemos a Martha cantando una canción mientras o lava la ropa en agua hirviendo afuera en el patio o prepara mantequilla, no entendí, el caso es que ella, en sus días de ocio y hastío, compuso la letra para la música de la cajita y ahora con ella pasa el tiempo más musicalmente en espera de su esposo.\\nSi he sabido que al final durante los créditos me cantarían la canción con la trama no habría puesto tanta atención. Al final te cuenta toda la historia, y dice:\\nBajo el cielo azul que cubre desiertos, valles y montañas, había un indio muy pacífico que se cansó de ver morir a su pueblo. Por ser como era la tribu mezcaleros lo eligió como je
 fe y se puso la camisa amarilla. Hasta fumó la pipa de la paz con el hombre blanco, quienes lo llamaban ''ella''.\\nPero un día alguien rompió la promesa y con todo el dolor de su corazón, este indio tuvo que pelear para proteger su tierra y a su gente. \\nQué bueno que eran de los tranquilos!\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 15:12:00 +0000\",\"id\":\"1e3b29d7b54aa000e072875ee6772ff6\",\"link\":\"http://cinematerapia.blogspot.com/2014/03/apache-blood-1975.html\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache blood (1975)\",\"type\":\"blog\"},\"language\":{\"confidence\":99,\"tag\":\"es\",\"tag_extended\":\"es\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Sam Glass\",\"sentiment\":28,\"confident\":1,\"label\":\"Person\",\"evidence\":3,\"type\":\"Person\",\"about\":1,\"themes\":[\"soldados de la confederación\",\"pedacito de tierra\",\"sierra eléctrica\",\"quedarse horas\",\"será buena\",\"cajita musical\"]},{\"name\":
 \"Martha\",\"sentiment\":28,\"confident\":1,\"label\":\"Person\",\"evidence\":3,\"type\":\"Person\",\"about\":1,\"themes\":[\"soldados de la confederación\",\"música de la cajita\",\"canción con la trama\",\"pedacito de tierra\",\"días de ocio\",\"sierra eléctrica\",\"quedarse horas\",\"será buena\",\"cajita musical\",\"camisa amarilla\",\"mate soldados\",\"cortes vemos\",\"agua hirviendo\",\"al final\",\"habría puesto\",\"tanta atención\"]}],\"sentiment\":5,\"topics\":[{\"name\":\"Matrimonio\",\"score\":0.47526702284813,\"additional\":\"Y acá anda el indio ''camisa amarilla'' mate y mate soldados y en cortes vemos a Martha cantando una canción mientras o lava la ropa en agua hirviendo afuera en el patio o prepara mantequilla, no entendí, el caso es que ella, en sus días de ocio y hastío, compuso la letra para la música de la cajita y ahora con ella pasa el tiempo más musicalmente en espera de su esposo. Por ser como era la tribu mezcaleros lo eligió como jefe y se p
 uso la camisa amarilla. Pero un día alguien rompió la promesa y con todo el dolor de su corazón, este indio tuvo que pelear para proteger su tierra y a su gente.\",\"hits\":0},{\"name\":\"Moda\",\"score\":0.46793013811111,\"additional\":\"Y le escribe una carta explicándole su demora y le envía una cajita musical para que se entretenga en lo que él llega. Y acá anda el indio ''camisa amarilla'' mate y mate soldados y en cortes vemos a Martha cantando una canción mientras o lava la ropa en agua hirviendo afuera en el patio o prepara mantequilla, no entendí, el caso es que ella, en sus días de ocio y hastío, compuso la letra para la música de la cajita y ahora con ella pasa el tiempo más musicalmente en espera de su esposo. Por ser como era la tribu mezcaleros lo eligió como jefe y se puso la camisa amarilla.\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"zhm\"},\"blog\":{\"link\":\"http://mnt.conf.blog.163.com\",\"title\":\"张传猛的运维博客\"},\"blogid\":\"72163773\",\"content\":\"<div><div><div>操作步骤:</div><div>1、vi /etc/httpd/conf/httpd.conf</div><div>找到 DocumentRoot \\\"/var/www/html\\\" 这一段 #apache的根目录</div><div>把/var/www/html 这个目录改为/home/wwwroot</div><div>再找到 <Directory \\\"/var/www/html\\\"> #定义apache /var/www/html这个区域</div><div>把 /var/www/html改成/home/wwwroot</div><div><br></div><div>service httpd restart     #重启Apache服务器</div><div><br></div><div>2、修改权限</div><div>/home/wwwroot 的权限是750,apache这个用户没有权限访问,你需要更改掉权限,可以这样改</div><div>chmod -R 755 /home/wwwroot/</div></div><div><br></div><div>3、错误排查:如果出现<b><font color=\\\"#ff0000\\\"   >You don't have permission to access</font>或者</b><font color=\\\"#ff0000\\\"   ><b>403 Fo
 rbidden</b></font></div><div><font color=\\\"#ff0000\\\"   ><b>在确定上面路径修改正常的情况下,①检查权限配置②检查是否关闭了Selinux,具体关闭方法,可以参考:</b></font><a style=\\\"line-height: 28px;\\\" href=\\\"http://mnt.conf.blog.163.com/blog/static/11566825820124159244238/\\\"   >http://mnt.conf.blog.163.com/blog/static/11566825820124159244238/</a></div><div><br></div><div>好久没有处理apache了,今天在修改默认目录时,发现老是不生效,竟然是Selinux没关惹的祸!!仅记提醒!</div></div>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 15:56:47 +0000\",\"domain\":\"mnt.conf.blog.163.com\",\"guid\":\"fb7ad3be06c05a4f5e284410da255578\",\"id\":\"1e3b2a3bce84a980e07217b61d96fa8e\",\"lang\":\"zh-cn\",\"link\":\"http://mnt.conf.blog.163.com/blog/static/1156682582014223115216252\",\"links\":[\"http://mnt.conf.blog.163.com/blog/static/11566825820124159244238/\"],\"parseddate\":\"Mon, 24 Mar 2014
  21:15:34 +0000\",\"postid\":\"2a85e3ea-0160-4a82-8805-d4b7da5f574c\",\"title\":\"CentOS下修改apache的默认目录无法生效原因\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"zhm\"},\"content\":\"<div><div><div>操作步骤:</div><div>1、vi /etc/httpd/conf/httpd.conf</div><div>找到 DocumentRoot \\\"/var/www/html\\\" 这一段 #apache的根目录</div><div>把/var/www/html 这个目录改为/home/wwwroot</div><div>再找到 <Directory \\\"/var/www/html\\\"> #定义apache /var/www/html这个区域</div><div>把 /var/www/html改成/home/wwwroot</div><div><br></div><div>service httpd restart     #重启Apache服务器</div><div><br></div><div>2、修改权限</div><div>/home/wwwroot 的权限是750,apache这个用户没有权限访问,你需要更改掉权限,可以这样改</div><div>chmod -R 755 /home/wwwroot/</div></div><div><br></div><div>3、错误排查:如果出现<b><font color=\\\"#ff0000\\\"   >You don't have permission to access</font>或
 者</b><font color=\\\"#ff0000\\\"   ><b>403 Forbidden</b></font></div><div><font color=\\\"#ff0000\\\"   ><b>在确定上面路径修改正常的情况下,①检查权限配置②检查是否关闭了Selinux,具体关闭方法,可以参考:</b></font><a style=\\\"line-height: 28px;\\\" href=\\\"http://mnt.conf.blog.163.com/blog/static/11566825820124159244238/\\\"   >http://mnt.conf.blog.163.com/blog/static/11566825820124159244238/</a></div><div><br></div><div>好久没有处理apache了,今天在修改默认目录时,发现老是不生效,竟然是Selinux没关惹的祸!!仅记提醒!</div></div>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 15:56:47 +0000\",\"id\":\"1e3b2a3bce84a980e07217b61d96fa8e\",\"link\":\"http://mnt.conf.blog.163.com/blog/static/1156682582014223115216252\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"CentOS下修改apache的默认目录无法生效原因\",\"type\":\"blog\"},\"language\":{\"confidence\":59,\"
 tag\":\"zh\",\"tag_extended\":\"zh-cn\"},\"links\":{\"code\":[200],\"created_at\":[\"Mon, 24 Mar 2014 21:21:26 +0000\"],\"meta\":{\"charset\":[\"GBK\"],\"content_type\":[\"text/html\"],\"description\":[\"关闭SeLinux,zhm的网易博客,张传猛的运维笔记|dos|window|linux运维|网站运维|服务器运维|,网站运维交流群:102123162\"],\"keywords\":[[\"关闭SeLinux\",\"日志\",\"zhm\",\"张传猛的运维博客\",\"网易博客\",\"网易\",\"blog\"]],\"lang\":[\"zh\"]},\"normalized_url\":[\"http://mnt.conf.blog.163.com/blog/static/11566825820124159244238\"],\"retweet_count\":[0],\"title\":[\"关闭SeLinux - zhm的日志 - 网易博客\"],\"url\":[\"http://mnt.conf.blog.163.com/blog/static/11566825820124159244238/\"]}}"
-"{\"blog\":{\"blog\":{\"link\":\"http://wiki.debian.org/recentchanges\",\"title\":\"Debian Wiki\"},\"blogid\":\"42307775\",\"content\":\"sync with English master\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:01:40 +0000\",\"domain\":\"wiki.debian.org\",\"guid\":\"3ee0e4feff2aa270db434a48f6b498dc\",\"id\":\"1e3b2accd50fa200e072765c2fd02fd4\",\"link\":\"https://wiki.debian.org/it/Apache?action=diff\",\"parseddate\":\"Sun, 23 Mar 2014 17:03:08 +0000\",\"postid\":\"41ffc682-fb6f-4e13-9539-65f751d7bca4\",\"title\":\"it/Apache\",\"type\":\"post\"},\"interaction\":{\"content\":\"sync with English master\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:01:40 +0000\",\"id\":\"1e3b2accd50fa200e072765c2fd02fd4\",\"link\":\"https://wiki.debian.org/it/Apache?action=diff\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"it/Apache\",\"type\":\"blog\"},\"language\":{\"confidence\":96,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"se
 ntiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"blog\":{\"author\":{\"name\":\"h.edwardbrooks\"},\"blog\":{\"link\":\"http://thepaintingsofhedwardbrooks.blogspot.com/\",\"title\":\"thepaintingsofhedwardbrooks\"},\"blogid\":\"57255908\",\"content\":\"Contemporary American Realism.\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:17:52 +0000\",\"domain\":\"thepaintingsofhedwardbrooks.blogspot.com\",\"guid\":\"9693810149ab770426684b0b00721950\",\"id\":\"1e3b2af10ac6a000e0725a79dfb3d6e8\",\"lang\":\"en\",\"link\":\"http://thepaintingsofhedwardbrooks.blogspot.com/2014/03/airstream-bosque-dapache-new-mexico-oil.html\",\"parseddate\":\"Mon, 24 Mar 2014 05:14:22 +0000\",\"postid\":\"823718b4-4007-4703-99e5-e15b120ef10b\",\"title\":\"Airstream-Bosque d'Apache New Mexico, Oil on Linen.\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"h.edwardbrooks\"},\"content\":\"Contemporary American Realism.\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 17:17:52 +0000\",\"id\":\"1e3b2af10ac6a000e0725a79dfb3
 d6e8\",\"link\":\"http://thepaintingsofhedwardbrooks.blogspot.com/2014/03/airstream-bosque-dapache-new-mexico-oil.html\",\"received_at\":4743640539679323429,\"schema\":{\"version\":3},\"subtype\

<TRUNCATED>

[24/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
index b9dc309..fb61b03 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
@@ -1,862 +1,862 @@
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/1384599202\/picture","id":"1384599202","link":"http:\/\/www.facebook.com\/profile.php?id=1384599202","name":"Harry Medina"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:23:48 +0000","id":"1384599202_10202229370960760","link":"http:\/\/www.youtube.com\/watch?v=QoDltFECFgI","message":"http:\/\/www.youtube.com\/watch?v=QoDltFECFgI","name":"Apache P\u00F3nmela en el aire","source":"http:\/\/www.youtube.com\/v\/QoDltFECFgI?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/1384599202\/picture","id":"1384599202","link":"http:\/\/www.facebook.com\/profile.php?id=1384599202","name":"Harry Medina"},"content":"http:\/\/www.youtube.com\/watch?v=QoDltFECFgI","created_at":"Wed, 02 Oct 2013 23:24:22 +0000","id":"1e32bb9b06b1aa00e06699f748eabed2","link":"http:\/\/www.facebook.com\/1384599202_10202229370960760","schema":{"vers
 ion":3},"source":"http:\/\/www.youtube.com\/v\/QoDltFECFgI?version=3&autohide=1&autoplay=1","subtype":"video","title":"Apache P\u00F3nmela en el aire","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 23:24:20 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"","url":"http:\/\/www.youtube.com\/watch?v=QoDltFECFgI","title":"Apache P\u00F3nmela en el aire","image":"http:\/\/i1.ytimg.com\/vi\/QoDltFECFgI\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"480","description":"","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/QoDltFECFgI","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/QoDltFECFgI","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=QoDltFECFgI","id":"com.google.android.youtube"}},"site":"@yout
 ube","url":"http:\/\/www.youtube.com\/watch?v=QoDltFECFgI","title":"Apache P\u00F3nmela en el aire","image":"http:\/\/i1.ytimg.com\/vi\/QoDltFECFgI\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/QoDltFECFgI"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=QoDltFECFgI"],"retweet_count":[0],"title":["Apache P\u00F3nmela en el aire - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=QoDltFECFgI"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"female"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001186762687\/picture","id":"100001186762687","link":"http:\/\/www.facebook.com\/profile.php?id=100001186762687","name":"Magdalena Piela"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:32:27 +0000","description":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","id":"100001186762687_567905416592345","link":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","message":"there are things that you should not do ... simply not...\nhttp:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","name":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","source":"http:\/\/www.youtube.com\/v\/mYMiEU0vKIM?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001186762687\/picture","id":"100001186762687","link":"http:\/\/www.facebook.com\/profile.php?id=100001186762687","name":"Magdalena Piela"},"content":"there are thing
 s that you should not do ... simply not...\nhttp:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","created_at":"Wed, 02 Oct 2013 23:32:38 +0000","id":"1e32bbae5c43a780e06676c9b3bc93d0","link":"http:\/\/www.facebook.com\/100001186762687_567905416592345","received_at":4743578121590502169,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/mYMiEU0vKIM?autohide=1&version=3&autoplay=1","subtype":"video","title":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 00:11:00 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["US Army Video - Apache Helicopter (ACDC - Thunderstruck)"],"keywords":[["US","Army"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","url":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","title":"US Army Video - Apache Helicopter
  (ACDC - Thunderstruck)","image":"http:\/\/i1.ytimg.com\/vi\/mYMiEU0vKIM\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"480","description":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/mYMiEU0vKIM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/mYMiEU0vKIM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","title":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","image":"http:\/\/i1.ytimg.com\/vi\/mYMiEU0vKIM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/mYMiEU0vKIM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=mYMiEU0vKIM"],"retweet_count":[0],"title":["US Army Video - Apache Helicopter (ACDC - Thunderstruck) - YouTube"],"url":["http:\/\/www.you
 tube.com\/watch?v=mYMiEU0vKIM"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0,"topics":[{"name":"War","score":0.64078038930893,"hits":0},{"name":"Aviation","score":0.48720294237137,"hits":0},{"name":"Video Games","score":0.45472154021263,"hits":0}]}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004185664005\/picture","id":"100004185664005","link":"http:\/\/www.facebook.com\/profile.php?id=100004185664005","name":"Jeff Moses"},"caption":"www.moderntimesmagazine.com","created_at":"Wed, 02 Oct 2013 23:32:49 +0000","description":"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages","id":"100004185664005_239409246208596","link":"http:\/\/www.moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php","message":"For Us Presents aren't the only people putting on great events! Check out Apache Lake Music Festival 2013 shit's going to be live!","name":"Apache Lake Music Festival Ramps Up For Third Try","source":"web","to":{"ids":["106816409488565","618209761535313"],"names":["For Us Presents","Apache Lake Music Festival 2013"]},"type":"link"},"i
 nteraction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004185664005\/picture","id":"100004185664005","link":"http:\/\/www.facebook.com\/profile.php?id=100004185664005","name":"Jeff Moses"},"content":"For Us Presents aren't the only people putting on great events! Check out Apache Lake Music Festival 2013 shit's going to be live!","created_at":"Wed, 02 Oct 2013 23:33:11 +0000","id":"1e32bbaf2e12a680e06698742eeb58a8","link":"http:\/\/www.facebook.com\/100004185664005_239409246208596","mention_ids":["106816409488565","618209761535313"],"mentions":["For Us Presents","Apache Lake Music Festival 2013"],"schema":{"version":3},"source":"web","subtype":"link","title":"Apache Lake Music Festival Ramps Up For Third Try","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 22:10:40 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"keywords":[["Apache Lake Music Festival","ALMF","Kongo\u2019s","Future Loves 
 Past","The Sugar Thieves","Apache Lake Resort and Marina","229.5 mile marker","Roosevelt","Ariz.","McDowell Mountain Music Festival","The Wiley Ones","Banana Gun","Mergence","Dry River Yacht Club","Jared and the Mill","Decker","Phoenix Metro","The Hourglass Cats","The Haymarket Squares","Sister Lip","Japhy\u2019s Descent","Kush County","Steff and the Articles","The Cordials","Elizabeth Rose","Mr. Mudd and Mr. Gold","Greyhound Soul","The Prowling Kind","Banshee Bones","Sun Ghost","Sasquanaut","Sara Robinson and the Midnight Special","The Black Moods","Princess","Walt Richardson","DJ Stowner","TKLB?","Kevin Redlich\/C-Posse\/Corey Golden Explosion","Ghetto Cowgirl","Huckleberry","The Senators","Northern Hustle"]],"lang":["unknown"],"opengraph":[{"description":"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages","type":"article","url":"http:\/\/www.moderntimesmagazine.com\
 /page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php","image":"http:\/\/www.moderntimesmagazine.com\/moderntimesimages2013\/MT_Images_1310\/ALMF_560.jpg","title":"Apache Lake Music Festival Ramps Up For Third Try"}]},"normalized_url":["http:\/\/moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php"],"retweet_count":[0],"title":["Apache Lake Music Festival Ramps Up For Third Try"],"url":["http:\/\/www.moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/106816409488565\/picture","id":"106816409488565","link":"http:\/\/www.facebook.com\/profile.php?id=106816409488565","name":"For Us Presents"},"caption":"www.moderntimesmagazine.com","created_at":"Wed, 02 Oct 2013 23:33:47 +0000","description":"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages","id":"106816409488565_125339574302915","link":"http:\/\/www.moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php","message":"We aint the only locals putting on awesome events! Check out Apache Lake Music Festival  coming up this month! It should be rather epic!","name":"Apache Lake Music Festival Ramps Up For Third Try","source":"web","to":{"ids":["122055604509070"],"names":["Apache Lake Music Festival"]},"type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\
 /106816409488565\/picture","id":"106816409488565","link":"http:\/\/www.facebook.com\/profile.php?id=106816409488565","name":"For Us Presents"},"content":"We aint the only locals putting on awesome events! Check out Apache Lake Music Festival  coming up this month! It should be rather epic!","created_at":"Wed, 02 Oct 2013 23:34:16 +0000","id":"1e32bbb15733af80e0669248f7499464","link":"http:\/\/www.facebook.com\/106816409488565_125339574302915","mention_ids":["122055604509070"],"mentions":["Apache Lake Music Festival"],"received_at":4743578121999296233,"schema":{"version":3},"source":"web","subtype":"link","title":"Apache Lake Music Festival Ramps Up For Third Try","type":"facebook"},"language":{"confidence":97,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 22:10:40 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"keywords":[["Apache Lake Music Festival","ALMF","Kongo\u2019s","Future Loves Past","The Sugar Thieves","Apache Lake Resort and Marina","
 229.5 mile marker","Roosevelt","Ariz.","McDowell Mountain Music Festival","The Wiley Ones","Banana Gun","Mergence","Dry River Yacht Club","Jared and the Mill","Decker","Phoenix Metro","The Hourglass Cats","The Haymarket Squares","Sister Lip","Japhy\u2019s Descent","Kush County","Steff and the Articles","The Cordials","Elizabeth Rose","Mr. Mudd and Mr. Gold","Greyhound Soul","The Prowling Kind","Banshee Bones","Sun Ghost","Sasquanaut","Sara Robinson and the Midnight Special","The Black Moods","Princess","Walt Richardson","DJ Stowner","TKLB?","Kevin Redlich\/C-Posse\/Corey Golden Explosion","Ghetto Cowgirl","Huckleberry","The Senators","Northern Hustle"]],"lang":["unknown"],"opengraph":[{"description":"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages","type":"article","url":"http:\/\/www.moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001
 .php","image":"http:\/\/www.moderntimesmagazine.com\/moderntimesimages2013\/MT_Images_1310\/ALMF_560.jpg","title":"Apache Lake Music Festival Ramps Up For Third Try"}]},"normalized_url":["http:\/\/moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php"],"retweet_count":[0],"title":["Apache Lake Music Festival Ramps Up For Third Try"],"url":["http:\/\/www.moderntimesmagazine.com\/page19\/Music_Apache_Lake_131001\/Music_Apache_Lake_131001.php"]},"salience":{"content":{"sentiment":9},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001967485067\/picture","id":"100001967485067","link":"http:\/\/www.facebook.com\/profile.php?id=100001967485067","name":"Felipe Cardoso"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:41:46 +0000","description":"Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka","id":"100001967485067_516580328417545","link":"https:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","message":"https:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","name":"Apache song - Tatanka","source":"http:\/\/www.youtube.com\/v\/PoO3yga6Ln8?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001967485067\/picture","id":"100001967485067","link":"http:\/\/www.facebook.com\/profile.php?id=100001967485067","name":"Felipe Cardoso"},"content":"https:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","created_at":"Wed, 02 Oct 2013 23:42:1
 0 +0000","id":"1e32bbc32f4da900e0666cecb54a8f3a","link":"http:\/\/www.facebook.com\/100001967485067_516580328417545","received_at":"A\u0513+\u0504,=","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/PoO3yga6Ln8?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache song - Tatanka","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 23:42:08 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka"],"keywords":[["Apache Song","Indi\u00E1nsk\u00E1 p\u00EDse\u0148","Indian song","Relax song"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka","url":"http:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","title":"Apache song - Tatanka","image":"https:\/\/i1.ytimg.com\/vi\/PoO3yga6Ln8\/hqdefaul
 t.jpg?feature=og"}],"twitter":[{"player_width":"480","description":"Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/PoO3yga6Ln8","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/PoO3yga6Ln8","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","title":"Apache song - Tatanka","image":"https:\/\/i1.ytimg.com\/vi\/PoO3yga6Ln8\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/PoO3yga6Ln8"}]},"normalized_url":["https:\/\/youtube.com\/watch?v=PoO3yga6Ln8"],"retweet_count":[0],"title":["Apache song - Tatanka - YouTube"],"url":["https:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8"]},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"
 confident":1,"label":"Company","evidence":1,"type":"Company","about":1}],"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001967485067\/picture","id":"100001967485067","link":"http:\/\/www.facebook.com\/profile.php?id=100001967485067","name":"Felipe Cardoso"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:42:44 +0000","description":"Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka","id":"100001967485067_516580495084195","link":"https:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","message":"Trabalhar ent\u00E3o :D \nhttps:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","name":"Apache song - Tatanka","source":"http:\/\/www.youtube.com\/v\/PoO3yga6Ln8?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001967485067\/picture","id":"100001967485067","link":"http:\/\/www.facebook.com\/profile.php?id=100001967485067","name":"Felipe Cardoso"},"content":"Trabalhar ent\u00E3o :D \nhttps:\/\/www.youtube.com\/watch?v
 =PoO3yga6Ln8","created_at":"Wed, 02 Oct 2013 23:43:16 +0000","id":"1e32bbc5586fa200e06602d8ed5fbfda","link":"http:\/\/www.facebook.com\/100001967485067_516580495084195","received_at":4743578124263229699,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/PoO3yga6Ln8?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache song - Tatanka","type":"facebook"},"language":{"confidence":62,"tag":"pt"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 23:42:08 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka"],"keywords":[["Apache Song","Indi\u00E1nsk\u00E1 p\u00EDse\u0148","Indian song","Relax song"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka","url":"http:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","title":"Apache song - Tatanka","image
 ":"https:\/\/i1.ytimg.com\/vi\/PoO3yga6Ln8\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"480","description":"Apache (Indian) song - Tatanka \/\/ Indi\u00E1nsk\u00E9 p\u00EDsn\u011B - Tatanka","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/PoO3yga6Ln8","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/PoO3yga6Ln8","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8","title":"Apache song - Tatanka","image":"https:\/\/i1.ytimg.com\/vi\/PoO3yga6Ln8\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/PoO3yga6Ln8"}]},"normalized_url":["https:\/\/youtube.com\/watch?v=PoO3yga6Ln8"],"retweet_count":[0],"title":["Apache song - Tatanka - YouTube"],"url":["https:\/\/www.youtube.com\/watch?v=PoO3yga6Ln8"]},"salience":{"content":{"sentiment":0},"
 title":{"sentiment":0}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100005172182096\/picture","id":"100005172182096","link":"http:\/\/www.facebook.com\/profile.php?id=100005172182096","name":"Melissa Wright"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:44:11 +0000","description":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","id":"100005172182096_202896713226067","link":"http:\/\/www.youtube.com\/attribution_link?a=2ITrTNk-GH0pXMd9WQQZkw&u=%2Fwatch%3Fv%3DmYMiEU0vKIM%26feature%3Dshare","message":"SOMEONE ANYONE PLEASE RE-SHARE THIS AS I HAVE BLOCKED THESE PEOPLE AND I NEED THEM TO KNOW IM ON TO YOU...............ALL FAKERS... IF YOU HATE A SCAM ARTIST THAT TAKES ADVANTAGE OF CAUSES FOR CHILDREN YOU WILL SHARE THIS POST.........\n\nTO THE IMMEDIATE ATTENTION OF THE PERSONS THAT TARGETED MY POST ON ADVOCATING CHILD ABUSE AND NEGLECT AND HUMAN TRAFFICKING AND CLIPED THEM WITHOUT RE-SHARING THEM.\n EVERY SIN
 GEL ONE OF YOU SHOULD BE ASHAMED OF YOUR SELFS FOR CLIPING POST AND PASSING THEM ON AS YOUR WORK AND WORDS IN THE NAME OF ADVOCATING THESE CAUSES. MY SOLE INTENT IN POSTING THE POST WAS TO RAISE AWARENESS TO THESE CAUSES BY RE-SAHRING THEM FOR COMMENTS WHICH IN TURN RAISES AWARENESS TO THE CAUSES THAT I NOT ONLY ADVOCATE FOR BUT EAT SLEEP AND BREATH TO DO SO. \n\nWITH THAT BEING SAID I FURTHER WISH FOR YOU ALL TO KNOW I REFUSE TO LET YOU CLIP MY POST TO DESCISE AS YOUR ON \u201CTO PULL ON THE HEART STRING OF OTHERS, IN THE NAME OF YOUR GREED AND ILL GOTTEN INTENT. I HAVE BEEN REMOVING ALL OF MY POST AND HAVE SEVERED TIES WITH YOU THAT HAVE DONE THIS. I HAVE FURTHER LOCKED DOWN THE GROUP SOLDIERS FOR CHILDREN AND YOU HAVE BEEN PERMITLY BANNED BECAUSE OF YOUR SHADY NATUER. \n I FURTHER WISH FOR YOU TO KNOW IM ON TO YOU \u201CFAKERS THAT GO AROUND PULLING ON THE HEART STRINGS OF THE PUBLIC FOR PERSONAL GAIN AND FAME AND TRUST ME WHEN I TELL YOU THIS: I WILL PUBLICLY EXPOSE YOU FOR WHAT
  YOU TRULY ARE. THEREFORE, SONG WRITERS AND MEMORIAL BUILDERS BEWARE BECAUSE I KNOW THINGS ABOUT YOU \u201CDONE DIRT CHEEP DEEDS THAT THE WHOLE WORLD WILL WANT TO KNOW ABOUT. SO WHEN PEOPLE QUESTION ME ABOUT WHO YOU ARE I WILL SIMPLY SAY IT CAN BE TOLD ON YOUR OWN TIMELINES TO BE FOUND THAT YOUR WORKS WAS NEVER YOUR OWN. \n\n IN CLOSING, I WOULD LIKE TO SAY THAT GOD SEES ALL THINGS AND TRUTH WILL ALWAYS BE SO JUST AS IT IS ALSO TRUE IN THE LAW OF HARVEST IT WILL BE SO WITH ME. THE LAW OF HARVEST\u2026\u2026REMEMBER THIS- IF YOU GIVE LITTLE, YOU WILL GET LITTLE. A FARMER WHO PLANTS JUST FEW SEEDS WILL ONLY GET SMALL CROP. BUT A FARMER THAT PLANTS MUCH, HE REEPS MUCH 11CORINTHIANS 9:6","name":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","source":"http:\/\/www.youtube.com\/v\/mYMiEU0vKIM?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100005172182096\/picture","id":"100005172182096","link":"http:\/\/www.fac
 ebook.com\/profile.php?id=100005172182096","name":"Melissa Wright"},"content":"SOMEONE ANYONE PLEASE RE-SHARE THIS AS I HAVE BLOCKED THESE PEOPLE AND I NEED THEM TO KNOW IM ON TO YOU...............ALL FAKERS... IF YOU HATE A SCAM ARTIST THAT TAKES ADVANTAGE OF CAUSES FOR CHILDREN YOU WILL SHARE THIS POST.........\n\nTO THE IMMEDIATE ATTENTION OF THE PERSONS THAT TARGETED MY POST ON ADVOCATING CHILD ABUSE AND NEGLECT AND HUMAN TRAFFICKING AND CLIPED THEM WITHOUT RE-SHARING THEM.\n EVERY SINGEL ONE OF YOU SHOULD BE ASHAMED OF YOUR SELFS FOR CLIPING POST AND PASSING THEM ON AS YOUR WORK AND WORDS IN THE NAME OF ADVOCATING THESE CAUSES. MY SOLE INTENT IN POSTING THE POST WAS TO RAISE AWARENESS TO THESE CAUSES BY RE-SAHRING THEM FOR COMMENTS WHICH IN TURN RAISES AWARENESS TO THE CAUSES THAT I NOT ONLY ADVOCATE FOR BUT EAT SLEEP AND BREATH TO DO SO. \n\nWITH THAT BEING SAID I FURTHER WISH FOR YOU ALL TO KNOW I REFUSE TO LET YOU CLIP MY POST TO DESCISE AS YOUR ON \u201CTO PULL ON THE HEART
  STRING OF OTHERS, IN THE NAME OF YOUR GREED AND ILL GOTTEN INTENT. I HAVE BEEN REMOVING ALL OF MY POST AND HAVE SEVERED TIES WITH YOU THAT HAVE DONE THIS. I HAVE FURTHER LOCKED DOWN THE GROUP SOLDIERS FOR CHILDREN AND YOU HAVE BEEN PERMITLY BANNED BECAUSE OF YOUR SHADY NATUER. \n I FURTHER WISH FOR YOU TO KNOW IM ON TO YOU \u201CFAKERS THAT GO AROUND PULLING ON THE HEART STRINGS OF THE PUBLIC FOR PERSONAL GAIN AND FAME AND TRUST ME WHEN I TELL YOU THIS: I WILL PUBLICLY EXPOSE YOU FOR WHAT YOU TRULY ARE. THEREFORE, SONG WRITERS AND MEMORIAL BUILDERS BEWARE BECAUSE I KNOW THINGS ABOUT YOU \u201CDONE DIRT CHEEP DEEDS THAT THE WHOLE WORLD WILL WANT TO KNOW ABOUT. SO WHEN PEOPLE QUESTION ME ABOUT WHO YOU ARE I WILL SIMPLY SAY IT CAN BE TOLD ON YOUR OWN TIMELINES TO BE FOUND THAT YOUR WORKS WAS NEVER YOUR OWN. \n\n IN CLOSING, I WOULD LIKE TO SAY THAT GOD SEES ALL THINGS AND TRUTH WILL ALWAYS BE SO JUST AS IT IS ALSO TRUE IN THE LAW OF HARVEST IT WILL BE SO WITH ME. THE LAW OF HARVEST\u2
 026\u2026REMEMBER THIS- IF YOU GIVE LITTLE, YOU WILL GET LITTLE. A FARMER WHO PLANTS JUST FEW SEEDS WILL ONLY GET SMALL CROP. BUT A FARMER THAT PLANTS MUCH, HE REEPS MUCH 11CORINTHIANS 9:6","created_at":"Wed, 02 Oct 2013 23:44:29 +0000","id":"1e32bbc89621a780e066fff38196ca16","link":"http:\/\/www.facebook.com\/100005172182096_202896713226067","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/mYMiEU0vKIM?autohide=1&version=3&autoplay=1","subtype":"video","title":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 00:11:00 +0000"],"hops":[["http:\/\/www.youtube.com\/attribution_link?a=2ITrTNk-GH0pXMd9WQQZkw&u=%2Fwatch%3Fv%3DmYMiEU0vKIM%26feature%3Dshare","http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM&feature=share"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["US Army Video - Apache Helicopter (ACDC - Thunderstruck)"],"keywo
 rds":[["US","Army"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","url":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","title":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","image":"http:\/\/i1.ytimg.com\/vi\/mYMiEU0vKIM\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"480","description":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/mYMiEU0vKIM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/mYMiEU0vKIM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM","title":"US Army Video - Apache Helicopter (ACDC - Thunderstruck)","image":"http:\/\/i1.ytimg.com\/vi\/mYMiEU0vKIM\/hqdefa
 ult.jpg","player":"https:\/\/www.youtube.com\/embed\/mYMiEU0vKIM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=mYMiEU0vKIM"],"retweet_count":[0],"title":["US Army Video - Apache Helicopter (ACDC - Thunderstruck) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=mYMiEU0vKIM"]},"salience":{"title":{"sentiment":0,"topics":[{"name":"War","score":0.64078038930893,"hits":0},{"name":"Aviation","score":0.48720294237137,"hits":0},{"name":"Video Games","score":0.45472154021263,"hits":0}]}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100003154316845\/picture","id":"100003154316845","link":"http:\/\/www.facebook.com\/profile.php?id=100003154316845","name":"Artur Rodrigues"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:51:50 +0000","description":"Enquanto a nossa produ\u00E7\u00E3o resolve tomar vergonha na cara e colocar o v\u00EDdeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso v\u00EDdeo pessoal gravado por...","id":"100003154316845_455573131224493","link":"http:\/\/www.youtube.com\/watch?v=jkYw-QuZToI","message":"Lembrei de tu Fellipe Moreira ,kkkkk se liga ai tbm Gleydison Ribeiro , massa d+ pivete ,hahahahahahaha","name":"BMD - Violeira de Apache","source":"http:\/\/www.youtube.com\/v\/jkYw-QuZToI?version=3&autohide=1&autoplay=1","to":{"ids":["100000843657444","100000091430993"],"names":["Fellipe Moreira","Gleydison Ribeiro"]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/
 graph.facebook.com\/100003154316845\/picture","id":"100003154316845","link":"http:\/\/www.facebook.com\/profile.php?id=100003154316845","name":"Artur Rodrigues"},"content":"Lembrei de tu Fellipe Moreira ,kkkkk se liga ai tbm Gleydison Ribeiro , massa d+ pivete ,hahahahahahaha","created_at":"Wed, 02 Oct 2013 23:52:20 +0000","id":"1e32bbd9af7eaf00e0669cbbe5197ab4","link":"http:\/\/www.facebook.com\/100003154316845_455573131224493","mention_ids":["100000843657444","100000091430993"],"mentions":["Fellipe Moreira","Gleydison Ribeiro"],"received_at":4743578126547750067,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/jkYw-QuZToI?version=3&autohide=1&autoplay=1","subtype":"video","title":"BMD - Violeira de Apache","type":"facebook"},"language":{"confidence":100,"tag":"pt"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 20:00:17 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Enquanto a nossa produ\u00E7\u00E3o resolve tomar vergonha na 
 cara e colocar o v\u00EDdeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso v\u00EDdeo pessoal gravado por..."],"keywords":[["BMD"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Enquanto a nossa produ\u00E7\u00E3o resolve tomar vergonha na cara e colocar o v\u00EDdeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso v\u00EDdeo pessoal gravado por...","url":"http:\/\/www.youtube.com\/watch?v=jkYw-QuZToI","title":"BMD - Violeira de Apache","image":"http:\/\/i1.ytimg.com\/vi\/jkYw-QuZToI\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"640","description":"Enquanto a nossa produ\u00E7\u00E3o resolve tomar vergonha na cara e colocar o v\u00EDdeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso v\u00EDdeo pessoal gravado por...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/jkYw-QuZToI","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/jkYw-QuZT
 oI","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=jkYw-QuZToI","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=jkYw-QuZToI","title":"BMD - Violeira de Apache","image":"http:\/\/i1.ytimg.com\/vi\/jkYw-QuZToI\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/jkYw-QuZToI"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=jkYw-QuZToI"],"retweet_count":[0],"title":["BMD - Violeira de Apache - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=jkYw-QuZToI"]},"salience":{"content":{"entities":[{"name":"Fellipe Moreira","sentiment":0,"confident":1,"label":"Person","evidence":0,"type":"Person","about":1},{"name":"Gleydison Ribeiro","sentiment":0,"confident":1,"label":"Person","evidence":0,"type":"Person","about":1}],"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002994995756\/picture","id":"100002994995756","link":"http:\/\/www.facebook.com\/profile.php?id=100002994995756","name":"Armando Leon"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:52:36 +0000","description":"Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ...","id":"100002994995756_432578163518680","link":"http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","message":"Bellezas Caribe\u00F1as!!!\n\nhttp:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","name":"Apache P\u00F3nmela en el aire","source":"http:\/\/www.youtube.com\/v\/BKfeBHu4Yco?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002994995756\/picture","id":"100002994995756","link":"http:\/\/www.facebook.com\/profile.php?id=1000029949
 95756","name":"Armando Leon"},"content":"Bellezas Caribe\u00F1as!!!\n\nhttp:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","created_at":"Wed, 02 Oct 2013 23:53:09 +0000","id":"1e32bbdb662faa00e0662770f91b1a0e","link":"http:\/\/www.facebook.com\/100002994995756_432578163518680","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/BKfeBHu4Yco?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache P\u00F3nmela en el aire","type":"facebook"},"language":{"confidence":100,"tag":"es"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 18:24:10 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ..."],"keywords":[["apache","apache las minas","rap Latino","hip hip Latino","Latin rap","Latin hip hop","rap","Venezuela","hip hop","latino"]],"lang":["en"],"opengraph":[{"site_nam
 e":"YouTube","type":"video","description":"Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ...","url":"http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","title":"Apache P\u00F3nmela en el aire","image":"http:\/\/i1.ytimg.com\/vi\/BKfeBHu4Yco\/maxresdefault.jpg?feature=og"}],"twitter":[{"player_width":"1920","description":"Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ...","player_height":"1080","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/BKfeBHu4Yco","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/BKfeBHu4Yco","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/
 www.youtube.com\/watch?v=BKfeBHu4Yco","title":"Apache P\u00F3nmela en el aire","image":"http:\/\/i1.ytimg.com\/vi\/BKfeBHu4Yco\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/BKfeBHu4Yco"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=BKfeBHu4Yco"],"retweet_count":[0],"title":["Apache P\u00F3nmela en el aire - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":6}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002679352328\/picture","id":"100002679352328","link":"http:\/\/www.facebook.com\/profile.php?id=100002679352328","name":"Reinaldo Pinheiro"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:54:57 +0000","description":"The Shadows Playing \"Apache\".","id":"100002679352328_476855475747093","link":"http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo","message":"http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo","name":"THE SHADOWS - Apache (1969)","source":"http:\/\/www.youtube.com\/v\/NoN6AKPGkBo?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002679352328\/picture","id":"100002679352328","link":"http:\/\/www.facebook.com\/profile.php?id=100002679352328","name":"Reinaldo Pinheiro"},"content":"http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo","created_at":"Wed, 02 Oct 2013 23:55:28 +0000","id":"1e32bbe0a6ddae80e0661367be
 4e942e","link":"http:\/\/www.facebook.com\/100002679352328_476855475747093","received_at":4743578127336446991,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/NoN6AKPGkBo?autohide=1&version=3&autoplay=1","subtype":"video","title":"THE SHADOWS - Apache (1969)","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 19:30:15 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["The Shadows Playing \"Apache\"."],"keywords":[["THE","SHADOWS","APACHE","POP","GO","SIXTIES","GREAT","BRITAIN","GERMANY","MUSIC","PROGRAMME","1969","1960s"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"The Shadows Playing \"Apache\".","url":"http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo","title":"THE SHADOWS - Apache (1969)","image":"http:\/\/i1.ytimg.com\/vi\/NoN6AKPGkBo\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"640","description":"The Shadows Playing \"Apache\".
 ","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/NoN6AKPGkBo","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/NoN6AKPGkBo","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo","title":"THE SHADOWS - Apache (1969)","image":"http:\/\/i1.ytimg.com\/vi\/NoN6AKPGkBo\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/NoN6AKPGkBo"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=NoN6AKPGkBo"],"retweet_count":[0],"title":["THE SHADOWS - Apache (1969) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=NoN6AKPGkBo"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002994995756\/picture","id":"100002994995756","link":"http:\/\/www.facebook.com\/profile.php?id=100002994995756","name":"Armando Leon"},"caption":"www.youtube.com","created_at":"Wed, 02 Oct 2013 23:59:36 +0000","description":"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...","id":"100002994995756_432579833518513","link":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","message":"DE mis favoritos de Venezuela Rifan machin !!!\n\nhttp:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","name":"Apache y Canserbero - La del Estribo (Video Official)","source":"http:\/\/www.youtube.com\/v\/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002994995756\/picture","id":"100002994995756","link":"http:\/\/www.facebook.co
 m\/profile.php?id=100002994995756","name":"Armando Leon"},"content":"DE mis favoritos de Venezuela Rifan machin !!!\n\nhttp:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","created_at":"Wed, 02 Oct 2013 23:59:56 +0000","id":"1e32bbeb0b9ea400e06684cf3ac22de0","link":"http:\/\/www.facebook.com\/100002994995756_432579833518513","received_at":4743578128457765224,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache y Canserbero - La del Estribo (Video Official)","type":"facebook"},"language":{"confidence":100,"tag":"es"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 19:46:43 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic..."],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apach
 e y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...","url":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","title":"Apache y Canserbero - La del Estribo (Video Official)","image":"http:\/\/i1.ytimg.com\/vi\/5h1KJ4Tf2sM\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"640","description":"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/5h1KJ4Tf2sM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/5h1KJ4Tf2sM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","title":"Apache y Canse
 rbero - La del Estribo (Video Official)","image":"http:\/\/i1.ytimg.com\/vi\/5h1KJ4Tf2sM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/5h1KJ4Tf2sM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=5h1KJ4Tf2sM"],"retweet_count":[0],"title":["Apache y Canserbero - La del Estribo (Video Official) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM"]},"salience":{"content":{"sentiment":6},"title":{"sentiment":-3}}}
-{"demographic":{"gender":"unisex"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/144929815716102\/picture","id":"144929815716102","link":"http:\/\/www.facebook.com\/profile.php?id=144929815716102","name":"Share If You Care"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:04:59 +0000","description":"This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...","id":"144929815716102_150380198504397","link":"http:\/\/www.youtube.com\/watch?v=25EWUUBjPMo&feature=share&list=TLSvch4ZZmCXJ7vRZW2FrTANv6yPDaZ_QF","message":"Old footage, but if you haven't seen it here it will change your perspective. This is what America does in foreign countries. Unfortunately, to the rest for the world, WE ARE NOT THE GOOD GUYS. And this is why...","name":"WikiLeaks raw US Apache footage","source":"http:\/\/www.youtube.com\/v\/25EWUUBjPMo?version=3&autohid
 e=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/144929815716102\/picture","id":"144929815716102","link":"http:\/\/www.facebook.com\/profile.php?id=144929815716102","name":"Share If You Care"},"content":"Old footage, but if you haven't seen it here it will change your perspective. This is what America does in foreign countries. Unfortunately, to the rest for the world, WE ARE NOT THE GOOD GUYS. And this is why...","created_at":"Thu, 03 Oct 2013 00:05:15 +0000","id":"1e32bbf713fca780e06655502b85c7be","link":"http:\/\/www.facebook.com\/144929815716102_150380198504397","received_at":4743578129797546718,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/25EWUUBjPMo?version=3&autohide=1&autoplay=1","subtype":"video","title":"WikiLeaks raw US Apache footage","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Thu, 03 Oct 2013 00:05:13 +0000"],"hops":[["http:\/\/www.youtube.com\/watch?v=
 25EWUUBjPMo&feature=share&list=TLSvch4ZZmCXJ7vRZW2FrTANv6yPDaZ_QF"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ..."],"keywords":[["namir nor-elden","saeed chmagh","apache helicopter","wikileaks","us military","baghdad","adults","children","shooting","civilian casualties","murder","rt","russia today","..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...","url":"http:\/\/www.youtube.com\/watch?v=25EWUUBjPMo","title":"WikiLeaks raw US Apache footage","image":"http:\/\/i1.ytimg.com\/vi\/25EWUUBjPMo\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"640","description":"This Wikileaks footage shows Reuters
  journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/25EWUUBjPMo","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/25EWUUBjPMo","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=25EWUUBjPMo","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=25EWUUBjPMo","title":"WikiLeaks raw US Apache footage","image":"http:\/\/i1.ytimg.com\/vi\/25EWUUBjPMo\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/25EWUUBjPMo"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=25EWUUBjPMo"],"retweet_count":[0],"title":["WikiLeaks raw US Apache footage - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=25EWUUBjPMo"]},"salience":{"content":{"sentiment":-4},"title":{"sentiment":0}}}
-{"demographic":{"gender":"mostly_male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100005956086899\/picture","id":"100005956086899","link":"http:\/\/www.facebook.com\/profile.php?id=100005956086899","name":"Juan Jose Henandez"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:18:47 +0000","description":"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...","id":"100005956086899_157398494468686","link":"http:\/\/www.youtube.com\/watch?v=QueePm5hO4k","message":"http:\/\/www.youtube.com\/watch?v=QueePm5hO4k","name":"Apache Ft. Canserbero - Stop","source":"http:\/\/www.youtube.com\/v\/QueePm5hO4k?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100005956086899\/picture","id":"100005956086899","link":"http:\/\/www.facebook.com\/profile.php?id=100005956086899","name":"Juan Jose Hena
 ndez"},"content":"http:\/\/www.youtube.com\/watch?v=QueePm5hO4k","created_at":"Thu, 03 Oct 2013 00:19:30 +0000","id":"1e32bc15ec68ad80e0662011d177021c","link":"http:\/\/www.facebook.com\/100005956086899_157398494468686","received_at":4743578133383049170,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/QueePm5hO4k?version=3&autohide=1&autoplay=1","subtype":"video","title":"Apache Ft. Canserbero - Stop","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Thu, 03 Oct 2013 00:19:29 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe..."],"keywords":[["Canserbero - Stop","Apache - Stop","Canserbero 2013","Apa y Can","Apache 2013","Apache y canserbero Stop","Stop","Stop canserbero","lo mejor del canserbero","canserbe..."]],"lang":["en"],"open
 graph":[{"site_name":"YouTube","type":"video","description":"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...","url":"http:\/\/www.youtube.com\/watch?v=QueePm5hO4k","title":"Apache Ft. Canserbero - Stop","image":"http:\/\/i1.ytimg.com\/vi\/QueePm5hO4k\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"853","description":"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/QueePm5hO4k","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/QueePm5hO4k","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=QueePm5hO4k","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtub
 e.com\/watch?v=QueePm5hO4k","title":"Apache Ft. Canserbero - Stop","image":"http:\/\/i1.ytimg.com\/vi\/QueePm5hO4k\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/QueePm5hO4k"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=QueePm5hO4k"],"retweet_count":[0],"title":["Apache Ft. Canserbero - Stop - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=QueePm5hO4k"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001444219466\/picture","id":"100001444219466","link":"http:\/\/www.facebook.com\/profile.php?id=100001444219466","name":"Enigmang Bio Hazard"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:25:11 +0000","description":"Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sue\u00F1o y sentir que fue ...","id":"100001444219466_589069114484557","link":"http:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU","message":"http:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU","name":"Apache Ft. Canserbero - Stupid Love Story","source":"http:\/\/www.youtube.com\/v\/ZAgFOdv4knU?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001444219466\/picture","id":"100001444219466","link":"http:\/\/www.facebook.com\/profile.php?id=100001444219466","name":"Enigmang Bio Hazard"},"content":"h
 ttp:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU","created_at":"Thu, 03 Oct 2013 00:25:51 +0000","id":"1e32bc243a84ad80e0669d67bed7553a","link":"http:\/\/www.facebook.com\/100001444219466_589069114484557","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZAgFOdv4knU?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache Ft. Canserbero - Stupid Love Story","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 18:20:51 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sue\u00F1o y sentir que fue ..."],"keywords":[["Canserbero - Stupid love story","Apache - Stupid Love Story","Apache 2013","Canserbero 2013"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apache Ft. Canserbero - Stupid Love Story (Con Letra
 ) Disco : Apa y Can A\u00F1o: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sue\u00F1o y sentir que fue ...","url":"http:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU","title":"Apache Ft. Canserbero - Stupid Love Story","image":"http:\/\/i1.ytimg.com\/vi\/ZAgFOdv4knU\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"853","description":"Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can A\u00F1o: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sue\u00F1o y sentir que fue ...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZAgFOdv4knU","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZAgFOdv4knU","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU","title":"Apache Ft. Canserbero - Stupid Love Story","image":"h
 ttp:\/\/i1.ytimg.com\/vi\/ZAgFOdv4knU\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZAgFOdv4knU"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZAgFOdv4knU"],"retweet_count":[0],"title":["Apache Ft. Canserbero - Stupid Love Story - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZAgFOdv4knU"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001611980796\/picture","id":"100001611980796","link":"http:\/\/www.facebook.com\/profile.php?id=100001611980796","name":"Royer Grefa"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:29:14 +0000","description":"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del \u00E1lbum: APA Y CAN","id":"100001611980796_591199984277062","link":"http:\/\/www.youtube.com\/watch?v=0BBOde0Rl1I","message":"Apa Y Can\n\nhttp:\/\/www.youtube.com\/watch?v=0BBOde0Rl1I","name":"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p","source":"http:\/\/www.youtube.com\/v\/0BBOde0Rl1I?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001611980796\/picture","id":"100001611980796","link":"http:\/\/www.facebook.com\/profile.php?id=100001611980796","name":"Royer Grefa"},"content":"Apa Y Can\n\nhttp:\/\/www.youtube.com\/watch?v=0BBOde0Rl1I","created_at":"Thu, 03 Oct 
 2013 00:29:48 +0000","id":"1e32bc2d47f2a900e066d78603ba84c8","link":"http:\/\/www.facebook.com\/100001611980796_591199984277062","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/0BBOde0Rl1I?version=3&autohide=1&autoplay=1","subtype":"video","title":"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Thu, 03 Oct 2013 00:29:54 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["STUPID LOVE STORY - APACHE Y CANSERBERO extraido del \u00E1lbum: APA Y CAN"],"keywords":[["STUPID LOVE STORY","APACHE","CANSERBERO","APACHE Y CANSERBERO","LETRA","HD","Lyrics","Full","Story"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del \u00E1lbum: APA Y CAN","url":"http:\/\/www.youtube.com\/watch?v=0BBOde0Rl1I","title":"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p","im
 age":"http:\/\/i1.ytimg.com\/vi\/0BBOde0Rl1I\/maxresdefault.jpg?feature=og"}],"twitter":[{"player_width":"1440","description":"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del \u00E1lbum: APA Y CAN","player_height":"1080","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/0BBOde0Rl1I","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/0BBOde0Rl1I","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=0BBOde0Rl1I","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=0BBOde0Rl1I","title":"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p","image":"http:\/\/i1.ytimg.com\/vi\/0BBOde0Rl1I\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/0BBOde0Rl1I"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=0BBOde0Rl1I"],"retweet_count":[0],"title":["STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p - YouTube"],"url":["http:\/\/www.youtu
 be.com\/watch?v=0BBOde0Rl1I"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-4}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002033189713\/picture","id":"100002033189713","link":"http:\/\/www.facebook.com\/profile.php?id=100002033189713","name":"Jesus Ibarra Pino"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:32:28 +0000","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","id":"100002033189713_536153523129082","link":"https:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","message":"https:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","name":"Apache Ft. Canserbero - Uno Por Ellas","source":"http:\/\/www.youtube.com\/v\/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002033189713\/picture","id":"100002033189713","link":"http:\/\/www.facebook.com\/profile.php?id=100002033189713","name":"Jesus Ibarr
 a Pino"},"content":"https:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","created_at":"Thu, 03 Oct 2013 00:32:52 +0000","id":"1e32bc348213a600e06698e907c33c3a","link":"http:\/\/www.facebook.com\/100002033189713_536153523129082","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache Ft. Canserbero - Uno Por Ellas","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Thu, 03 Oct 2013 00:32:50 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr..."],"keywords":[["Canserbero - Uno por ellas","Apache - uno por ellas","Apache 2013","Canserbero 2013","lo mejor de canserbero","Stop Canserbero","Agradezco Canserbero","rap 2013 ven..."]],"lang":["en"],"opengraph":[{"site_name":"Yo
 uTube","type":"video","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","title":"Apache Ft. Canserbero - Uno Por Ellas","image":"https:\/\/i1.ytimg.com\/vi\/fI9Y-nH5yIw\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"853","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fI9Y-nH5yIw","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fI9Y-nH5yIw","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v
 =fI9Y-nH5yIw","title":"Apache Ft. Canserbero - Uno Por Ellas","image":"https:\/\/i1.ytimg.com\/vi\/fI9Y-nH5yIw\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/fI9Y-nH5yIw"}]},"normalized_url":["https:\/\/youtube.com\/watch?v=fI9Y-nH5yIw"],"retweet_count":[0],"title":["Apache Ft. Canserbero - Uno Por Ellas - YouTube"],"url":["https:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw"]},"salience":{"title":{"sentiment":0}}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001611980796\/picture","id":"100001611980796","link":"http:\/\/www.facebook.com\/profile.php?id=100001611980796","name":"Royer Grefa"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:34:21 +0000","description":"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...","id":"100001611980796_591201640943563","link":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","message":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","name":"Apache y Canserbero - La del Estribo (Video Official)","source":"http:\/\/www.youtube.com\/v\/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001611980796\/picture","id":"100001611980796","link":"http:\/\/www.facebook.com\/profile.php?id=100001611980796","name":"Royer Grefa"},"content":"http:\/\/www.yo
 utube.com\/watch?v=5h1KJ4Tf2sM","created_at":"Thu, 03 Oct 2013 00:34:50 +0000","id":"1e32bc38b7baa480e066dfcb884577a8","link":"http:\/\/www.facebook.com\/100001611980796_591201640943563","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache y Canserbero - La del Estribo (Video Official)","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 19:46:43 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic..."],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...","url":"http
 :\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","title":"Apache y Canserbero - La del Estribo (Video Official)","image":"http:\/\/i1.ytimg.com\/vi\/5h1KJ4Tf2sM\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"640","description":"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/5h1KJ4Tf2sM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/5h1KJ4Tf2sM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM","title":"Apache y Canserbero - La del Estribo (Video Official)","image":"http:\/\/i1.ytimg.com\/vi\/5h1KJ4Tf2sM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/5h1KJ4Tf2sM"}]},"no
 rmalized_url":["http:\/\/youtube.com\/watch?v=5h1KJ4Tf2sM"],"retweet_count":[0],"title":["Apache y Canserbero - La del Estribo (Video Official) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=5h1KJ4Tf2sM"]},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":1,"type":"Company","about":1}],"sentiment":0,"topics":[{"name":"Video Games","score":0.49648976325989,"hits":0}]}}}
-{"demographic":{"gender":"unisex"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/149835201830545\/picture","id":"149835201830545","link":"http:\/\/www.facebook.com\/profile.php?id=149835201830545","name":"EH. Enyerbeth Hern\u00E1ndez"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:39:01 +0000","description":"Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ...","id":"149835201830545_248071985340199","link":"http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","message":"La Track del D\u00EDa. #Apache\n\nListen to it!! >>>","name":"Apache P\u00F3nmela en el aire","source":"http:\/\/www.youtube.com\/v\/BKfeBHu4Yco?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/149835201830545\/picture","id":"149835201830545","link":"http:\/\/www.facebook.com\/profile.php?id=149835201830545
 ","name":"EH. Enyerbeth Hern\u00E1ndez"},"content":"La Track del D\u00EDa. #Apache\n\nListen to it!! >>>","created_at":"Thu, 03 Oct 2013 00:39:27 +0000","hashtags":["#Apache"],"id":"1e32bc432604a080e066aa71ea3dba02","link":"http:\/\/www.facebook.com\/149835201830545_248071985340199","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/BKfeBHu4Yco?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache P\u00F3nmela en el aire","type":"facebook"},"language":{"confidence":63,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 18:24:10 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ..."],"keywords":[["apache","apache las minas","rap Latino","hip hip Latino","Latin rap","Latin hip hop","rap","Venezuela","hip hop","latino"]],"lang":["en"],"opengraph":[
 {"site_name":"YouTube","type":"video","description":"Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ...","url":"http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","title":"Apache P\u00F3nmela en el aire","image":"http:\/\/i1.ytimg.com\/vi\/BKfeBHu4Yco\/maxresdefault.jpg?feature=og"}],"twitter":[{"player_width":"1920","description":"Producci\u00F3n General: Flow Gallery & Rap latino progress Talento: Mar\u00EDa Claudia Talento: Laura Talento: Mar\u00EDa Isabel Talento:Pierina Talento: Arianna Talento: ...","player_height":"1080","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/BKfeBHu4Yco","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/BKfeBHu4Yco","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","id":"com.google.android.youtube"}},"site":"@youtube","url":
 "http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco","title":"Apache P\u00F3nmela en el aire","image":"http:\/\/i1.ytimg.com\/vi\/BKfeBHu4Yco\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/BKfeBHu4Yco"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=BKfeBHu4Yco"],"retweet_count":[0],"title":["Apache P\u00F3nmela en el aire - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=BKfeBHu4Yco"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"unisex"},"facebook":{"application":"Share_bookmarklet","author":{"avatar":"https:\/\/graph.facebook.com\/100001288606187\/picture","id":"100001288606187","link":"http:\/\/www.facebook.com\/profile.php?id=100001288606187","name":"Willian Rom\u00E1n Castillo"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 00:47:38 +0000","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","id":"100001288606187_639059829480298","link":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw&sns=fb","message":"para las chiks..","name":"Apache Ft. Canserbero - Uno Por Ellas","source":"http:\/\/www.youtube.com\/v\/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001288606187\/picture","id":"100001288606187","link":"http:\/\/www.facebook.com\/profile.php?id=10000128860618
 7","name":"Willian Rom\u00E1n Castillo"},"content":"para las chiks..","created_at":"Thu, 03 Oct 2013 00:48:10 +0000","id":"1e32bc566883a100e06607df280bf16c","link":"http:\/\/www.facebook.com\/100001288606187_639059829480298","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1","subtype":"video","title":"Apache Ft. Canserbero - Uno Por Ellas","type":"facebook"},"language":{"confidence":64,"tag":"et"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 19:39:13 +0000"],"hops":[["http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw&sns=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr..."],"keywords":[["Canserbero - Uno por ellas","Apache - uno por ellas","Apache 2013","Canserbero 2013","lo mejor de canserbero","Stop Canserbero","Agradezco Canserbe
 ro","rap 2013 ven..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","title":"Apache Ft. Canserbero - Uno Por Ellas","image":"http:\/\/i1.ytimg.com\/vi\/fI9Y-nH5yIw\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"853","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fI9Y-nH5yIw","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fI9Y-nH5yIw","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","id":"com.google.android.you
 tube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","title":"Apache Ft. Canserbero - Uno Por Ellas","image":"http:\/\/i1.ytimg.com\/vi\/fI9Y-nH5yIw\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/fI9Y-nH5yIw"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=fI9Y-nH5yIw"],"retweet_count":[0],"title":["Apache Ft. Canserbero - Uno Por Ellas - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw"]}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000529773118\/picture","id":"100000529773118","link":"http:\/\/www.facebook.com\/profile.php?id=100000529773118","name":"Ghatholl Perkasa"},"caption":"jakartagreater.com","created_at":"Thu, 03 Oct 2013 00:48:32 +0000","description":"Pangdam VI Mulawarman menjelaskan, tahun 2014 mendapatkan dukungan 2 unit tank Leopard-2, serta 2 unit Helikopter Apache, menemani Helikopter Bell 412 EP","id":"100000529773118_709380572422929","link":"http:\/\/jakartagreater.com\/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan\/","message":"http:\/\/jakartagreater.com\/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan\/","name":"Helikopter Apache dan Tank Leopard Temani Bell 412 EP di Kalimantan | JakartaGreater","source":"web","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000529773118\/picture","id":"100000529773118","link":"http:\/\/www.facebook.com\/profile.php?
 id=100000529773118","name":"Ghatholl Perkasa"},"content":"http:\/\/jakartagreater.com\/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan\/","created_at":"Thu, 03 Oct 2013 00:49:02 +0000","id":"1e32bc586b7fa000e066c7349fcb4420","link":"http:\/\/www.facebook.com\/100000529773118_709380572422929","schema":{"version":3},"source":"web","subtype":"link","title":"Helikopter Apache dan Tank Leopard Temani Bell 412 EP di Kalimantan | JakartaGreater","type":"facebook"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 14:42:46 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Pangdam VI Mulawarman menjelaskan, tahun 2014 mendapatkan dukungan 2 unit tank Leopard-2, serta 2 unit Helikopter Apache, menemani Helikopter Bell 412 EP"],"keywords":[["Helikopter Apache Kalimantan"]],"lang":["en-us"]},"normalized_url":["http:\/\/jakartagreater.com\/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan"],"retweet_count":[0],"title":["He
 likopter Apache dan Tank Leopard Temani Bell 412 EP di Kalimantan | JakartaGreater"],"url":["http:\/\/jakartagreater.com\/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan\/"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/y_4c0uy7ikisinxqjnquva","name":"y_4c0uy7ikisinxqjnquva"},"content":"comenten y subo otros.","contenttype":"html","created_at":"Thu, 03 Oct 2013 01:54:22 +0000","id":"1e32bc7c8499aa80e0612c55f4551676","link":"http:\/\/www.youtube.com\/watch?v=Yj6ckGTNJ7M","schema":{"version":3},"title":"FA! Fuerte Apache NO TE CONFUNDAS 2013] DEMO","type":"youtube"},"language":{"confidence":62,"tag":"es"},"salience":{"content":{"sentiment":7},"title":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/y_4c0uy7ikisinxqjnquva","name":"y_4c0uy7ikisinxqjnquva"},"category":"People &#38; Blogs","content":"comenten y subo otros.","contenttype":"html","created_at":"Thu, 03 Oct 2013 01:04:41 +0000","duration":"219","id":"1e32bc7c8499aa80e0612c55f4551676","title":"FA! Fuerte Apache NO TE CONFUNDAS 2013] DEMO","type":"video","videolink":"http:\/\/www.youtube.com\/watch?v=Yj6ckGTNJ7M"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/thercelement","name":"thercelement"},"contenttype":"html","created_at":"Thu, 03 Oct 2013 18:57:23 +0000","id":"1e32bc845750af80e061657d25bd1b16","link":"http:\/\/www.youtube.com\/watch?v=wMthG7WdQtI","schema":{"version":3},"title":"HPI Apache C1 Flux Update - Smoked ESC","type":"youtube"},"salience":{"title":{"sentiment":0,"topics":[{"name":"Economics","score":0.46346464753151,"hits":0}]}},"youtube":{"author":{"link":"http:\/\/youtube.com\/thercelement","name":"thercelement"},"category":"entertainment","contenttype":"html","created_at":"Thu, 03 Oct 2013 01:08:11 +0000","duration":"251","id":"1e32bc845750af80e061657d25bd1b16","title":"HPI Apache C1 Flux Update - Smoked ESC","type":"video","videolink":"http:\/\/www.youtube.com\/watch?v=wMthG7WdQtI"}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100005863352468\/picture","id":"100005863352468","link":"http:\/\/www.facebook.com\/profile.php?id=100005863352468","name":"Rolocris Tonato Veloz"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 01:20:53 +0000","description":"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran","id":"100005863352468_166572870214824","link":"http:\/\/www.youtube.com\/watch?v=7n0vyad0Mlk","message":"http:\/\/www.youtube.com\/watch?v=7n0vyad0Mlk","name":"f a fuerte apache queridos amigos video oficial","source":"http:\/\/www.youtube.com\/v\/7n0vyad0Mlk?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100005863352468\/picture","id":"100005863352468","link":"http:\/\/www.facebook.com\/profile.php?id=100005863352468","name":"Rolocris Tonato Veloz"},"content":"http:\/\/www.youtube.com\
 /watch?v=7n0vyad0Mlk","created_at":"Thu, 03 Oct 2013 01:21:14 +0000","id":"1e32bca0ba50a880e066e164e0b75830","link":"http:\/\/www.facebook.com\/100005863352468_166572870214824","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/7n0vyad0Mlk?version=3&autohide=1&autoplay=1","subtype":"video","title":"f a fuerte apache queridos amigos video oficial","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 22:23:15 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran"],"keywords":[["fuerte","apache","argentina","barrios","bajos","muerte","tevez","amigos"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya s
 e encuentran","url":"http:\/\/www.youtube.com\/watch?v=7n0vyad0Mlk","title":"f a fuerte apache queridos amigos video oficial","image":"http:\/\/i1.ytimg.com\/vi\/7n0vyad0Mlk\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"480","description":"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/7n0vyad0Mlk","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/7n0vyad0Mlk","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=7n0vyad0Mlk","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=7n0vyad0Mlk","title":"f a fuerte apache queridos amigos video oficial","image":"http:\/\/i1.ytimg.com\/vi\/7n0vyad0Mlk\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/7n0vyad0Mlk"}]},"normalized_ur
 l":["http:\/\/youtube.com\/watch?v=7n0vyad0Mlk"],"retweet_count":[0],"title":["f a fuerte apache queridos amigos video oficial - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=7n0vyad0Mlk"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0,"topics":[{"name":"Video Games","score":0.51537579298019,"hits":0}]}}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/2fz96yvwuf7mhxsxcwqdkw","name":"2fz96yvwuf7mhxsxcwqdkw"},"content":"This Article Austin Apache is composed of Creative Common Content. The Original Article can be location at WikiPedia.org. ref length width platform layout FF...","contenttype":"html","created_at":"Thu, 03 Oct 2013 05:18:21 +0000","id":"1e32bca152e7a080e061b93f1aebbc1e","link":"http:\/\/www.youtube.com\/watch?v=8tnaFTMm05w","schema":{"version":3},"title":"Austin Apache","type":"youtube"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/2fz96yvwuf7mhxsxcwqdkw","name":"2fz96yvwuf7mhxsxcwqdkw"},"category":"education","content":"This Article Austin Apache is composed of Creative Common Content. The Original Article can be location at WikiPedia.org. ref length width platform layout FF...","contenttype":"html","created_at":"Thu, 03 Oct 2013 01:21:09 +0000","duration":"39","id":"1e32bca152e7a080e061b93f1a
 ebbc1e","title":"Austin Apache","type":"video","videolink":"http:\/\/www.youtube.com\/watch?v=8tnaFTMm05w"}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002670373913\/picture","id":"100002670373913","link":"http:\/\/www.facebook.com\/profile.php?id=100002670373913","name":"Jhonatan ZoUnd"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 01:23:46 +0000","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","id":"100002670373913_476818342417174","link":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","message":"<3 Oh baby listen now","name":"Apache Ft. Canserbero - Uno Por Ellas","source":"http:\/\/www.youtube.com\/v\/fI9Y-nH5yIw?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002670373913\/picture","id":"100002670373913","link":"http:\/\/www.facebook.com\/profile.php?id=100002670373913","name":"Jhonatan ZoUnd"},"content":"<3 Oh baby listen now","created_at":"Thu, 03
  Oct 2013 01:24:08 +0000","id":"1e32bca72c2bad00e0669ad95907cc90","link":"http:\/\/www.facebook.com\/100002670373913_476818342417174","received_at":4743578149649965593,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/fI9Y-nH5yIw?version=3&autohide=1&autoplay=1","subtype":"video","title":"Apache Ft. Canserbero - Uno Por Ellas","type":"facebook"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 19:39:13 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr..."],"keywords":[["Canserbero - Uno por ellas","Apache - uno por ellas","Apache 2013","Canserbero 2013","lo mejor de canserbero","Stop Canserbero","Agradezco Canserbero","rap 2013 ven..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : 
 Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","title":"Apache Ft. Canserbero - Uno Por Ellas","image":"http:\/\/i1.ytimg.com\/vi\/fI9Y-nH5yIw\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"853","description":"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can A\u00F1o: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fI9Y-nH5yIw","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fI9Y-nH5yIw","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw","title":"Apache Ft. Canserbero - Uno Por Ellas","image":"http:\/\/i1.ytimg.com\/vi\
 /fI9Y-nH5yIw\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/fI9Y-nH5yIw"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=fI9Y-nH5yIw"],"retweet_count":[0],"title":["Apache Ft. Canserbero - Uno Por Ellas - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=fI9Y-nH5yIw"]},"salience":{"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/RedSoftVideos","name":"RedSoftVideos"},"content":"\u041F\u043E\u0448\u0430\u0433\u043E\u0432\u044B\u0435 \u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u0438 \u0434\u043B\u044F \u043D\u043E\u0432\u0438\u0447\u043A\u043E\u0432. \u0414\u0435\u043B\u0430\u0435\u043C \u0438\u0437 \u0441\u0442\u0430\u0440\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u0430 \u0434\u043E\u043C\u0430\u0448\u043D\u0438\u0439 web \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0435 Centos 6.4. \u0412 \u044D\u0442\u043E\u0439 \u0441\u0435\u0440\u0438\u0438 \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u0435\u043C web \u0441\u0435\u0440\u0432\u0435\u0440 Apache, PHP \u0434\u043B\u044F \u0434\u0438...","contenttype":"html","created_at":"Thu, 03 Oct 2013 15:03:35 +0000","id":"1e32bcb1ad88a600e0610e0f18ad029a","link":"http:\/\/www.youtube.com\/watch?v=xlLGlVcw7qQ","schema":{"version":3},"title":"[iMi
 ke.ru] - \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 LAMP web \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432\u0438\u0434\u0435\u043E\u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u044F. \u0423\u0440\u043E\u043A 2. Apache, PHP, MySQL, Wordpress.","type":"youtube"},"language":{"confidence":88,"tag":"ru"},"youtube":{"author":{"link":"http:\/\/youtube.com\/RedSoftVideos","name":"RedSoftVideos"},"category":"education","content":"\u041F\u043E\u0448\u0430\u0433\u043E\u0432\u044B\u0435 \u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u0438 \u0434\u043B\u044F \u043D\u043E\u0432\u0438\u0447\u043A\u043E\u0432. \u0414\u0435\u043B\u0430\u0435\u043C \u0438\u0437 \u0441\u0442\u0430\u0440\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u0430 \u0434\u043E\u043C\u0430\u0448\u043D\u0438\u0439 web \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0435 Centos 6.4. \u0412 \u044D\u0442\u043E\u0439 \u0441\u0435\u0440\u0438\u0438 \u0443\u0441\u0442\u043
 0\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u0435\u043C web \u0441\u0435\u0440\u0432\u0435\u0440 Apache, PHP \u0434\u043B\u044F \u0434\u0438...","contenttype":"html","created_at":"Thu, 03 Oct 2013 01:28:28 +0000","duration":"3147","id":"1e32bcb1ad88a600e0610e0f18ad029a","title":"[iMike.ru] - \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 LAMP web \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432\u0438\u0434\u0435\u043E\u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u044F. \u0423\u0440\u043E\u043A 2. Apache, PHP, MySQL, Wordpress.","type":"video","videolink":"http:\/\/www.youtube.com\/watch?v=xlLGlVcw7qQ"}}
-{"demographic":{"gender":"female"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001626092766\/picture","id":"100001626092766","link":"http:\/\/www.facebook.com\/profile.php?id=100001626092766","name":"Fernanda Beltr\u00E0n"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 01:31:05 +0000","description":"Nuevo album 2013","id":"100001626092766_593084220755776","link":"http:\/\/www.youtube.com\/watch?v=cDALFX6lQX8#_=","message":"te ve\u00EDas igual de \u00A1AHH! por supuesto, juro haber sentido el olor de tu cabello en mi pecho ..  y de hecho el cigarro en tu recuerdo amargo, es todo lo que dejo y regresas sin embargo \u266B uf.","name":"Cancerbero y Apache - Stupid love story","source":"http:\/\/www.youtube.com\/v\/cDALFX6lQX8?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001626092766\/picture","id":"100001626092766","link":"http:\/\/www.facebook.com\/profile.php?id=100001626092766","
 name":"Fernanda Beltr\u00E0n"},"content":"te ve\u00EDas igual de \u00A1AHH! por supuesto, juro haber sentido el olor de tu cabello en mi pecho ..  y de hecho el cigarro en tu recuerdo amargo, es todo lo que dejo y regresas sin embargo \u266B uf.","created_at":"Thu, 03 Oct 2013 01:31:38 +0000","id":"1e32bcb786cda280e0664a7d4c566eec","link":"http:\/\/www.facebook.com\/100001626092766_593084220755776","received_at":4743578151536100481,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/cDALFX6lQX8?version=3&autohide=1&autoplay=1","subtype":"video","title":"Cancerbero y Apache - Stupid love story","type":"facebook"},"language":{"confidence":100,"tag":"es"},"links":{"code":[200],"created_at":["Wed, 02 Oct 2013 17:54:38 +0000"],"hops":[["http:\/\/www.youtube.com\/watch?v=cDALFX6lQX8#_="]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Nuevo album 2013"],"keywords":[["cancerbero","apache","2013","sptupid love story"]],"lang":["en"],"opengraph":[{"site_n
 ame":"YouTube","type":"video","description":"Nuevo album 2013","url":"http:\/\/www.youtube.com\/watch?v=cDALFX6lQX8","title":"Cancerbero y Apache - Stupid love story","image":"http:\/\/i1.ytimg.com\/vi\/cDALFX6lQX8\/hqdefault.jpg?feature=og"}],"twitter":[{"player_width":"640","description":"Nuevo album 2013","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/cDALFX6lQX8","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/cDALFX6lQX8","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=cDALFX6lQX8","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=cDALFX6lQX8","title":"Cancerbero y Apache - Stupid love story","image":"http:\/\/i1.ytimg.com\/vi\/cDALFX6lQX8\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/cDALFX6lQX8"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=cDALFX6lQX8"],"retweet_count":[0],"title":["Cancerbe
 ro y Apache - Stupid love story - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=cDALFX6lQX8"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/9ux759qmx_tehxdm8g0zmq","name":"9ux759qmx_tehxdm8g0zmq"},"content":"Dance off during a trivia night at Bender's Sports Bar in Milwaukee. This happened at America's Pub Quiz night. www.americaspubquiz.com for the free answer o...","contenttype":"html","created_at":"Thu, 03 Oct 2013 02:06:13 +0000","id":"1e32bcbf335ead80e061be6ca7aac4cc","link":"http:\/\/www.youtube.com\/watch?v=VsnfhGD8KcI","schema":{"version":3},"title":"Apache Dance at an America's Pub Quiz show in Milwaukee","type":"youtube"},"language":{"confidence":100,"tag":"en"},"salience":{"content":{"entities":[{"name":"Milwaukee","sentiment":0,"confident":1,"label":"Place","evidence":1,"type":"Place","about":1,"themes":["trivia night"]},{"name":"America","sentiment":0,"confident":1,"label":"Place","evidence":1,"type":"Place","about":0,"themes":["trivia night"]}],"sentiment":0,"topics":[{"name":"Sports","score":0.5362588763237001,"hits":0}]},"title":{"entities":[{"name"
 :"Milwaukee","sentiment":0,"confident":1,"label":"Place","evidence":1,"type":"Place","about":1}],"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/9ux759qmx_tehxdm8g0zmq","name":"9ux759qmx_tehxdm8g0zmq"},"category":"People &#38; Blogs","content":"Dance off during a trivia night at Bender's Sports Bar in Milwaukee. This happened at America's Pub Quiz night. www.americaspubquiz.com for the free answer o...","contenttype":"html","created_at":"Thu, 03 Oct 2013 01:34:31 +0000","duration":"30","id":"1e32bcbf335ead80e061be6ca7aac4cc","title":"Apache Dance at an America's Pub Quiz show in Milwaukee","type":"video","videolink":"http:\/\/www.youtube.com\/watch?v=VsnfhGD8KcI"}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001811016208\/picture","id":"100001811016208","link":"http:\/\/www.facebook.com\/profile.php?id=100001811016208","name":"Alan Giovanni Gonzaga"},"caption":"www.youtube.com","created_at":"Thu, 03 Oct 2013 01:36:04 +0000","description":"festividad en honor a el principe san miguel arcangel..","id":"100001811016208_538494686220894","link":"http:\/\/www.youtube.com\/v\/WuX7qu39YvA?version=3&autohide=1&autoplay=1","message":"http:\/\/www.youtube.com\/watch?v=WuX7qu39YvA&feature=youtu.be&hd=1","name":"san miguel toliman Qro...(Danza Apache Los Halcones) 29-SEP-2013","source":"http:\/\/www.youtube.com\/v\/WuX7qu39YvA?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001811016208\/picture","id":"100001811016208","link":"http:\/\/www.facebook.com\/profile.php?id=100001811016208","name":"Alan Giovanni Gonzaga"},"content":"http:\/\
 /www.youtube.com\/watch?v=WuX7qu39YvA&feature=youtu.be&hd=1","created_at":"Thu, 03 Oct 2013 01:36:31 +0000","id":"1e32bcc2aa49aa00e066e2c7d568b828","link":"http:\/\/www.facebook.com\/100001811016208_538494686220894","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/WuX7qu39YvA?version=3&autohide=1&autoplay=1","subtype":"video","title":"san miguel toliman Qro...(Danza Apache Los Halcones) 29-SEP-2013","type":"facebook"},"language":{"confidence":100,"tag":"en"},"links":{"code":[200],"created_at":["Thu, 03 Oct 2013 01:36:28 +0000"],"hops":[["http:\/\/www.youtube.com\/watch?v=WuX7qu39YvA&feature=youtu.be&hd=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["festividad en honor a el principe san miguel arcangel.."],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"festividad en honor a el principe san miguel arcangel..","url":"http:\/\/www.youtube.com\/watch?v=WuX7qu39YvA","title":"san miguel toliman Qro...(Da

<TRUNCATED>

[39/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
index 3eff76b..c597e40 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
@@ -1,1843 +1,1843 @@
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/100003271543139/picture\",\"id\":\"100003271543139\",\"link\":\"http://www.facebook.com/profile.php?id=100003271543139\",\"name\":\"Janelle Tso-Blake\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 21:38:22 +0000\",\"description\":\"UPDATE:  Since the \\\"Mescalero Blessing Run\\\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\\n\\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\\n\\nPicture days will be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring t
 heir cap/gown.  Flyers will be sent out next week concerning the prices.\\n\\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.\",\"id\":\"100003271543139_537596739692706\",\"link\":\"http://www.facebook.com/mescaleroapacheheadstart/posts/219371308257323\",\"name\":\"Mescalero Apache Head Start\",\"picture\":\"http://profile.ak.fbcdn.net/hprofile-ak-ash2/t1.0-1/c0.0.100.100/p100x100/379713_183249568536164_895695882_a.jpg\",\"source\":\"Facebook for Android (350685531728)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100003271543139/picture\",\"id\":\"100003271543139\",\"link\":\"http://www.facebook.com/profile.php?id=100003271543139\",\"name\":\"Janelle Tso-Blake\",\"type\":\"user\"},\"content\":\"UPDATE:  Since the \\\"Mescalero Blessing Run\\\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\\n\\nThe Carrizo site Picture Da
 y will stay the same, which will be on Tuesday, April 1, 2014.\\n\\nPicture days will be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap/gown.  Flyers will be sent out next week concerning the prices.\\n\\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.\",\"created_at\":\"Sat, 22 Mar 2014 21:38:22 +0000\",\"id\":\"1e3b20a4a775ab00e066d203c4340184\",\"link\":\"http://www.facebook.com/100003271543139_537596739692706\",\"schema\":{\"version\":3},\"source\":\"Facebook for Android (350685531728)\",\"subtype\":\"link\",\"title\":\"Mescalero Apache Head Start\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_exte
 nded\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:39:20 +0000\"],\"hops\":[[\"http://www.facebook.com/mescaleroapacheheadstart/posts/219371308257323\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/mescaleroapacheheadstart/posts/219371308257323\"],\"retweet_count\":[0],\"title\":[\"UPDATE: Since the \\\"Mescalero Blessing... - Mescalero Apache Head Start | Facebook\"],\"url\":[\"https://www.facebook.com/mescaleroapacheheadstart/posts/219371308257323\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"April 1, 2014\",\"sentiment\":0,\"confident\":1,\"label\":\"Date\",\"evidence\":1,\"type\":\"Pattern\",\"about\":0},{\"name\":\"Mescalero South Hall\",\"sentiment\":0,\"confident\":1,\"label\":\"building\",\"evidence\":1,\"type\":\"Place\",\"about\":0,\"themes\":[\"individual pictures\",\"graduation pictures\",\"class pictures\"]},{\"name\":\"Bowling Alley\",\"sentiment\
 ":0,\"confident\":1,\"label\":\"road\",\"evidence\":1,\"type\":\"Place\",\"about\":0,\"themes\":[\"individual pictures\",\"graduation pictures\",\"class pictures\"]},{\"name\":\"\\\"Mescalero Blessing Run\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0}],\"sentiment\":2},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"facebook\":{\"application\":\"Photos\",\"author\":{\"avatar\":\"https://graph.facebook.com/100002126551451/picture\",\"id\":\"100002126551451\",\"link\":\"http://www.facebook.com/profile.php?id=100002126551451\",\"name\":\"Sharon Gloshay\",\"type\":\"user\"},\"caption\":\"First weekend of Spring! Time to get outside and enjoy the WMAT rez :)\",\"created_at\":\"Sat, 22 Mar 2014 21:42:13 +0000\",\"icon\":\"http://static.ak.fbcdn.net/rsrc.php/v2/yD/r/aS8ecmYRys0.gif\",\"id\":\"100002126551451_605465259534354\",\"link\":\"http://www.facebook.com/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1\",\"message\":\"C'mon over...\\n\",\"name\":\"Photos of White Mountain Apache Tribe Game & Fish\",\"og\":{\"by\":\"Michael Frank\"},\"picture\":\"http://photos-e.ak.fbcdn.net/hphotos-ak-ash3/t1.0-0/1920219_10101477649345853_670694643_s.jpg\",\"source\":\"Photos (2305272732)\",\"story\":\"Sharon Gloshay shared a photo.\",\"story_tags\":[[{\"n
 ame\":\"Sharon Gloshay\",\"length\":14,\"type\":\"user\",\"id\":\"100002126551451\",\"offset\":0}]],\"type\":\"photo\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002126551451/picture\",\"id\":\"100002126551451\",\"link\":\"http://www.facebook.com/profile.php?id=100002126551451\",\"name\":\"Sharon Gloshay\",\"type\":\"user\"},\"content\":\"C'mon over...\\n\",\"created_at\":\"Sat, 22 Mar 2014 21:42:13 +0000\",\"id\":\"1e3b20ad4272a880e06678b4f07fd236\",\"link\":\"http://www.facebook.com/100002126551451_605465259534354\",\"schema\":{\"version\":3},\"source\":\"Photos (2305272732)\",\"subtype\":\"photo\",\"title\":\"Photos of White Mountain Apache Tribe Game & Fish\",\"type\":\"facebook\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:42:50 +0000\"],\"hops\":[[\"http://www.facebook.com/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Firs
 t weekend of Spring! Time to get outside and enjoy the WMAT rez :)\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1\"],\"retweet_count\":[0],\"title\":[\"Michael Frank - Photos of White Mountain Apache Tribe Game... | Facebook\"],\"url\":[\"https://www.facebook.com/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1\"]}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/727210779/picture\",\"id\":\"727210779\",\"link\":\"http://www.facebook.com/profile.php?id=727210779\",\"name\":\"Amanda Netzel\",\"type\":\"user\"},\"caption\":\"minneapolis.en.craigslist.org\",\"created_at\":\"Sat, 22 Mar 2014 21:42:24 +0000\",\"description\":\"[ post ][ account ]0 favoritesCL >minneapolis >carv/sher/wri >all for sale / wanted >rvs - by owner— — —✉☎replyxprohibited[?]Posted: 2014-02-17 12:30pm Apache Hardside Camper ~Wanted~ Looking for a Apache Hardside Pop-Up Camper Please let me know what you have available do NOT contact me with unsoli...\",\"id\":\"201182856613333_689921864406094\",\"link\":\"http://minneapolis.en.craigslist.org/csw/rvs/4337546519.html\",\"message\":\"Minnesota person looking for a hardside apache!! Found the ad on Craigslist\",\"name\":\"Apache Hardside Camper ~Wanted~\",\"source\":\"F
 acebook for Android (350685531728)\",\"to\":{\"ids\":[\"201182856613333\"],\"names\":[\"Apache Camper Preservation Society\"]},\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/727210779/picture\",\"id\":\"727210779\",\"link\":\"http://www.facebook.com/profile.php?id=727210779\",\"name\":\"Amanda Netzel\",\"type\":\"user\"},\"content\":\"Minnesota person looking for a hardside apache!! Found the ad on Craigslist\",\"created_at\":\"Sat, 22 Mar 2014 21:42:24 +0000\",\"id\":\"1e3b20adab5aa000e0661b0a9e430820\",\"link\":\"http://www.facebook.com/201182856613333_689921864406094\",\"mention_ids\":[\"201182856613333\"],\"mentions\":[\"Apache Camper Preservation Society\"],\"schema\":{\"version\":3},\"source\":\"Facebook for Android (350685531728)\",\"subtype\":\"link\",\"title\":\"Apache Hardside Camper ~Wanted~\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"S
 at, 22 Mar 2014 21:42:47 +0000\"],\"meta\":{\"charset\":[\"CP1252\"],\"content_type\":[\"text/html\"],\"lang\":[\"unknown\"]},\"normalized_url\":[\"http://minneapolis.en.craigslist.org/csw/rvs/4337546519.html\"],\"retweet_count\":[0],\"title\":[\"Apache Hardside Camper ~Wanted~\"],\"url\":[\"http://minneapolis.en.craigslist.org/csw/rvs/4337546519.html\"]},\"salience\":{\"content\":{\"sentiment\":0,\"topics\":[{\"name\":\"Advertising\",\"score\":0.47485229372978,\"additional\":\"Minnesota person looking for a hardside apache!! Found the ad on Craigslist\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"GrabInbox\",\"author\":{\"avatar\":\"https://graph.facebook.com/100004948484234/picture\",\"id\":\"100004948484234\",\"link\":\"http://www.facebook.com/profile.php?id=100004948484234\",\"name\":\"Said Azaou\",\"type\":\"user\"},\"caption\":\"mcp.infusionsoft.com\",\"created_at\":\"Sat, 22 Mar 2014 21:45:04 +0000\",\"description\":\"type Status report The requested resource is not available.\",\"id\":\"100004948484234_257154551126159\",\"link\":\"https://mcp.infusionsoft.com/go/2ndcha\",\"message\":\"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https://mcp.infusionsoft.com/go/2ndcha\",\"name\":\"Apache Tomcat/6.0.36 - Error report\",\"source\":\"GrabInbox (135280156521587)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004948484234/picture\",\"id\":\"100004948484234\",\"link\":\"http://www.facebook.com/
 profile.php?id=100004948484234\",\"name\":\"Said Azaou\",\"type\":\"user\"},\"content\":\"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https://mcp.infusionsoft.com/go/2ndcha\",\"created_at\":\"Sat, 22 Mar 2014 21:45:04 +0000\",\"id\":\"1e3b20b3a13ba000e0668cdbdc72d878\",\"link\":\"http://www.facebook.com/100004948484234_257154551126159\",\"received_at\":4743640062960685023,\"schema\":{\"version\":3},\"source\":\"GrabInbox (135280156521587)\",\"subtype\":\"link\",\"title\":\"Apache Tomcat/6.0.36 - Error report\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[404],\"created_at\":[\"Sat, 22 Mar 2014 21:46:07 +0000\"],\"hops\":[[\"https://mcp.infusionsoft.com/go/2ndcha\"]],\"normalized_url\":[null],\"retweet_count\":[0],\"title\":[\"null\"],\"url\":[\"https://mcp.infusionsoft.com/go/2ndcha\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sent
 iment\":-5}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Facebook for iPad\",\"author\":{\"avatar\":\"https://graph.facebook.com/100000632293926/picture\",\"id\":\"100000632293926\",\"link\":\"http://www.facebook.com/profile.php?id=100000632293926\",\"name\":\"Xavier Tatum\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 21:46:28 +0000\",\"description\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"id\":\"100000632293926_733005476730522\",\"link\":\"http://m.youtube.com/watch?v=Pc5QXkarL0U\",\"name\":\"Mizai Performing Live @ Apache Cafe\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg\",\"source\":\"http://www.youtube.com/v/Pc5QXkarL0U?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000632293926/picture\",\"id\":\"100000632293926\"
 ,\"link\":\"http://www.facebook.com/profile.php?id=100000632293926\",\"name\":\"Xavier Tatum\",\"type\":\"user\"},\"content\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"created_at\":\"Sat, 22 Mar 2014 21:46:28 +0000\",\"id\":\"1e3b20b6c251a200e066d8ce3663edc2\",\"link\":\"http://www.facebook.com/100000632293926_733005476730522\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/Pc5QXkarL0U?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"Mizai Performing Live @ Apache Cafe\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:25:38 +0000\"],\"hops\":[[\"http://m.youtube.com/watch?v=Pc5QXkarL0U\",\"http://www.youtube.com/watch?v=Pc5QXkarL0U&app=desktop\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Tr
 iad Films; Major Muves Ent\"],\"keywords\":[[\"Apache Cafe (Building)\",\"Mizai\",\"Performing\",\"live\",\"Atl\",\"Exposure\",\"Open\",\"Mic\",\"Performance\",\"Fan\",\"myself\",\"Stage\",\"Microphone\",\"DJ\",\"Mizay\",\"Streetz\",\"Grindin\",\"BAMA\",\"Op...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"url\":\"http://www.youtube.com/watch?v=Pc5QXkarL0U\",\"title\":\"Mizai Performing Live @ Apache Cafe\",\"image\":\"http://i1.ytimg.com/vi/Pc5QXkarL0U/maxresdefault.jpg\"}],\"twitter\":[{\"player_width\":\"1280\",\"description\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"player_height\":\"720\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/Pc5QXkarL0U\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/Pc5QXkarL0U\"
 ,\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=Pc5QXkarL0U\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=Pc5QXkarL0U\",\"title\":\"Mizai Performing Live @ Apache Cafe\",\"image\":\"http://i1.ytimg.com/vi/Pc5QXkarL0U/maxresdefault.jpg\",\"player\":\"https://www.youtube.com/embed/Pc5QXkarL0U\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=Pc5QXkarL0U\"],\"retweet_count\":[0],\"title\":[\"Mizai Performing Live @ Apache Cafe - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=Pc5QXkarL0U\"]}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Links\",\"author\":{\"avatar\":\"https://graph.facebook.com/100002691827913/picture\",\"id\":\"100002691827913\",\"link\":\"http://www.facebook.com/profile.php?id=100002691827913\",\"name\":\"John Henry\",\"type\":\"user\"},\"caption\":\"americanindianshistory.blogspot.com\",\"created_at\":\"Sat, 22 Mar 2014 21:49:05 +0000\",\"description\":\"Photos of the Apache camp in Tularosa Canyon, New Mexico\",\"id\":\"100002691827913_484469828319407\",\"link\":\"http://americanindianshistory.blogspot.com/2014/02/photos-of-apache-village-in-tularosa.html?spref=fb\",\"message\":\"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...\",\"name\":\"American Indian's History: Photos of the Apach
 e Village in Tularosa Canyon, New Mexico\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg\",\"source\":\"Links (2309869772)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002691827913/picture\",\"id\":\"100002691827913\",\"link\":\"http://www.facebook.com/profile.php?id=100002691827913\",\"name\":\"John Henry\",\"type\":\"user\"},\"content\":\"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...\",\"created_at\":\"Sat, 22 Mar 2014 21:49:05 +0000\",\"id\":\"1e3b20bc9b95ae80e066fe4bf1bfb094\",\"link\":\"http://
 www.facebook.com/100002691827913_484469828319407\",\"received_at\":4743640063974247393,\"schema\":{\"version\":3},\"source\":\"Links (2309869772)\",\"subtype\":\"link\",\"title\":\"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:49:34 +0000\"],\"hops\":[[\"http://americanindianshistory.blogspot.com/2014/02/photos-of-apache-village-in-tularosa.html?spref=fb\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"unknown\"]},\"normalized_url\":[\"http://americanindianshistory.blogspot.co.uk/2014/02/photos-of-apache-village-in-tularosa.html?spref=fb\"],\"retweet_count\":[0],\"title\":[\"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico\"],\"url\":[\"http://americanindianshistory.blogspot.co.uk/2014/02/photos-of-apache-village-
 in-tularosa.html?spref=fb\"]},\"salience\":{\"content\":{\"sentiment\":-6},\"title\":{\"entities\":[{\"name\":\"Tularosa Canyon, New Mexico\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":4,\"type\":\"Place\",\"about\":1}],\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/731196387/picture\",\"id\":\"731196387\",\"link\":\"http://www.facebook.com/profile.php?id=731196387\",\"name\":\"Andrew C. Lengen\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 21:49:42 +0000\",\"description\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"id\":\"731196387_10152355066466388\",\"link\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"name\":\"Sugarhill Gang Apache (Jump On It)\",\"picture\":\"http://external.xx.fbcdn.net/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l\",\"source\":\"http://www.youtube.com/v/vQObWW06VAM?autohide=1&version=3&autoplay=1\",\"to\":{\"ids\":[\"100000046087502\"],\"names\":[\"Nathan Bluerock\"]},\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebo
 ok.com/731196387/picture\",\"id\":\"731196387\",\"link\":\"http://www.facebook.com/profile.php?id=731196387\",\"name\":\"Andrew C. Lengen\",\"type\":\"user\"},\"content\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"created_at\":\"Sat, 22 Mar 2014 21:49:42 +0000\",\"id\":\"1e3b20bdfc71af00e066bcb6b8e3130c\",\"link\":\"http://www.facebook.com/731196387_10152355066466388\",\"mention_ids\":[\"100000046087502\"],\"mentions\":[\"Nathan Bluerock\"],\"received_at\":4743640064119570380,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/vQObWW06VAM?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Sugarhill Gang Apache (Jump On It)\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 01:42:36 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],
 \"description\":[\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\"],\"keywords\":[[\"Funky\",\"Pop\",\"Greatness\",\"Awesome\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"url\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"title\":\"Sugarhill Gang Apache (Jump On It)\",\"image\":\"http://i1.ytimg.com/vi/vQObWW06VAM/hqdefault.jpg\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/vQObWW06VAM\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vn
 d.youtube://watch/vQObWW06VAM\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"title\":\"Sugarhill Gang Apache (Jump On It)\",\"image\":\"http://i1.ytimg.com/vi/vQObWW06VAM/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/vQObWW06VAM\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=vQObWW06VAM\"],\"retweet_count\":[0],\"title\":[\"Sugarhill Gang Apache (Jump On It) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=vQObWW06VAM\"]}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Links\",\"author\":{\"avatar\":\"https://graph.facebook.com/100000455275358/picture\",\"id\":\"100000455275358\",\"link\":\"http://www.facebook.com/profile.php?id=100000455275358\",\"name\":\"Susan Hudson\",\"type\":\"user\"},\"caption\":\"newsok.com\",\"created_at\":\"Sat, 22 Mar 2014 21:54:23 +0000\",\"description\":\"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.\",\"id\":\"100000455275358_753304071361428\",\"link\":\"http://ow.ly/uKTg1\",\"name\":\"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQAMLLC9jSlzmhOK&w=154&h=154&url=http%3A%2F%2Fcdn2.newsok.biz%2Fcache%2Fw620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg\",\"source\":\"Links (2309869772)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.faceb
 ook.com/100000455275358/picture\",\"id\":\"100000455275358\",\"link\":\"http://www.facebook.com/profile.php?id=100000455275358\",\"name\":\"Susan Hudson\",\"type\":\"user\"},\"content\":\"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.\",\"created_at\":\"Sat, 22 Mar 2014 21:54:23 +0000\",\"id\":\"1e3b20c87445a180e0665ce87651d4d0\",\"link\":\"http://www.facebook.com/100000455275358_753304071361428\",\"schema\":{\"version\":3},\"source\":\"Links (2309869772)\",\"subtype\":\"link\",\"title\":\"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:55:27 +0000\"],\"hops\":[[\"http://ow.ly/uKTg1\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Fort Sill Apache Tribe officia
 ls are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.\"],\"lang\":[\"unknown\"],\"opengraph\":[{\"site_name\":\"NewsOK.com\",\"type\":\"article\",\"description\":\"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.\",\"url\":\"http://newsok.com/article/3935671\",\"title\":\"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico\",\"image\":\"http://cdn2.newsok.biz/cache/w620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg\"}]},\"normalized_url\":[\"http://newsok.com/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico/article/3935671\"],\"retweet_count\":[0],\"title\":[\"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico | News OK\"],\"url\":[\"http://newsok.com/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico/article/3935671\"]},\"salience\":{\"con
 tent\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/792873959/picture\",\"id\":\"792873959\",\"link\":\"http://www.facebook.com/profile.php?id=792873959\",\"name\":\"Ralph Cohen\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 21:55:08 +0000\",\"description\":\"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\",\"id\":\"388424624543961_652943931425361\",\"link\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"message\":\"Fort Apache the Bronx (1981) Full Movie, ENJOY!\\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense f
 or justice.\\n\\nhttp://www.youtube.com/watch?v=ZrcVKWm7vog\",\"name\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg\",\"source\":\"http://www.youtube.com/v/ZrcVKWm7vog?autohide=1&version=3&autoplay=1\",\"to\":{\"ids\":[\"388424624543961\"],\"names\":[\"Ret.Officers Living Or Willing To Move Outside The U.S.\"]},\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/792873959/picture\",\"id\":\"792873959\",\"link\":\"http://www.facebook.com/profile.php?id=792873959\",\"name\":\"Ralph Cohen\",\"type\":\"user\"},\"content\":\"Fort Apache the Bronx (1981) Full Movie, ENJOY!\\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their police station, which really seems like an outpost in enemy's cou
 ntry. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\\n\\nhttp://www.youtube.com/watch?v=ZrcVKWm7vog\",\"created_at\":\"Sat, 22 Mar 2014 21:55:08 +0000\",\"id\":\"1e3b20ca216ca600e066737903b59bf6\",\"link\":\"http://www.facebook.com/388424624543961_652943931425361\",\"mention_ids\":[\"388424624543961\"],\"mentions\":[\"Ret.Officers Living Or Willing To Move Outside The U.S.\"],\"received_at\":4743640065503462529,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/ZrcVKWm7vog?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:55:38 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"From the sight of a police officer this movie depicts the l
 ife in New York&#39;s infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\"],\"keywords\":[[\"Fort Apache\",\"The Bronx (Film) Paul Newman (Theater Actor)\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\",\"url\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"title\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"image\":\"http://i1.ytimg.com/vi/ZrcVKWm7vog/hqdefault.jpg\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/ZrcVKW
 m7vog\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/ZrcVKWm7vog\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"title\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"image\":\"http://i1.ytimg.com/vi/ZrcVKWm7vog/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/ZrcVKWm7vog\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=ZrcVKWm7vog\"],\"retweet_count\":[0],\"title\":[\"Fort Apache the Bronx Paul Newman] (1981) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=ZrcVKWm7vog\"]}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/792873959/picture\",\"id\":\"792873959\",\"link\":\"http://www.facebook.com/profile.php?id=792873959\",\"name\":\"Ralph Cohen\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 21:55:30 +0000\",\"description\":\"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\",\"id\":\"792873959_10152287778028960\",\"link\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"message\":\"Fort Apache the Bronx (1981) Full Movie, ENJOY!\\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for j
 ustice.\\n\\nhttp://www.youtube.com/watch?v=ZrcVKWm7vog\",\"name\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg\",\"source\":\"http://www.youtube.com/v/ZrcVKWm7vog?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/792873959/picture\",\"id\":\"792873959\",\"link\":\"http://www.facebook.com/profile.php?id=792873959\",\"name\":\"Ralph Cohen\",\"type\":\"user\"},\"content\":\"Fort Apache the Bronx (1981) Full Movie, ENJOY!\\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense fo
 r justice.\\n\\nhttp://www.youtube.com/watch?v=ZrcVKWm7vog\",\"created_at\":\"Sat, 22 Mar 2014 21:55:30 +0000\",\"id\":\"1e3b20caf33ba500e0669b6b2a096842\",\"link\":\"http://www.facebook.com/792873959_10152287778028960\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/ZrcVKWm7vog?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:55:38 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\"],\"keywords\":[[\"Fort Apache\",\"The Bronx (Film) Paul Newman (Theater Actor)\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"
 video\",\"description\":\"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\",\"url\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"title\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"image\":\"http://i1.ytimg.com/vi/ZrcVKWm7vog/hqdefault.jpg\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their...\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/ZrcVKWm7vog\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/ZrcVKWm7vog\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"id\":\"com.google.android.youtube\"}},\"site\":
 \"@youtube\",\"url\":\"http://www.youtube.com/watch?v=ZrcVKWm7vog\",\"title\":\"Fort Apache the Bronx Paul Newman] (1981)\",\"image\":\"http://i1.ytimg.com/vi/ZrcVKWm7vog/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/ZrcVKWm7vog\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=ZrcVKWm7vog\"],\"retweet_count\":[0],\"title\":[\"Fort Apache the Bronx Paul Newman] (1981) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=ZrcVKWm7vog\"]}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"facebook\":{\"application\":\"Vídeos\",\"author\":{\"avatar\":\"https://graph.facebook.com/100007024808424/picture\",\"id\":\"100007024808424\",\"link\":\"http://www.facebook.com/profile.php?id=100007024808424\",\"name\":\"Willian Pinho\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 21:56:14 +0000\",\"description\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\\n>>>CURTI De POUCO UM TUDO. <\",\"id\":\"100007024808424_1435534340024046\",\"link\":\"http://www.facebook.com/photo.php?v=301721056644466\",\"name\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\",\"og\":{\"duração\":\"1:50\"},\"picture\":\"http://vthumb.ak.fbcdn.net/hvthumb-ak-ash3/t15.0-10/1898357_301721366644435_301721056644466_21573_1925_t.jpg\",\"source\":\"http://video.ak.fbcdn.net/hvideo-ak-ash2/v/t42.1790-2/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05
 baeb6ec7eedb0305a29409358\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100007024808424/picture\",\"id\":\"100007024808424\",\"link\":\"http://www.facebook.com/profile.php?id=100007024808424\",\"name\":\"Willian Pinho\",\"type\":\"user\"},\"content\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\\n>>>CURTI De POUCO UM TUDO. <\",\"created_at\":\"Sat, 22 Mar 2014 21:56:14 +0000\",\"id\":\"1e3b20cc96d9a300e0662f3920bf5e56\",\"link\":\"http://www.facebook.com/100007024808424_1435534340024046\",\"schema\":{\"version\":3},\"source\":\"http://video.ak.fbcdn.net/hvideo-ak-ash2/v/t42.1790-2/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358\",\"subtype\":\"video\",\"title\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"pt\",\"tag_extended\":\"pt\"},\"
 links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 15:04:52 +0000\"],\"hops\":[[\"http://www.facebook.com/photo.php?v=301721056644466\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. \"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/photo.php?v=301721056644466\"],\"retweet_count\":[0],\"title\":[\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO... - De POUCO UM TUDO. | Facebook\"],\"url\":[\"https://www.facebook.com/photo.php?v=301721056644466\"]}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Links\",\"author\":{\"avatar\":\"https://graph.facebook.com/100000455275358/picture\",\"id\":\"100000455275358\",\"link\":\"http://www.facebook.com/profile.php?id=100000455275358\",\"name\":\"Susan Hudson\",\"type\":\"user\"},\"caption\":\"indiancountrytodaymedianetwork.com\",\"created_at\":\"Sat, 22 Mar 2014 22:00:40 +0000\",\"description\":\"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache\",\"id\":\"100000455275358_753306681361167\",\"link\":\"http://ow.ly/uKToH\",\"name\":\"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQBfQuIg2QEiixtK&w=154&h=154&url=http%3A%2F%2Fd1jrw5jterzxwu.cloudfront.net%2Fsites%2Fdefault%2Ffiles%2Farticle_media%2Fapache-1886.jpg\",\"source\":\"Links (2309869772)\",\"type\":\"link\"},\"interaction\":{\
 "author\":{\"avatar\":\"https://graph.facebook.com/100000455275358/picture\",\"id\":\"100000455275358\",\"link\":\"http://www.facebook.com/profile.php?id=100000455275358\",\"name\":\"Susan Hudson\",\"type\":\"user\"},\"content\":\"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache\",\"created_at\":\"Sat, 22 Mar 2014 22:00:40 +0000\",\"id\":\"1e3b20d67f9fa400e066004f93ac9c70\",\"link\":\"http://www.facebook.com/100000455275358_753306681361167\",\"received_at\":4743640066903726306,\"schema\":{\"version\":3},\"source\":\"Links (2309869772)\",\"subtype\":\"link\",\"title\":\"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-2,\"topics\":[{\"name\":\"War\",\"score\":0.54581296443939,\"additional\":\"Today marks the 100th anniversary of 
 the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache\",\"hits\":0}]},\"title\":{\"sentiment\":-4}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Facebook for iPhone\",\"author\":{\"avatar\":\"https://graph.facebook.com/1297415516/picture\",\"id\":\"1297415516\",\"link\":\"http://www.facebook.com/profile.php?id=1297415516\",\"name\":\"Mohammad Safi Khan\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 22:01:17 +0000\",\"description\":\"TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.\\n\\nTVS Motor Company Ltd (TVS Motor), member of the TVS grou...\",\"id\":\"1297415516_10203309137071332\",\"link\":\"http://www.facebook.com/TVSApacheOfficial\",\"message\":\"Dear Appachi RTR\\nKindly assist me how to get my issue solved \\\" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy ar
 e delaying for the RC book to hand over ' now it's more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \\nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \\nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\\n\\nCash paid full !next day evening 4:30pm  bik
 e was delivered to me contact person in Tvs lotus sales mr.Ganesh reliable person \\nmanager Mr.Vevakanandan non reliable person \\nKindly assist me for this issue \\nMy contact 9600045507'9500965507\\nPollachi\",\"name\":\"TVS Apache\",\"og\":{\"product/service\":\"1,040,347 like this\"},\"picture\":\"http://profile.ak.fbcdn.net/hprofile-ak-prn1/t1.0-1/1512540_649033688487904_1254327688_a.jpg\",\"source\":\"Facebook for iPhone (6628568379)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/1297415516/picture\",\"id\":\"1297415516\",\"link\":\"http://www.facebook.com/profile.php?id=1297415516\",\"name\":\"Mohammad Safi Khan\",\"type\":\"user\"},\"content\":\"Dear Appachi RTR\\nKindly assist me how to get my issue solved \\\" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it's more then 10 days when I spoke to 
 manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \\nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \\nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\\n\\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sales mr.Ganesh reliable person \\n
 manager Mr.Vevakanandan non reliable person \\nKindly assist me for this issue \\nMy contact 9600045507'9500965507\\nPollachi\",\"created_at\":\"Sat, 22 Mar 2014 22:01:17 +0000\",\"id\":\"1e3b20d7e07ba480e066eaccfc9d6c40\",\"link\":\"http://www.facebook.com/1297415516_10203309137071332\",\"received_at\":4743640067019986960,\"schema\":{\"version\":3},\"source\":\"Facebook for iPhone (6628568379)\",\"subtype\":\"link\",\"title\":\"TVS Apache\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 22:01:43 +0000\"],\"hops\":[[\"http://www.facebook.com/TVSApacheOfficial\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"TVS Apache. 1,040,347 likes · 8,629 talking about this. TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012
 , and is the flagship company of the, USD 7.29 billion, TVS Group.TVS Motor Company Ltd (TVS Motor), member of the TVS group, is the largest company of the group in terms of size and turnover.\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/TVSApacheOfficial\"],\"retweet_count\":[0],\"title\":[\"TVS Apache | Facebook\"],\"url\":[\"https://www.facebook.com/TVSApacheOfficial\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Coimbatore MTP road\",\"sentiment\":3,\"confident\":1,\"label\":\"road\",\"evidence\":7,\"type\":\"Place\",\"about\":1,\"themes\":[\"complete registration book\",\"Next day evening\",\"good dealer\",\"customer care\",\"urgent process\",\"extra amount\",\"road showroom\",\"insurance papers\",\"2nd company\",\"quick delivery\"]},{\"name\":\"manager\",\"sentiment\":5,\"confident\":1,\"label\":\"Job Title\",\"evidence\":7,\"type\":\"Job Title\",\"about\":1,\"themes\":[\"reliable person manager\",\"complete registration book\",\"good dealer\",\"c
 ustomer care\",\"2nd company\",\"30pm bike\",\"day evening\",\"lotus sales\"]}],\"sentiment\":3,\"topics\":[{\"name\":\"Business\",\"score\":0.90492594242096,\"additional\":\"I am in Coimbatore city 'pollachi ' It's 2nd company with complaint of commitment which was agree on everything was legally done but the RC book ? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ? Note:Lotus Tvs dealer in Coimbatore MTP road showroom Paid for urgent process extra amount of 495 (delivery of bike also paid )for register notary all paid and Next day evening receive the bike among the insurance papers only & register numbers by SMS !\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/100004773398251/picture\",\"id\":\"100004773398251\",\"link\":\"http://www.facebook.com/profile.php?id=100004773398251\",\"name\":\"Cynthia Villarreal\",\"type\":\"user\"},\"caption\":\"americanindianshistory.blogspot.com\",\"created_at\":\"Sat, 22 Mar 2014 22:19:54 +0000\",\"description\":\"Photos of the Apache camp in Tularosa Canyon, New Mexico\",\"id\":\"100004773398251_275283519307426\",\"link\":\"http://americanindianshistory.blogspot.com/2014/02/photos-of-apache-village-in-tularosa.html?spref=fb\",\"name\":\"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMe
 xico.jpg\",\"source\":\"Facebook for Android (350685531728)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004773398251/picture\",\"id\":\"100004773398251\",\"link\":\"http://www.facebook.com/profile.php?id=100004773398251\",\"name\":\"Cynthia Villarreal\",\"type\":\"user\"},\"content\":\"Photos of the Apache camp in Tularosa Canyon, New Mexico\",\"created_at\":\"Sat, 22 Mar 2014 22:19:54 +0000\",\"id\":\"1e3b21017d06a100e066a7ebf76f1348\",\"link\":\"http://www.facebook.com/100004773398251_275283519307426\",\"schema\":{\"version\":3},\"source\":\"Facebook for Android (350685531728)\",\"subtype\":\"link\",\"title\":\"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:49:34 +0000\"],\"hops\":[[\"http://americanindianshistory.blogspot.com/2014/02/
 photos-of-apache-village-in-tularosa.html?spref=fb\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"unknown\"]},\"normalized_url\":[\"http://americanindianshistory.blogspot.co.uk/2014/02/photos-of-apache-village-in-tularosa.html?spref=fb\"],\"retweet_count\":[0],\"title\":[\"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico\"],\"url\":[\"http://americanindianshistory.blogspot.co.uk/2014/02/photos-of-apache-village-in-tularosa.html?spref=fb\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1},{\"name\":\"Tularosa Canyon, New Mexico\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":4,\"type\":\"Place\",\"about\":1}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Tularosa Canyon, New Mexico\",\"sentiment\":0,\"confident\":1,\"label\":\"Place\",\"evidence\":4,\"type\":\"Place\",\
 "about\":1}],\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/734307369/picture\",\"id\":\"734307369\",\"link\":\"http://www.facebook.com/profile.php?id=734307369\",\"name\":\"Tory T-ham Hamilton\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 22:23:10 +0000\",\"description\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"id\":\"734307369_10152282200827370\",\"link\":\"http://m.youtube.com/watch?v=Pc5QXkarL0U\",\"name\":\"Mizai Performing Live @ Apache Cafe\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg\",\"source\":\"http://www.youtube.com/v/Pc5QXkarL0U?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/734307369/picture\",\"id\":\"734307369\",\"link\":\"http://www.f
 acebook.com/profile.php?id=734307369\",\"name\":\"Tory T-ham Hamilton\",\"type\":\"user\"},\"content\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"created_at\":\"Sat, 22 Mar 2014 22:23:10 +0000\",\"id\":\"1e3b2108ca39ab00e06643e95a4a92a4\",\"link\":\"http://www.facebook.com/734307369_10152282200827370\",\"received_at\":4743640072535061771,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/Pc5QXkarL0U?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"Mizai Performing Live @ Apache Cafe\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 21:25:38 +0000\"],\"hops\":[[\"http://m.youtube.com/watch?v=Pc5QXkarL0U\",\"http://www.youtube.com/watch?v=Pc5QXkarL0U&app=desktop\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Mizai Performing Live @ Apache Cafe; Exposure Ope
 n Mic; Triad Films; Major Muves Ent\"],\"keywords\":[[\"Apache Cafe (Building)\",\"Mizai\",\"Performing\",\"live\",\"Atl\",\"Exposure\",\"Open\",\"Mic\",\"Performance\",\"Fan\",\"myself\",\"Stage\",\"Microphone\",\"DJ\",\"Mizay\",\"Streetz\",\"Grindin\",\"BAMA\",\"Op...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"url\":\"http://www.youtube.com/watch?v=Pc5QXkarL0U\",\"title\":\"Mizai Performing Live @ Apache Cafe\",\"image\":\"http://i1.ytimg.com/vi/Pc5QXkarL0U/maxresdefault.jpg\"}],\"twitter\":[{\"player_width\":\"1280\",\"description\":\"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent\",\"player_height\":\"720\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/Pc5QXkarL0U\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/Pc5Q
 XkarL0U\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=Pc5QXkarL0U\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=Pc5QXkarL0U\",\"title\":\"Mizai Performing Live @ Apache Cafe\",\"image\":\"http://i1.ytimg.com/vi/Pc5QXkarL0U/maxresdefault.jpg\",\"player\":\"https://www.youtube.com/embed/Pc5QXkarL0U\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=Pc5QXkarL0U\"],\"retweet_count\":[0],\"title\":[\"Mizai Performing Live @ Apache Cafe - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=Pc5QXkarL0U\"]}}"
-"{\"facebook\":{\"application\":\"Vídeos\",\"author\":{\"avatar\":\"https://graph.facebook.com/100004934383932/picture\",\"id\":\"100004934383932\",\"link\":\"http://www.facebook.com/profile.php?id=100004934383932\",\"name\":\"Clausimar Buba\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 22:33:27 +0000\",\"description\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\\n>>>CURTI De POUCO UM TUDO. <\",\"id\":\"100004934383932_270660059775138\",\"link\":\"http://www.facebook.com/photo.php?v=301721056644466\",\"name\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\",\"og\":{\"duração\":\"1:50\"},\"picture\":\"http://vthumb.ak.fbcdn.net/hvthumb-ak-ash3/t15.0-10/1898357_301721366644435_301721056644466_21573_1925_t.jpg\",\"source\":\"http://video.ak.fbcdn.net/hvideo-ak-ash2/v/t42.1790-2/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358\",\"type\":\"v
 ideo\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004934383932/picture\",\"id\":\"100004934383932\",\"link\":\"http://www.facebook.com/profile.php?id=100004934383932\",\"name\":\"Clausimar Buba\",\"type\":\"user\"},\"content\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\\n>>>CURTI De POUCO UM TUDO. <\",\"created_at\":\"Sat, 22 Mar 2014 22:33:27 +0000\",\"id\":\"1e3b211fc665a580e066c43b1b32cfd2\",\"link\":\"http://www.facebook.com/100004934383932_270660059775138\",\"received_at\":4743640075412367737,\"schema\":{\"version\":3},\"source\":\"http://video.ak.fbcdn.net/hvideo-ak-ash2/v/t42.1790-2/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358\",\"subtype\":\"video\",\"title\":\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"pt\",\"tag_extended\":\"pt\"},\"link
 s\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 15:04:52 +0000\"],\"hops\":[[\"http://www.facebook.com/photo.php?v=301721056644466\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. \"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/photo.php?v=301721056644466\"],\"retweet_count\":[0],\"title\":[\"ENQUANTO ISSO O GUARDA MOSTRA SERVIÇO... - De POUCO UM TUDO. | Facebook\"],\"url\":[\"https://www.facebook.com/photo.php?v=301721056644466\"]}}"
-"{\"demographic\":{\"gender\":\"mostly_male\"},\"facebook\":{\"application\":\"Status\",\"author\":{\"avatar\":\"https://graph.facebook.com/100007044361728/picture\",\"id\":\"100007044361728\",\"link\":\"http://www.facebook.com/profile.php?id=100007044361728\",\"name\":\"Len Row\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 22:34:04 +0000\",\"description\":\"We had a great time at the first meeting for the Barnes & Noble Apache Book Club.  Next month's selection is \\\"The Uninvited Guests\\\" by Sadie Jones.  Join us on Tuesday, April 29th.  All are welcome!\",\"id\":\"100007044361728_1434663546778444\",\"link\":\"http://www.facebook.com/bnapache/posts/621041997971955\",\"message\":\"great to know some people can read\\n\\n\",\"name\":\"Barnes & Noble Apache\",\"picture\":\"http://scontent-b.xx.fbcdn.net/hphotos-ash3/t1.0-9/p100x100/1926909_621039807972174_390303089_n.jpg\",\"source\":\"Status (25554907596)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"htt
 ps://graph.facebook.com/100007044361728/picture\",\"id\":\"100007044361728\",\"link\":\"http://www.facebook.com/profile.php?id=100007044361728\",\"name\":\"Len Row\",\"type\":\"user\"},\"content\":\"great to know some people can read\\n\\n\",\"created_at\":\"Sat, 22 Mar 2014 22:34:04 +0000\",\"id\":\"1e3b21212741a600e0662f16ad9b8c9e\",\"link\":\"http://www.facebook.com/100007044361728_1434663546778444\",\"received_at\":4743640075258435102,\"schema\":{\"version\":3},\"source\":\"Status (25554907596)\",\"subtype\":\"link\",\"title\":\"Barnes & Noble Apache\",\"type\":\"facebook\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 22:34:25 +0000\"],\"hops\":[[\"http://www.facebook.com/bnapache/posts/621041997971955\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/bnapache/posts/621041997971955\"],\"retweet_count\":[0],\"t
 itle\":[\"We had a great time at the first meeting... - Barnes & Noble Apache | Facebook\"],\"url\":[\"https://www.facebook.com/bnapache/posts/621041997971955\"]},\"salience\":{\"content\":{\"sentiment\":6},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"GrabInbox\",\"author\":{\"avatar\":\"https://graph.facebook.com/100004948484234/picture\",\"id\":\"100004948484234\",\"link\":\"http://www.facebook.com/profile.php?id=100004948484234\",\"name\":\"Said Azaou\",\"type\":\"user\"},\"caption\":\"mcp.infusionsoft.com\",\"created_at\":\"Sat, 22 Mar 2014 22:45:03 +0000\",\"description\":\"type Status report The requested resource is not available.\",\"id\":\"100004948484234_257170744457873\",\"link\":\"https://mcp.infusionsoft.com/go/2ndcha\",\"message\":\"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https://mcp.infusionsoft.com/go/2ndcha\",\"name\":\"Apache Tomcat/6.0.36 - Error report\",\"source\":\"GrabInbox (135280156521587)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004948484234/picture\",\"id\":\"100004948484234\",\"link\":\"http://www.facebook.com/
 profile.php?id=100004948484234\",\"name\":\"Said Azaou\",\"type\":\"user\"},\"content\":\"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https://mcp.infusionsoft.com/go/2ndcha\",\"created_at\":\"Sat, 22 Mar 2014 22:45:03 +0000\",\"id\":\"1e3b2139b3f8a180e066b46311970690\",\"link\":\"http://www.facebook.com/100004948484234_257170744457873\",\"schema\":{\"version\":3},\"source\":\"GrabInbox (135280156521587)\",\"subtype\":\"link\",\"title\":\"Apache Tomcat/6.0.36 - Error report\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[404],\"created_at\":[\"Sat, 22 Mar 2014 22:45:09 +0000\"],\"hops\":[[\"https://mcp.infusionsoft.com/go/2ndcha\"]],\"normalized_url\":[null],\"retweet_count\":[0],\"title\":[\"null\"],\"url\":[\"https://mcp.infusionsoft.com/go/2ndcha\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":-5}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Facebook for Windows Phone\",\"author\":{\"avatar\":\"https://graph.facebook.com/100004800278915/picture\",\"id\":\"100004800278915\",\"link\":\"http://www.facebook.com/profile.php?id=100004800278915\",\"name\":\"Chuck Brown\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 22:51:31 +0000\",\"description\":\"Tonight! Come out to Magnolia Motor Lounge around 9:30 or so! We'll play you rock and roll songs before the great Patrick Sweany Music! Hooray!!\",\"id\":\"100004800278915_266054613564546\",\"link\":\"http://www.facebook.com/TheApache5/posts/10152325503479868\",\"name\":\"The Apache 5\",\"picture\":\"http://profile.ak.fbcdn.net/hprofile-ak-prn2/t1.0-1/p100x100/1797601_10152224411094868_229046817_a.jpg\",\"source\":\"Facebook for Windows Phone (135892916448833)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004800278915/picture\",\"id\":\"100004800278915\",\"
 link\":\"http://www.facebook.com/profile.php?id=100004800278915\",\"name\":\"Chuck Brown\",\"type\":\"user\"},\"content\":\"Tonight! Come out to Magnolia Motor Lounge around 9:30 or so! We'll play you rock and roll songs before the great Patrick Sweany Music! Hooray!!\",\"created_at\":\"Sat, 22 Mar 2014 22:51:31 +0000\",\"id\":\"1e3b21482839ab80e066efe3200d7e24\",\"link\":\"http://www.facebook.com/100004800278915_266054613564546\",\"received_at\":4743640079700650151,\"schema\":{\"version\":3},\"source\":\"Facebook for Windows Phone (135892916448833)\",\"subtype\":\"link\",\"title\":\"The Apache 5\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 19:20:40 +0000\"],\"hops\":[[\"http://www.facebook.com/TheApache5/posts/10152325503479868\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/TheApache5/p
 osts/10152325503479868\"],\"retweet_count\":[0],\"title\":[\"The Apache 5 - Tonight! Come out to Magnolia Motor Lounge... | Facebook\"],\"url\":[\"https://www.facebook.com/TheApache5/posts/10152325503479868\"]},\"salience\":{\"content\":{\"sentiment\":12},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Video\",\"author\":{\"avatar\":\"https://graph.facebook.com/100006082453476/picture\",\"id\":\"100006082453476\",\"link\":\"http://www.facebook.com/profile.php?id=100006082453476\",\"name\":\"Libor Klinton\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 22:55:02 +0000\",\"description\":\"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq \\n\\n----------------------------------------------------------------\\nFor war and weapons technologies - Military photos and videos www.facebook.com/WarDocumentaries\",\"id\":\"100006082453476_1480782535467814\",\"link\":\"http://www.facebook.com/photo.php?v=359071040872553\",\"name\":\"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Mi...\",\"og\":{\"length\":\"4:10\"},\"picture\":\"http://vthumb.ak.fbcdn.net/hvthumb-ak-prn1/t15.0-10/632456_359071314205859_359071040872553_64780_2217_t.jpg\",\"source\":\"http://scontent.xx.fbcdn.ne
 t/hvideo-prn1/v/t42.1790-2/757342_359071264205864_773831534_n.mp4?oh=70dea43416eaff290d9dc3946457f066&oe=532F7679\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100006082453476/picture\",\"id\":\"100006082453476\",\"link\":\"http://www.facebook.com/profile.php?id=100006082453476\",\"name\":\"Libor Klinton\",\"type\":\"user\"},\"content\":\"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq \\n\\n----------------------------------------------------------------\\nFor war and weapons technologies - Military photos and videos www.facebook.com/WarDocumentaries\",\"created_at\":\"Sat, 22 Mar 2014 22:55:02 +0000\",\"id\":\"1e3b2150047aa700e0665052b58ab34a\",\"link\":\"http://www.facebook.com/100006082453476_1480782535467814\",\"schema\":{\"version\":3},\"source\":\"http://scontent.xx.fbcdn.net/hvideo-prn1/v/t42.1790-2/757342_359071264205864_773831534_n.mp4?oh=70dea43416eaff290d9dc3946457f066&oe=532F7679\",\"subtype\":\"v
 ideo\",\"title\":\"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Mi...\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 20:22:09 +0000\"],\"hops\":[[\"http://www.facebook.com/photo.php?v=359071040872553\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq ----------------------------------------------------------------For war...\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/photo.php?v=359071040872553\"],\"retweet_count\":[0],\"title\":[\"Apache Gunship Takes Out 5 Armed... - War Documentaries | Facebook\"],\"url\":[\"https://www.facebook.com/photo.php?v=359071040872553\"]}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000692731781/picture\",\"id\":\"100000692731781\",\"link\":\"http://www.facebook.com/profile.php?id=100000692731781\",\"name\":\"Dimitris Kolovos\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 23:08:23 +0000\",\"id\":\"100000692731781_739630136070071\",\"link\":\"http://youtu.be/EzgbcyfJgfQ\",\"message\":\"Best instrumental rock song ever\",\"name\":\"The Shadows - Apache (1960)\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQDa2tZfBZZxvkC0&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FEzgbcyfJgfQ%2Fmaxresdefault.jpg\",\"source\":\"http://www.youtube.com/v/EzgbcyfJgfQ?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000692731781/picture\",\"id\":\"100000692731781\",\"link\":\"http://www.facebook.com/profile.php?id=100000692731781\",\"name\":\"Dimitris Kolovos\",\"type\":\"u
 ser\"},\"content\":\"Best instrumental rock song ever\",\"created_at\":\"Sat, 22 Mar 2014 23:08:23 +0000\",\"id\":\"1e3b216ddb68ad80e0667fd817b1fa3a\",\"link\":\"http://www.facebook.com/100000692731781_739630136070071\",\"received_at\":4743640083920541503,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/EzgbcyfJgfQ?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"The Shadows - Apache (1960)\",\"type\":\"facebook\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 23:09:51 +0000\"],\"hops\":[[\"http://youtu.be/EzgbcyfJgfQ\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"\",\"url\":\"http://www.youtube.com/watch?v=EzgbcyfJgfQ\",\"title\":\"The Shadows - Apache (1960)\",\"image\":\"http://i1.ytimg.com/vi/EzgbcyfJgfQ/maxresdefault.jpg\"}],\"twitter\":[{
 \"player_width\":\"1440\",\"description\":\"\",\"player_height\":\"1080\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/EzgbcyfJgfQ\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/EzgbcyfJgfQ\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=EzgbcyfJgfQ\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=EzgbcyfJgfQ\",\"title\":\"The Shadows - Apache (1960)\",\"image\":\"http://i1.ytimg.com/vi/EzgbcyfJgfQ/maxresdefault.jpg\",\"player\":\"https://www.youtube.com/embed/EzgbcyfJgfQ\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=EzgbcyfJgfQ\"],\"retweet_count\":[0],\"title\":[\"The Shadows - Apache (1960) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=EzgbcyfJgfQ\"]}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/500728788/picture\",\"id\":\"500728788\",\"link\":\"http://www.facebook.com/profile.php?id=500728788\",\"name\":\"JustinJustin Toca\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 23:15:04 +0000\",\"description\":\"http://www.mrbongo.com/products/bongo-rock 1973 / 2006 MGM , Mr Bongo Records\",\"id\":\"500728788_10152086255343789\",\"link\":\"http://www.youtube.com/watch?v=V-1mLguIFYQ\",\"message\":\"Getting some driving music - Jump on it ! \\n\",\"name\":\"Incredible Bongo Band - Apache (Grandmaster Flash Mix)\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQAQT9vSNtgsLHVT&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FV-1mLguIFYQ%2Fhqdefault.jpg\",\"source\":\"http://www.youtube.com/v/V-1mLguIFYQ?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/500728788/picture\",\"id\":\"500728788\",\"link\":\"http://www.facebook.c
 om/profile.php?id=500728788\",\"name\":\"JustinJustin Toca\",\"type\":\"user\"},\"content\":\"Getting some driving music - Jump on it ! \\n\",\"created_at\":\"Sat, 22 Mar 2014 23:15:04 +0000\",\"id\":\"1e3b217ccba4ac00e066f5e6142ea0a6\",\"link\":\"http://www.facebook.com/500728788_10152086255343789\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/V-1mLguIFYQ?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Incredible Bongo Band - Apache (Grandmaster Flash Mix)\",\"type\":\"facebook\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 23:15:25 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"http://www.mrbongo.com/products/bongo-rock 1973 / 2006 MGM , Mr Bongo Records\"],\"keywords\":[[\"incredible\",\"bongo\",\"band\",\"apache\",\"sugar\",\"hill\",\"gang\",\"west\",\"street\",\"mob\",\"break\",\"dance\",\"boogie\",\"sir
 \",\"mix-a-lot\",\"jump\",\"on\",\"it\",\"mix\",\"remix\",\"fatboy\",\"slim\",\"80s\",\"bre...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"http://www.mrbongo.com/products/bongo-rock 1973 / 2006 MGM , Mr Bongo Records\",\"url\":\"http://www.youtube.com/watch?v=V-1mLguIFYQ\",\"title\":\"Incredible Bongo Band - Apache (Grandmaster Flash Mix)\",\"image\":\"http://i1.ytimg.com/vi/V-1mLguIFYQ/hqdefault.jpg\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"http://www.mrbongo.com/products/bongo-rock 1973 / 2006 MGM , Mr Bongo Records\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/V-1mLguIFYQ\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/V-1mLguIFYQ\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=V-1mLguIFYQ\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@
 youtube\",\"url\":\"http://www.youtube.com/watch?v=V-1mLguIFYQ\",\"title\":\"Incredible Bongo Band - Apache (Grandmaster Flash Mix)\",\"image\":\"http://i1.ytimg.com/vi/V-1mLguIFYQ/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/V-1mLguIFYQ\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=V-1mLguIFYQ\"],\"retweet_count\":[0],\"title\":[\"Incredible Bongo Band - Apache (Grandmaster Flash Mix) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=V-1mLguIFYQ\"]}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"application\":\"Photos\",\"author\":{\"avatar\":\"https://graph.facebook.com/840913406/picture\",\"id\":\"840913406\",\"link\":\"http://www.facebook.com/profile.php?id=840913406\",\"name\":\"James Thomas Blanton\",\"type\":\"user\"},\"caption\":\"abaachi home xx\",\"created_at\":\"Sat, 22 Mar 2014 23:41:00 +0000\",\"icon\":\"http://static.ak.fbcdn.net/rsrc.php/v2/yD/r/aS8ecmYRys0.gif\",\"id\":\"840913406_10152308549513407\",\"link\":\"http://www.facebook.com/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1\",\"name\":\"Photos from Vallibus Apache Sherwood's post in Cochise Chirichua\",\"og\":{\"by\":\"Vallibus Apache Sherwood\"},\"picture\":\"http://photos-g.ak.fbcdn.net/hphotos-ak-prn2/t1.0-0/10001324_480857308708959_468972925_s.jpg\",\"source\":\"Photos (2305272732)\",\"story\":\"James Thomas Blanton shared a photo.\",\"story_tags\":[[{\"name\":\"James Thomas Blanton\",\"length\":20,\"type\":\"user\",\"id\":\"840
 913406\",\"offset\":0}]],\"type\":\"photo\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/840913406/picture\",\"id\":\"840913406\",\"link\":\"http://www.facebook.com/profile.php?id=840913406\",\"name\":\"James Thomas Blanton\",\"type\":\"user\"},\"content\":\"James Thomas Blanton shared a photo.\",\"created_at\":\"Sat, 22 Mar 2014 23:41:00 +0000\",\"id\":\"1e3b21b6c2d0ae00e066ce9dccf570be\",\"link\":\"http://www.facebook.com/840913406_10152308549513407\",\"received_at\":4743640092152795077,\"schema\":{\"version\":3},\"source\":\"Photos (2305272732)\",\"subtype\":\"photo\",\"title\":\"Photos from Vallibus Apache Sherwood's post in Cochise Chirichua\",\"type\":\"facebook\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 23:41:43 +0000\"],\"hops\":[[\"http://www.facebook.com/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"co
 ntent_type\":[\"text/html\"],\"description\":[\"abaachi home xx\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1\"],\"retweet_count\":[0],\"title\":[\"Photos from Vallibus Apache Sherwood&#039;s... - Vallibus Apache Sherwood | Facebook\"],\"url\":[\"https://www.facebook.com/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"James Thomas Blanton\",\"sentiment\":0,\"confident\":1,\"label\":\"Person\",\"evidence\":4,\"type\":\"Person\",\"about\":1}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Vallibus Apache Sherwood\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000721662048/picture\",\"id\":\"100000721662048\",\"link\":\"http://www.facebook.com/profile.php?id=100000721662048\",\"name\":\"Donna Cherylle Chesson\",\"type\":\"user\"},\"created_at\":\"Sat, 22 Mar 2014 23:55:48 +0000\",\"description\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"id\":\"2364123362_10152280355698363\",\"likes\":{\"ids\":[\"100000721662048\"],\"names\":[\"Donna Cherylle Chesson\"]},\"link\":\"http://youtu.be/vQObWW06VAM\",\"name\":\"Sugarhill Gang Apache (Jump On It)\",\"picture\":\"http://external.xx.fbcdn.net/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l\",\"source\":\"http://www.youtube.com/v/vQObWW06VAM?autohide=1&version=3&autoplay=1\",\"to\":{\"ids\":[\"2364123362\"],\"names\":[\"The Funky Fres
 h Fans of Felix Hernandez's Rhythm Revue\"]},\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000721662048/picture\",\"id\":\"100000721662048\",\"link\":\"http://www.facebook.com/profile.php?id=100000721662048\",\"name\":\"Donna Cherylle Chesson\",\"type\":\"user\"},\"content\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"created_at\":\"Sat, 22 Mar 2014 23:55:48 +0000\",\"id\":\"1e3b21d7d771aa00e066dffa252677c8\",\"link\":\"http://www.facebook.com/2364123362_10152280355698363\",\"mention_ids\":[\"2364123362\"],\"mentions\":[\"The Funky Fresh Fans of Felix Hernandez's Rhythm Revue\"],\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/vQObWW06VAM?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Sugarhill Gang Apache (Jump On It)\",\"type\":\"facebook\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en
 \"},\"links\":{\"code\":[200],\"created_at\":[\"Sat, 22 Mar 2014 01:42:36 +0000\"],\"hops\":[[\"http://youtu.be/vQObWW06VAM\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\"],\"keywords\":[[\"Funky\",\"Pop\",\"Greatness\",\"Awesome\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"url\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"title\":\"Sugarhill Gang Apache (Jump On It)\",\"image\":\"http://i1.ytimg.com/vi/vQObWW06VAM/hqdefault.jpg\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!\",\"
 player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/vQObWW06VAM\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/vQObWW06VAM\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=vQObWW06VAM\",\"title\":\"Sugarhill Gang Apache (Jump On It)\",\"image\":\"http://i1.ytimg.com/vi/vQObWW06VAM/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/vQObWW06VAM\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=vQObWW06VAM\"],\"retweet_count\":[0],\"title\":[\"Sugarhill Gang Apache (Jump On It) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=vQObWW06VAM\"]}}"
-"{\"demographic\":{\"gender\":\"mostly_male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004682409587/picture\",\"id\":\"100004682409587\",\"link\":\"http://www.facebook.com/profile.php?id=100004682409587\",\"name\":\"Jose Maria Martinez Leyva\",\"type\":\"user\"},\"created_at\":\"Sun, 23 Mar 2014 00:33:00 +0000\",\"id\":\"100004682409587_277921899040555\",\"link\":\"https://www.youtube.com/watch?v=fm5m5jfQ5ik\",\"message\":\"jajajajajaj esta conmadres\\n\",\"name\":\"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQDiGN11mckrPt_6&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2Ffm5m5jfQ5ik%2Fhqdefault.jpg\",\"source\":\"http://www.youtube.com/v/fm5m5jfQ5ik?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004682409587/picture\",\"id\":\"100004682409587\",\"link\":\"http://www.facebook.com/pr
 ofile.php?id=100004682409587\",\"name\":\"Jose Maria Martinez Leyva\",\"type\":\"user\"},\"content\":\"jajajajajaj esta conmadres\\n\",\"created_at\":\"Sun, 23 Mar 2014 00:33:00 +0000\",\"id\":\"1e3b222afd74a600e066797f81f716ee\",\"link\":\"http://www.facebook.com/100004682409587_277921899040555\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/fm5m5jfQ5ik?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)\",\"type\":\"facebook\"},\"language\":{\"confidence\":96,\"tag\":\"es\",\"tag_extended\":\"es\"},\"links\":{\"code\":[200],\"created_at\":[\"Sun, 23 Mar 2014 00:34:12 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"keywords\":[[\"LOS\",\"AMOS\",\"DEL\",\"CAMINO\",\"tropicalisimo\",\"apache\",\"como\",\"camionero\",\"que\",\"soy\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"\",\"url\":\"htt
 p://www.youtube.com/watch?v=fm5m5jfQ5ik\",\"title\":\"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)\",\"image\":\"https://i1.ytimg.com/vi/fm5m5jfQ5ik/hqdefault.jpg\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fm5m5jfQ5ik\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fm5m5jfQ5ik\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=fm5m5jfQ5ik\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=fm5m5jfQ5ik\",\"title\":\"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)\",\"image\":\"https://i1.ytimg.com/vi/fm5m5jfQ5ik/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/fm5m5jfQ5ik\"}]},\"normalized_url\":[\"https://youtube.com/watch?v=fm5m5jfQ5ik\"],
 \"retweet_count\":[0],\"title\":[\"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito) - YouTube\"],\"url\":[\"https://www.youtube.com/watch?v=fm5m5jfQ5ik\"]}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/100002325709380/picture\",\"id\":\"100002325709380\",\"link\":\"http://www.facebook.com/profile.php?id=100002325709380\",\"name\":\"Cynthia Bell\",\"type\":\"user\"},\"caption\":\"m.accuweather.com\",\"created_at\":\"Sun, 23 Mar 2014 00:41:44 +0000\",\"description\":\"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation\",\"id\":\"100002325709380_610404682380383\",\"link\":\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\",\"name\":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fincludes%2Fcolumns%2Fthir
 dpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg\",\"source\":\"Facebook for Android (350685531728)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002325709380/picture\",\"id\":\"100002325709380\",\"link\":\"http://www.facebook.com/profile.php?id=100002325709380\",\"name\":\"Cynthia Bell\",\"type\":\"user\"},\"content\":\"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation\",\"created_at\":\"Sun, 23 Mar 2014 00:41:44 +0000\",\"id\":\"1e3b223e82b5a400e066632d393e4a54\",\"link\":\"http://www.facebook.com/100002325709380_610404682380383\",\"received_at\":4743640107400037610,\"schema\":{\"version\":3},\"source\":\"Facebook for Android (350685531728)\",\"subtype\":\"link\",\"title\":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"type\":\"facebook\"},\"lang
 uage\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sun, 23 Mar 2014 00:42:07 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com\"],\"keywords\":[[\"Apache Junction\",\"AZ 85120\",\"15 day weather forecast\",\"10 day weather forecast\",\"weather forecast\"]],\"lang\":[\"unknown\"]},\"normalized_url\":[\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\"],\"retweet_count\":[0],\"title\":[\"Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120\"],\"url\":[\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"AccuWeather.com\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evi
 dence\":2,\"type\":\"Company\",\"about\":1,\"themes\":[\"weather forecast\",\"Extended forecast\"]},{\"name\":\"Apache Junction, AZ\",\"sentiment\":0,\"confident\":1,\"label\":\"city\",\"evidence\":2,\"type\":\"Place\",\"about\":1,\"themes\":[\"weather forecast\",\"Extended forecast\"]},{\"name\":\"85120\",\"sentiment\":1,\"confident\":1,\"label\":\"postcode\",\"evidence\":6,\"type\":\"Place\",\"about\":1,\"themes\":[\"weather forecast\",\"Extended forecast\"]}],\"sentiment\":1,\"topics\":[{\"name\":\"Weather\",\"score\":0.89863264560699,\"additional\":\"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation\",\"hits\":0}]},\"title\":{\"entities\":[{\"name\":\"85120\",\"sentiment\":0,\"confident\":1,\"label\":\"postcode\",\"evidence\":4,\"type\":\"Place\",\"about\":1}],\"sentiment\":0,\"topics\":[{\"name\":\"Weather\",\"score\":0.9952420592308,\"additional
 \":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"hits\":0}]}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/100002325709380/picture\",\"id\":\"100002325709380\",\"link\":\"http://www.facebook.com/profile.php?id=100002325709380\",\"name\":\"Cynthia Bell\",\"type\":\"user\"},\"caption\":\"m.accuweather.com\",\"created_at\":\"Sun, 23 Mar 2014 00:45:41 +0000\",\"description\":\"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation\",\"id\":\"100002325709380_610405619046956\",\"link\":\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\",\"message\":\"Its actually 84 right now! For a month or more already!\",\"name\":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A
 %2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fincludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg\",\"source\":\"Facebook for Android (350685531728)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002325709380/picture\",\"id\":\"100002325709380\",\"link\":\"http://www.facebook.com/profile.php?id=100002325709380\",\"name\":\"Cynthia Bell\",\"type\":\"user\"},\"content\":\"Its actually 84 right now! For a month or more already!\",\"created_at\":\"Sun, 23 Mar 2014 00:45:41 +0000\",\"id\":\"1e3b224756eaa880e066a75a6320b04a\",\"link\":\"http://www.facebook.com/100002325709380_610405619046956\",\"received_at\":4743640108424891046,\"schema\":{\"version\":3},\"source\":\"Facebook for Android (350685531728)\",\"subtype\":\"link\",\"title\":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"type\":\"facebook\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\
 ":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Sun, 23 Mar 2014 00:42:07 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com\"],\"keywords\":[[\"Apache Junction\",\"AZ 85120\",\"15 day weather forecast\",\"10 day weather forecast\",\"weather forecast\"]],\"lang\":[\"unknown\"]},\"normalized_url\":[\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\"],\"retweet_count\":[0],\"title\":[\"Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120\"],\"url\":[\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"85120\",\"sentiment\":0,\"confident\":1,\"label\":\"postcode\",\"evidence\":4,\"type\":\"Place\",\"about\
 ":1}],\"sentiment\":0,\"topics\":[{\"name\":\"Weather\",\"score\":0.9952420592308,\"additional\":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"hits\":0}]}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Facebook for Android\",\"author\":{\"avatar\":\"https://graph.facebook.com/100002325709380/picture\",\"id\":\"100002325709380\",\"link\":\"http://www.facebook.com/profile.php?id=100002325709380\",\"name\":\"Cynthia Bell\",\"type\":\"user\"},\"caption\":\"m.accuweather.com\",\"created_at\":\"Sun, 23 Mar 2014 00:49:19 +0000\",\"description\":\"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation\",\"id\":\"100002325709380_610406239046894\",\"link\":\"http://m.accuweather.com/en/us/apache-junction-az/85120/extended-weather-forecast/331814\",\"message\":\"It's actually 84 right now and for the past month or more now!\",\"name\":\"Weather in Apache Junction - AccuWeather Forecast for AZ 85120\",\"picture\":\"http://external.ak.fbcdn.net/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=
 http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fincludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg\",\"source\":\"Facebook for Android (350685531728)\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/10000232

<TRUNCATED>

[38/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
index fb61b03..92772f2 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-00000.json
@@ -1,862 +1,862 @@
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/1384599202/picture\",\"id\":\"1384599202\",\"link\":\"http://www.facebook.com/profile.php?id=1384599202\",\"name\":\"Harry Medina\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:23:48 +0000\",\"id\":\"1384599202_10202229370960760\",\"link\":\"http://www.youtube.com/watch?v=QoDltFECFgI\",\"message\":\"http://www.youtube.com/watch?v=QoDltFECFgI\",\"name\":\"Apache Pónmela en el aire\",\"source\":\"http://www.youtube.com/v/QoDltFECFgI?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/1384599202/picture\",\"id\":\"1384599202\",\"link\":\"http://www.facebook.com/profile.php?id=1384599202\",\"name\":\"Harry Medina\"},\"content\":\"http://www.youtube.com/watch?v=QoDltFECFgI\",\"created_at\":\"Wed, 02 Oct 2013 23:24:22 +0000\",\"id\":\"1e32bb9b06b1aa00e06699f748eabed2\",\"link\":\"http://ww
 w.facebook.com/1384599202_10202229370960760\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/QoDltFECFgI?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Pónmela en el aire\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 23:24:20 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"\",\"url\":\"http://www.youtube.com/watch?v=QoDltFECFgI\",\"title\":\"Apache Pónmela en el aire\",\"image\":\"http://i1.ytimg.com/vi/QoDltFECFgI/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"480\",\"description\":\"\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/QoDltFECFgI\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/QoDltFECFgI\
 ",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=QoDltFECFgI\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=QoDltFECFgI\",\"title\":\"Apache Pónmela en el aire\",\"image\":\"http://i1.ytimg.com/vi/QoDltFECFgI/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/QoDltFECFgI\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=QoDltFECFgI\"],\"retweet_count\":[0],\"title\":[\"Apache Pónmela en el aire - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=QoDltFECFgI\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001186762687/picture\",\"id\":\"100001186762687\",\"link\":\"http://www.facebook.com/profile.php?id=100001186762687\",\"name\":\"Magdalena Piela\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:32:27 +0000\",\"description\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"id\":\"100001186762687_567905416592345\",\"link\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"message\":\"there are things that you should not do ... simply not...\\nhttp://www.youtube.com/watch?v=mYMiEU0vKIM\",\"name\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"source\":\"http://www.youtube.com/v/mYMiEU0vKIM?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001186762687/picture\",\"id\":\"100001186762687\",\"link\":\"http://www.facebook.com/profile.php?id=10000118676268
 7\",\"name\":\"Magdalena Piela\"},\"content\":\"there are things that you should not do ... simply not...\\nhttp://www.youtube.com/watch?v=mYMiEU0vKIM\",\"created_at\":\"Wed, 02 Oct 2013 23:32:38 +0000\",\"id\":\"1e32bbae5c43a780e06676c9b3bc93d0\",\"link\":\"http://www.facebook.com/100001186762687_567905416592345\",\"received_at\":4743578121590502169,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/mYMiEU0vKIM?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 00:11:00 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\"],\"keywords\":[[\"US\",\"Army\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"US Army Video
  - Apache Helicopter (ACDC - Thunderstruck)\",\"url\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"title\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"image\":\"http://i1.ytimg.com/vi/mYMiEU0vKIM/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"480\",\"description\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/mYMiEU0vKIM\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/mYMiEU0vKIM\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"title\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"image\":\"http://i1.ytimg.com/vi/mYMiEU0vKIM/hqdefault.jpg\",\"player\":\"https://www.youtube.com/em
 bed/mYMiEU0vKIM\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=mYMiEU0vKIM\"],\"retweet_count\":[0],\"title\":[\"US Army Video - Apache Helicopter (ACDC - Thunderstruck) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=mYMiEU0vKIM\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"War\",\"score\":0.64078038930893,\"hits\":0},{\"name\":\"Aviation\",\"score\":0.48720294237137,\"hits\":0},{\"name\":\"Video Games\",\"score\":0.45472154021263,\"hits\":0}]}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004185664005/picture\",\"id\":\"100004185664005\",\"link\":\"http://www.facebook.com/profile.php?id=100004185664005\",\"name\":\"Jeff Moses\"},\"caption\":\"www.moderntimesmagazine.com\",\"created_at\":\"Wed, 02 Oct 2013 23:32:49 +0000\",\"description\":\"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages\",\"id\":\"100004185664005_239409246208596\",\"link\":\"http://www.moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\",\"message\":\"For Us Presents aren't the only people putting on great events! Check out Apache Lake Music Festival 2013 shit's going to be live!\",\"name\":\"Apache Lake Music Festival Ramps Up For Third Try\",\"source\":\"web\",\"to\":{\"ids\":[\"106816409488565\",\"618209761535313\"],\"names\":[\"For Us Prese
 nts\",\"Apache Lake Music Festival 2013\"]},\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100004185664005/picture\",\"id\":\"100004185664005\",\"link\":\"http://www.facebook.com/profile.php?id=100004185664005\",\"name\":\"Jeff Moses\"},\"content\":\"For Us Presents aren't the only people putting on great events! Check out Apache Lake Music Festival 2013 shit's going to be live!\",\"created_at\":\"Wed, 02 Oct 2013 23:33:11 +0000\",\"id\":\"1e32bbaf2e12a680e06698742eeb58a8\",\"link\":\"http://www.facebook.com/100004185664005_239409246208596\",\"mention_ids\":[\"106816409488565\",\"618209761535313\"],\"mentions\":[\"For Us Presents\",\"Apache Lake Music Festival 2013\"],\"schema\":{\"version\":3},\"source\":\"web\",\"subtype\":\"link\",\"title\":\"Apache Lake Music Festival Ramps Up For Third Try\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 22:10:40 +0000\
 "],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"keywords\":[[\"Apache Lake Music Festival\",\"ALMF\",\"Kongo’s\",\"Future Loves Past\",\"The Sugar Thieves\",\"Apache Lake Resort and Marina\",\"229.5 mile marker\",\"Roosevelt\",\"Ariz.\",\"McDowell Mountain Music Festival\",\"The Wiley Ones\",\"Banana Gun\",\"Mergence\",\"Dry River Yacht Club\",\"Jared and the Mill\",\"Decker\",\"Phoenix Metro\",\"The Hourglass Cats\",\"The Haymarket Squares\",\"Sister Lip\",\"Japhy’s Descent\",\"Kush County\",\"Steff and the Articles\",\"The Cordials\",\"Elizabeth Rose\",\"Mr. Mudd and Mr. Gold\",\"Greyhound Soul\",\"The Prowling Kind\",\"Banshee Bones\",\"Sun Ghost\",\"Sasquanaut\",\"Sara Robinson and the Midnight Special\",\"The Black Moods\",\"Princess\",\"Walt Richardson\",\"DJ Stowner\",\"TKLB?\",\"Kevin Redlich/C-Posse/Corey Golden Explosion\",\"Ghetto Cowgirl\",\"Huckleberry\",\"The Senators\",\"Northern Hustle\"]],\"lang\":[\"unknown\"],\"opengraph\":[{\"descripti
 on\":\"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages\",\"type\":\"article\",\"url\":\"http://www.moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\",\"image\":\"http://www.moderntimesmagazine.com/moderntimesimages2013/MT_Images_1310/ALMF_560.jpg\",\"title\":\"Apache Lake Music Festival Ramps Up For Third Try\"}]},\"normalized_url\":[\"http://moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\"],\"retweet_count\":[0],\"title\":[\"Apache Lake Music Festival Ramps Up For Third Try\"],\"url\":[\"http://www.moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/106816409488565/picture\",\"id\":\"106816409488565\",\"link\":\"http://www.facebook.com/profile.php?id=106816409488565\",\"name\":\"For Us Presents\"},\"caption\":\"www.moderntimesmagazine.com\",\"created_at\":\"Wed, 02 Oct 2013 23:33:47 +0000\",\"description\":\"The Third Annual, Wilderness Surrounded, Local Music Festival Will Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages\",\"id\":\"106816409488565_125339574302915\",\"link\":\"http://www.moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\",\"message\":\"We aint the only locals putting on awesome events! Check out Apache Lake Music Festival  coming up this month! It should be rather epic!\",\"name\":\"Apache Lake Music Festival Ramps Up For Third Try\",\"source\":\"web\",\"to\":{\"ids\":[\"122055604509070\"],\"names\":[\"Apache Lake Music Festival\"]},\"type\":\"link\"},\"interac
 tion\":{\"author\":{\"avatar\":\"https://graph.facebook.com/106816409488565/picture\",\"id\":\"106816409488565\",\"link\":\"http://www.facebook.com/profile.php?id=106816409488565\",\"name\":\"For Us Presents\"},\"content\":\"We aint the only locals putting on awesome events! Check out Apache Lake Music Festival  coming up this month! It should be rather epic!\",\"created_at\":\"Wed, 02 Oct 2013 23:34:16 +0000\",\"id\":\"1e32bbb15733af80e0669248f7499464\",\"link\":\"http://www.facebook.com/106816409488565_125339574302915\",\"mention_ids\":[\"122055604509070\"],\"mentions\":[\"Apache Lake Music Festival\"],\"received_at\":4743578121999296233,\"schema\":{\"version\":3},\"source\":\"web\",\"subtype\":\"link\",\"title\":\"Apache Lake Music Festival Ramps Up For Third Try\",\"type\":\"facebook\"},\"language\":{\"confidence\":97,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 22:10:40 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\
 "keywords\":[[\"Apache Lake Music Festival\",\"ALMF\",\"Kongo’s\",\"Future Loves Past\",\"The Sugar Thieves\",\"Apache Lake Resort and Marina\",\"229.5 mile marker\",\"Roosevelt\",\"Ariz.\",\"McDowell Mountain Music Festival\",\"The Wiley Ones\",\"Banana Gun\",\"Mergence\",\"Dry River Yacht Club\",\"Jared and the Mill\",\"Decker\",\"Phoenix Metro\",\"The Hourglass Cats\",\"The Haymarket Squares\",\"Sister Lip\",\"Japhy’s Descent\",\"Kush County\",\"Steff and the Articles\",\"The Cordials\",\"Elizabeth Rose\",\"Mr. Mudd and Mr. Gold\",\"Greyhound Soul\",\"The Prowling Kind\",\"Banshee Bones\",\"Sun Ghost\",\"Sasquanaut\",\"Sara Robinson and the Midnight Special\",\"The Black Moods\",\"Princess\",\"Walt Richardson\",\"DJ Stowner\",\"TKLB?\",\"Kevin Redlich/C-Posse/Corey Golden Explosion\",\"Ghetto Cowgirl\",\"Huckleberry\",\"The Senators\",\"Northern Hustle\"]],\"lang\":[\"unknown\"],\"opengraph\":[{\"description\":\"The Third Annual, Wilderness Surrounded, Local Music Festival Wi
 ll Bring Some Of The Best Musical Talent In Arizona To Apache Lake For A Beachside Party For The Ages\",\"type\":\"article\",\"url\":\"http://www.moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\",\"image\":\"http://www.moderntimesmagazine.com/moderntimesimages2013/MT_Images_1310/ALMF_560.jpg\",\"title\":\"Apache Lake Music Festival Ramps Up For Third Try\"}]},\"normalized_url\":[\"http://moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\"],\"retweet_count\":[0],\"title\":[\"Apache Lake Music Festival Ramps Up For Third Try\"],\"url\":[\"http://www.moderntimesmagazine.com/page19/Music_Apache_Lake_131001/Music_Apache_Lake_131001.php\"]},\"salience\":{\"content\":{\"sentiment\":9},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001967485067/picture\",\"id\":\"100001967485067\",\"link\":\"http://www.facebook.com/profile.php?id=100001967485067\",\"name\":\"Felipe Cardoso\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:41:46 +0000\",\"description\":\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\",\"id\":\"100001967485067_516580328417545\",\"link\":\"https://www.youtube.com/watch?v=PoO3yga6Ln8\",\"message\":\"https://www.youtube.com/watch?v=PoO3yga6Ln8\",\"name\":\"Apache song - Tatanka\",\"source\":\"http://www.youtube.com/v/PoO3yga6Ln8?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001967485067/picture\",\"id\":\"100001967485067\",\"link\":\"http://www.facebook.com/profile.php?id=100001967485067\",\"name\":\"Felipe Cardoso\"},\"content\":\"https://www.youtube.com/watch?v=PoO3yga6Ln
 8\",\"created_at\":\"Wed, 02 Oct 2013 23:42:10 +0000\",\"id\":\"1e32bbc32f4da900e0666cecb54a8f3a\",\"link\":\"http://www.facebook.com/100001967485067_516580328417545\",\"received_at\":\"Aԓ+Ԅ,=\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/PoO3yga6Ln8?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache song - Tatanka\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 23:42:08 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\"],\"keywords\":[[\"Apache Song\",\"Indiánská píseň\",\"Indian song\",\"Relax song\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\",\"url\":\"http://www.youtube.com/watch?v=PoO3yga6Ln8\",\"title\":\"Apache so
 ng - Tatanka\",\"image\":\"https://i1.ytimg.com/vi/PoO3yga6Ln8/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"480\",\"description\":\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/PoO3yga6Ln8\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/PoO3yga6Ln8\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=PoO3yga6Ln8\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=PoO3yga6Ln8\",\"title\":\"Apache song - Tatanka\",\"image\":\"https://i1.ytimg.com/vi/PoO3yga6Ln8/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/PoO3yga6Ln8\"}]},\"normalized_url\":[\"https://youtube.com/watch?v=PoO3yga6Ln8\"],\"retweet_count\":[0],\"title\":[\"Apache song - Tatanka - YouTube\"],\"url\":[\"https://www.yout
 ube.com/watch?v=PoO3yga6Ln8\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":1,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001967485067/picture\",\"id\":\"100001967485067\",\"link\":\"http://www.facebook.com/profile.php?id=100001967485067\",\"name\":\"Felipe Cardoso\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:42:44 +0000\",\"description\":\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\",\"id\":\"100001967485067_516580495084195\",\"link\":\"https://www.youtube.com/watch?v=PoO3yga6Ln8\",\"message\":\"Trabalhar então :D \\nhttps://www.youtube.com/watch?v=PoO3yga6Ln8\",\"name\":\"Apache song - Tatanka\",\"source\":\"http://www.youtube.com/v/PoO3yga6Ln8?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001967485067/picture\",\"id\":\"100001967485067\",\"link\":\"http://www.facebook.com/profile.php?id=100001967485067\",\"name\":\"Felipe Cardoso\"},\"content\":\"Trabalhar então :D
  \\nhttps://www.youtube.com/watch?v=PoO3yga6Ln8\",\"created_at\":\"Wed, 02 Oct 2013 23:43:16 +0000\",\"id\":\"1e32bbc5586fa200e06602d8ed5fbfda\",\"link\":\"http://www.facebook.com/100001967485067_516580495084195\",\"received_at\":4743578124263229699,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/PoO3yga6Ln8?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache song - Tatanka\",\"type\":\"facebook\"},\"language\":{\"confidence\":62,\"tag\":\"pt\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 23:42:08 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\"],\"keywords\":[[\"Apache Song\",\"Indiánská píseň\",\"Indian song\",\"Relax song\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\",\"url\":\"http://www.you
 tube.com/watch?v=PoO3yga6Ln8\",\"title\":\"Apache song - Tatanka\",\"image\":\"https://i1.ytimg.com/vi/PoO3yga6Ln8/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"480\",\"description\":\"Apache (Indian) song - Tatanka // Indiánské písně - Tatanka\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/PoO3yga6Ln8\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/PoO3yga6Ln8\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=PoO3yga6Ln8\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=PoO3yga6Ln8\",\"title\":\"Apache song - Tatanka\",\"image\":\"https://i1.ytimg.com/vi/PoO3yga6Ln8/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/PoO3yga6Ln8\"}]},\"normalized_url\":[\"https://youtube.com/watch?v=PoO3yga6Ln8\"],\"retweet_count\":[0],\"title\":[\"Apache son
 g - Tatanka - YouTube\"],\"url\":[\"https://www.youtube.com/watch?v=PoO3yga6Ln8\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"application\":\"Links\",\"author\":{\"avatar\":\"https://graph.facebook.com/100005172182096/picture\",\"id\":\"100005172182096\",\"link\":\"http://www.facebook.com/profile.php?id=100005172182096\",\"name\":\"Melissa Wright\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:44:11 +0000\",\"description\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"id\":\"100005172182096_202896713226067\",\"link\":\"http://www.youtube.com/attribution_link?a=2ITrTNk-GH0pXMd9WQQZkw&u=%2Fwatch%3Fv%3DmYMiEU0vKIM%26feature%3Dshare\",\"message\":\"SOMEONE ANYONE PLEASE RE-SHARE THIS AS I HAVE BLOCKED THESE PEOPLE AND I NEED THEM TO KNOW IM ON TO YOU...............ALL FAKERS... IF YOU HATE A SCAM ARTIST THAT TAKES ADVANTAGE OF CAUSES FOR CHILDREN YOU WILL SHARE THIS POST.........\\n\\nTO THE IMMEDIATE ATTENTION OF THE PERSONS THAT TARGETED MY POST ON ADVOCATING CHILD ABUSE AND NEGLECT AND HUMAN TRAFFICKING AND CL
 IPED THEM WITHOUT RE-SHARING THEM.\\n EVERY SINGEL ONE OF YOU SHOULD BE ASHAMED OF YOUR SELFS FOR CLIPING POST AND PASSING THEM ON AS YOUR WORK AND WORDS IN THE NAME OF ADVOCATING THESE CAUSES. MY SOLE INTENT IN POSTING THE POST WAS TO RAISE AWARENESS TO THESE CAUSES BY RE-SAHRING THEM FOR COMMENTS WHICH IN TURN RAISES AWARENESS TO THE CAUSES THAT I NOT ONLY ADVOCATE FOR BUT EAT SLEEP AND BREATH TO DO SO. \\n\\nWITH THAT BEING SAID I FURTHER WISH FOR YOU ALL TO KNOW I REFUSE TO LET YOU CLIP MY POST TO DESCISE AS YOUR ON “TO PULL ON THE HEART STRING OF OTHERS, IN THE NAME OF YOUR GREED AND ILL GOTTEN INTENT. I HAVE BEEN REMOVING ALL OF MY POST AND HAVE SEVERED TIES WITH YOU THAT HAVE DONE THIS. I HAVE FURTHER LOCKED DOWN THE GROUP SOLDIERS FOR CHILDREN AND YOU HAVE BEEN PERMITLY BANNED BECAUSE OF YOUR SHADY NATUER. \\n I FURTHER WISH FOR YOU TO KNOW IM ON TO YOU “FAKERS THAT GO AROUND PULLING ON THE HEART STRINGS OF THE PUBLIC FOR PERSONAL GAIN AND FAME AND TRUST ME WHEN I TELL Y
 OU THIS: I WILL PUBLICLY EXPOSE YOU FOR WHAT YOU TRULY ARE. THEREFORE, SONG WRITERS AND MEMORIAL BUILDERS BEWARE BECAUSE I KNOW THINGS ABOUT YOU “DONE DIRT CHEEP DEEDS THAT THE WHOLE WORLD WILL WANT TO KNOW ABOUT. SO WHEN PEOPLE QUESTION ME ABOUT WHO YOU ARE I WILL SIMPLY SAY IT CAN BE TOLD ON YOUR OWN TIMELINES TO BE FOUND THAT YOUR WORKS WAS NEVER YOUR OWN. \\n\\n IN CLOSING, I WOULD LIKE TO SAY THAT GOD SEES ALL THINGS AND TRUTH WILL ALWAYS BE SO JUST AS IT IS ALSO TRUE IN THE LAW OF HARVEST IT WILL BE SO WITH ME. THE LAW OF HARVEST……REMEMBER THIS- IF YOU GIVE LITTLE, YOU WILL GET LITTLE. A FARMER WHO PLANTS JUST FEW SEEDS WILL ONLY GET SMALL CROP. BUT A FARMER THAT PLANTS MUCH, HE REEPS MUCH 11CORINTHIANS 9:6\",\"name\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"source\":\"http://www.youtube.com/v/mYMiEU0vKIM?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100005172182096/picture
 \",\"id\":\"100005172182096\",\"link\":\"http://www.facebook.com/profile.php?id=100005172182096\",\"name\":\"Melissa Wright\"},\"content\":\"SOMEONE ANYONE PLEASE RE-SHARE THIS AS I HAVE BLOCKED THESE PEOPLE AND I NEED THEM TO KNOW IM ON TO YOU...............ALL FAKERS... IF YOU HATE A SCAM ARTIST THAT TAKES ADVANTAGE OF CAUSES FOR CHILDREN YOU WILL SHARE THIS POST.........\\n\\nTO THE IMMEDIATE ATTENTION OF THE PERSONS THAT TARGETED MY POST ON ADVOCATING CHILD ABUSE AND NEGLECT AND HUMAN TRAFFICKING AND CLIPED THEM WITHOUT RE-SHARING THEM.\\n EVERY SINGEL ONE OF YOU SHOULD BE ASHAMED OF YOUR SELFS FOR CLIPING POST AND PASSING THEM ON AS YOUR WORK AND WORDS IN THE NAME OF ADVOCATING THESE CAUSES. MY SOLE INTENT IN POSTING THE POST WAS TO RAISE AWARENESS TO THESE CAUSES BY RE-SAHRING THEM FOR COMMENTS WHICH IN TURN RAISES AWARENESS TO THE CAUSES THAT I NOT ONLY ADVOCATE FOR BUT EAT SLEEP AND BREATH TO DO SO. \\n\\nWITH THAT BEING SAID I FURTHER WISH FOR YOU ALL TO KNOW I REFUSE TO LE
 T YOU CLIP MY POST TO DESCISE AS YOUR ON “TO PULL ON THE HEART STRING OF OTHERS, IN THE NAME OF YOUR GREED AND ILL GOTTEN INTENT. I HAVE BEEN REMOVING ALL OF MY POST AND HAVE SEVERED TIES WITH YOU THAT HAVE DONE THIS. I HAVE FURTHER LOCKED DOWN THE GROUP SOLDIERS FOR CHILDREN AND YOU HAVE BEEN PERMITLY BANNED BECAUSE OF YOUR SHADY NATUER. \\n I FURTHER WISH FOR YOU TO KNOW IM ON TO YOU “FAKERS THAT GO AROUND PULLING ON THE HEART STRINGS OF THE PUBLIC FOR PERSONAL GAIN AND FAME AND TRUST ME WHEN I TELL YOU THIS: I WILL PUBLICLY EXPOSE YOU FOR WHAT YOU TRULY ARE. THEREFORE, SONG WRITERS AND MEMORIAL BUILDERS BEWARE BECAUSE I KNOW THINGS ABOUT YOU “DONE DIRT CHEEP DEEDS THAT THE WHOLE WORLD WILL WANT TO KNOW ABOUT. SO WHEN PEOPLE QUESTION ME ABOUT WHO YOU ARE I WILL SIMPLY SAY IT CAN BE TOLD ON YOUR OWN TIMELINES TO BE FOUND THAT YOUR WORKS WAS NEVER YOUR OWN. \\n\\n IN CLOSING, I WOULD LIKE TO SAY THAT GOD SEES ALL THINGS AND TRUTH WILL ALWAYS BE SO JUST AS IT IS ALSO TRUE IN TH
 E LAW OF HARVEST IT WILL BE SO WITH ME. THE LAW OF HARVEST……REMEMBER THIS- IF YOU GIVE LITTLE, YOU WILL GET LITTLE. A FARMER WHO PLANTS JUST FEW SEEDS WILL ONLY GET SMALL CROP. BUT A FARMER THAT PLANTS MUCH, HE REEPS MUCH 11CORINTHIANS 9:6\",\"created_at\":\"Wed, 02 Oct 2013 23:44:29 +0000\",\"id\":\"1e32bbc89621a780e066fff38196ca16\",\"link\":\"http://www.facebook.com/100005172182096_202896713226067\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/mYMiEU0vKIM?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 00:11:00 +0000\"],\"hops\":[[\"http://www.youtube.com/attribution_link?a=2ITrTNk-GH0pXMd9WQQZkw&u=%2Fwatch%3Fv%3DmYMiEU0vKIM%26feature%3Dshare\",\"http://www.youtube.com/watch?v=mYMiEU0vKIM&feature=share\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"conten
 t_type\":[\"text/html\"],\"description\":[\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\"],\"keywords\":[[\"US\",\"Army\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"url\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"title\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"image\":\"http://i1.ytimg.com/vi/mYMiEU0vKIM/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"480\",\"description\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/mYMiEU0vKIM\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/mYMiEU0vKIM\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"id\":\"com.google.android.youtube\"}},\"s
 ite\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=mYMiEU0vKIM\",\"title\":\"US Army Video - Apache Helicopter (ACDC - Thunderstruck)\",\"image\":\"http://i1.ytimg.com/vi/mYMiEU0vKIM/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/mYMiEU0vKIM\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=mYMiEU0vKIM\"],\"retweet_count\":[0],\"title\":[\"US Army Video - Apache Helicopter (ACDC - Thunderstruck) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=mYMiEU0vKIM\"]},\"salience\":{\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"War\",\"score\":0.64078038930893,\"hits\":0},{\"name\":\"Aviation\",\"score\":0.48720294237137,\"hits\":0},{\"name\":\"Video Games\",\"score\":0.45472154021263,\"hits\":0}]}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100003154316845/picture\",\"id\":\"100003154316845\",\"link\":\"http://www.facebook.com/profile.php?id=100003154316845\",\"name\":\"Artur Rodrigues\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:51:50 +0000\",\"description\":\"Enquanto a nossa produção resolve tomar vergonha na cara e colocar o vídeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso vídeo pessoal gravado por...\",\"id\":\"100003154316845_455573131224493\",\"link\":\"http://www.youtube.com/watch?v=jkYw-QuZToI\",\"message\":\"Lembrei de tu Fellipe Moreira ,kkkkk se liga ai tbm Gleydison Ribeiro , massa d+ pivete ,hahahahahahaha\",\"name\":\"BMD - Violeira de Apache\",\"source\":\"http://www.youtube.com/v/jkYw-QuZToI?version=3&autohide=1&autoplay=1\",\"to\":{\"ids\":[\"100000843657444\",\"100000091430993\"],\"names\":[\"Fellipe Moreira\",\"Gleydison Ribeiro\"]},\"type\":\"video\"
 },\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100003154316845/picture\",\"id\":\"100003154316845\",\"link\":\"http://www.facebook.com/profile.php?id=100003154316845\",\"name\":\"Artur Rodrigues\"},\"content\":\"Lembrei de tu Fellipe Moreira ,kkkkk se liga ai tbm Gleydison Ribeiro , massa d+ pivete ,hahahahahahaha\",\"created_at\":\"Wed, 02 Oct 2013 23:52:20 +0000\",\"id\":\"1e32bbd9af7eaf00e0669cbbe5197ab4\",\"link\":\"http://www.facebook.com/100003154316845_455573131224493\",\"mention_ids\":[\"100000843657444\",\"100000091430993\"],\"mentions\":[\"Fellipe Moreira\",\"Gleydison Ribeiro\"],\"received_at\":4743578126547750067,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/jkYw-QuZToI?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"BMD - Violeira de Apache\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"pt\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 20:00:17 +0000\"],\"meta\":{\"chars
 et\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Enquanto a nossa produção resolve tomar vergonha na cara e colocar o vídeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso vídeo pessoal gravado por...\"],\"keywords\":[[\"BMD\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Enquanto a nossa produção resolve tomar vergonha na cara e colocar o vídeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso vídeo pessoal gravado por...\",\"url\":\"http://www.youtube.com/watch?v=jkYw-QuZToI\",\"title\":\"BMD - Violeira de Apache\",\"image\":\"http://i1.ytimg.com/vi/jkYw-QuZToI/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"Enquanto a nossa produção resolve tomar vergonha na cara e colocar o vídeo Oficial BMD [Violeira de Apache] Decidimos colocar nosso vídeo pessoal gravado por...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\
 "YouTube\",\"url\":\"vnd.youtube://watch/jkYw-QuZToI\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/jkYw-QuZToI\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=jkYw-QuZToI\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=jkYw-QuZToI\",\"title\":\"BMD - Violeira de Apache\",\"image\":\"http://i1.ytimg.com/vi/jkYw-QuZToI/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/jkYw-QuZToI\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=jkYw-QuZToI\"],\"retweet_count\":[0],\"title\":[\"BMD - Violeira de Apache - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=jkYw-QuZToI\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Fellipe Moreira\",\"sentiment\":0,\"confident\":1,\"label\":\"Person\",\"evidence\":0,\"type\":\"Person\",\"about\":1},{\"name\":\"Gleydison Ribeiro\",\"sentiment\":0,\"confident\":1,\"label\":\"Person\",
 \"evidence\":0,\"type\":\"Person\",\"about\":1}],\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002994995756/picture\",\"id\":\"100002994995756\",\"link\":\"http://www.facebook.com/profile.php?id=100002994995756\",\"name\":\"Armando Leon\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:52:36 +0000\",\"description\":\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\",\"id\":\"100002994995756_432578163518680\",\"link\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"message\":\"Bellezas Caribeñas!!!\\n\\nhttp://www.youtube.com/watch?v=BKfeBHu4Yco\",\"name\":\"Apache Pónmela en el aire\",\"source\":\"http://www.youtube.com/v/BKfeBHu4Yco?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002994995756/picture\",\"id\":\"100002994995756\",\"link\":\"http://www.fa
 cebook.com/profile.php?id=100002994995756\",\"name\":\"Armando Leon\"},\"content\":\"Bellezas Caribeñas!!!\\n\\nhttp://www.youtube.com/watch?v=BKfeBHu4Yco\",\"created_at\":\"Wed, 02 Oct 2013 23:53:09 +0000\",\"id\":\"1e32bbdb662faa00e0662770f91b1a0e\",\"link\":\"http://www.facebook.com/100002994995756_432578163518680\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/BKfeBHu4Yco?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Pónmela en el aire\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"es\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 18:24:10 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\"],\"keywords\":[[\"apache\",\"apache las minas\",\"rap Latino\",\"hip hip Latino\",\"Latin rap\",\"
 Latin hip hop\",\"rap\",\"Venezuela\",\"hip hop\",\"latino\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\",\"url\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"title\":\"Apache Pónmela en el aire\",\"image\":\"http://i1.ytimg.com/vi/BKfeBHu4Yco/maxresdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"1920\",\"description\":\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\",\"player_height\":\"1080\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/BKfeBHu4Yco\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/BKfeBHu4Yco\",\"id\":\"544007664\"},\"googleplay\":{\"n
 ame\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"title\":\"Apache Pónmela en el aire\",\"image\":\"http://i1.ytimg.com/vi/BKfeBHu4Yco/maxresdefault.jpg\",\"player\":\"https://www.youtube.com/embed/BKfeBHu4Yco\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=BKfeBHu4Yco\"],\"retweet_count\":[0],\"title\":[\"Apache Pónmela en el aire - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=BKfeBHu4Yco\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":6}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002679352328/picture\",\"id\":\"100002679352328\",\"link\":\"http://www.facebook.com/profile.php?id=100002679352328\",\"name\":\"Reinaldo Pinheiro\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:54:57 +0000\",\"description\":\"The Shadows Playing \\\"Apache\\\".\",\"id\":\"100002679352328_476855475747093\",\"link\":\"http://www.youtube.com/watch?v=NoN6AKPGkBo\",\"message\":\"http://www.youtube.com/watch?v=NoN6AKPGkBo\",\"name\":\"THE SHADOWS - Apache (1969)\",\"source\":\"http://www.youtube.com/v/NoN6AKPGkBo?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002679352328/picture\",\"id\":\"100002679352328\",\"link\":\"http://www.facebook.com/profile.php?id=100002679352328\",\"name\":\"Reinaldo Pinheiro\"},\"content\":\"http://www.youtube.com/watch?v=NoN6AKPGkBo\",\"created_at\":
 \"Wed, 02 Oct 2013 23:55:28 +0000\",\"id\":\"1e32bbe0a6ddae80e0661367be4e942e\",\"link\":\"http://www.facebook.com/100002679352328_476855475747093\",\"received_at\":4743578127336446991,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/NoN6AKPGkBo?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"THE SHADOWS - Apache (1969)\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 19:30:15 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"The Shadows Playing \\\"Apache\\\".\"],\"keywords\":[[\"THE\",\"SHADOWS\",\"APACHE\",\"POP\",\"GO\",\"SIXTIES\",\"GREAT\",\"BRITAIN\",\"GERMANY\",\"MUSIC\",\"PROGRAMME\",\"1969\",\"1960s\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"The Shadows Playing \\\"Apache\\\".\",\"url\":\"http://www.youtube.com/watch?v=NoN6AKPGkBo\",\"title\":\"THE SHA
 DOWS - Apache (1969)\",\"image\":\"http://i1.ytimg.com/vi/NoN6AKPGkBo/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"The Shadows Playing \\\"Apache\\\".\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/NoN6AKPGkBo\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/NoN6AKPGkBo\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=NoN6AKPGkBo\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=NoN6AKPGkBo\",\"title\":\"THE SHADOWS - Apache (1969)\",\"image\":\"http://i1.ytimg.com/vi/NoN6AKPGkBo/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/NoN6AKPGkBo\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=NoN6AKPGkBo\"],\"retweet_count\":[0],\"title\":[\"THE SHADOWS - Apache (1969) - YouTube\"],\"url\":[\"http://www.youtube.com/watc
 h?v=NoN6AKPGkBo\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002994995756/picture\",\"id\":\"100002994995756\",\"link\":\"http://www.facebook.com/profile.php?id=100002994995756\",\"name\":\"Armando Leon\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Wed, 02 Oct 2013 23:59:36 +0000\",\"description\":\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\",\"id\":\"100002994995756_432579833518513\",\"link\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"message\":\"DE mis favoritos de Venezuela Rifan machin !!!\\n\\nhttp://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"name\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"source\":\"http://www.youtube.com/v/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002994995756/picture\",\"i
 d\":\"100002994995756\",\"link\":\"http://www.facebook.com/profile.php?id=100002994995756\",\"name\":\"Armando Leon\"},\"content\":\"DE mis favoritos de Venezuela Rifan machin !!!\\n\\nhttp://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"created_at\":\"Wed, 02 Oct 2013 23:59:56 +0000\",\"id\":\"1e32bbeb0b9ea400e06684cf3ac22de0\",\"link\":\"http://www.facebook.com/100002994995756_432579833518513\",\"received_at\":4743578128457765224,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"es\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 19:46:43 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero -
  La del Estribo (Video Offic...\"],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\",\"url\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"title\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"image\":\"http://i1.ytimg.com/vi/5h1KJ4Tf2sM/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/5h1KJ4Tf2sM\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/5h1KJ4Tf2sM\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTu
 be\",\"url\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"title\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"image\":\"http://i1.ytimg.com/vi/5h1KJ4Tf2sM/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/5h1KJ4Tf2sM\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=5h1KJ4Tf2sM\"],\"retweet_count\":[0],\"title\":[\"Apache y Canserbero - La del Estribo (Video Official) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\"]},\"salience\":{\"content\":{\"sentiment\":6},\"title\":{\"sentiment\":-3}}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"facebook\":{\"application\":\"Links\",\"author\":{\"avatar\":\"https://graph.facebook.com/144929815716102/picture\",\"id\":\"144929815716102\",\"link\":\"http://www.facebook.com/profile.php?id=144929815716102\",\"name\":\"Share If You Care\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:04:59 +0000\",\"description\":\"This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...\",\"id\":\"144929815716102_150380198504397\",\"link\":\"http://www.youtube.com/watch?v=25EWUUBjPMo&feature=share&list=TLSvch4ZZmCXJ7vRZW2FrTANv6yPDaZ_QF\",\"message\":\"Old footage, but if you haven't seen it here it will change your perspective. This is what America does in foreign countries. Unfortunately, to the rest for the world, WE ARE NOT THE GOOD GUYS. And this is why...\",\"name\":\"WikiLeaks raw US Apache footage\",\"source\":\"http:/
 /www.youtube.com/v/25EWUUBjPMo?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/144929815716102/picture\",\"id\":\"144929815716102\",\"link\":\"http://www.facebook.com/profile.php?id=144929815716102\",\"name\":\"Share If You Care\"},\"content\":\"Old footage, but if you haven't seen it here it will change your perspective. This is what America does in foreign countries. Unfortunately, to the rest for the world, WE ARE NOT THE GOOD GUYS. And this is why...\",\"created_at\":\"Thu, 03 Oct 2013 00:05:15 +0000\",\"id\":\"1e32bbf713fca780e06655502b85c7be\",\"link\":\"http://www.facebook.com/144929815716102_150380198504397\",\"received_at\":4743578129797546718,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/25EWUUBjPMo?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"WikiLeaks raw US Apache footage\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":
 {\"code\":[200],\"created_at\":[\"Thu, 03 Oct 2013 00:05:13 +0000\"],\"hops\":[[\"http://www.youtube.com/watch?v=25EWUUBjPMo&feature=share&list=TLSvch4ZZmCXJ7vRZW2FrTANv6yPDaZ_QF\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...\"],\"keywords\":[[\"namir nor-elden\",\"saeed chmagh\",\"apache helicopter\",\"wikileaks\",\"us military\",\"baghdad\",\"adults\",\"children\",\"shooting\",\"civilian casualties\",\"murder\",\"rt\",\"russia today\",\"...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...\",\"url\":\"http://www.youtube.com/watch?v=25EWUUBjPMo\",\"title\":\"WikiLeaks raw U
 S Apache footage\",\"image\":\"http://i1.ytimg.com/vi/25EWUUBjPMo/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"This Wikileaks footage shows Reuters journalist Namir Noor-Elden and her driver Saeed Chmagh being shot at by the Apache. The attack occurred in a public squ...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/25EWUUBjPMo\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/25EWUUBjPMo\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=25EWUUBjPMo\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=25EWUUBjPMo\",\"title\":\"WikiLeaks raw US Apache footage\",\"image\":\"http://i1.ytimg.com/vi/25EWUUBjPMo/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/25EWUUBjPMo\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=25EW
 UUBjPMo\"],\"retweet_count\":[0],\"title\":[\"WikiLeaks raw US Apache footage - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=25EWUUBjPMo\"]},\"salience\":{\"content\":{\"sentiment\":-4},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"mostly_male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100005956086899/picture\",\"id\":\"100005956086899\",\"link\":\"http://www.facebook.com/profile.php?id=100005956086899\",\"name\":\"Juan Jose Henandez\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:18:47 +0000\",\"description\":\"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can Año: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...\",\"id\":\"100005956086899_157398494468686\",\"link\":\"http://www.youtube.com/watch?v=QueePm5hO4k\",\"message\":\"http://www.youtube.com/watch?v=QueePm5hO4k\",\"name\":\"Apache Ft. Canserbero - Stop\",\"source\":\"http://www.youtube.com/v/QueePm5hO4k?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100005956086899/picture\",\"id\":\"100005956086899\",\"link\":\"http://www.facebook.com/prof
 ile.php?id=100005956086899\",\"name\":\"Juan Jose Henandez\"},\"content\":\"http://www.youtube.com/watch?v=QueePm5hO4k\",\"created_at\":\"Thu, 03 Oct 2013 00:19:30 +0000\",\"id\":\"1e32bc15ec68ad80e0662011d177021c\",\"link\":\"http://www.facebook.com/100005956086899_157398494468686\",\"received_at\":4743578133383049170,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/QueePm5hO4k?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Ft. Canserbero - Stop\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Thu, 03 Oct 2013 00:19:29 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can Año: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...\"],\"keywords\":[[\"Canserbero - Stop\",\"Apache - Stop\",\"Canserbero 2013\",\"Apa y Can\",\"Apache 
 2013\",\"Apache y canserbero Stop\",\"Stop\",\"Stop canserbero\",\"lo mejor del canserbero\",\"canserbe...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can Año: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...\",\"url\":\"http://www.youtube.com/watch?v=QueePm5hO4k\",\"title\":\"Apache Ft. Canserbero - Stop\",\"image\":\"http://i1.ytimg.com/vi/QueePm5hO4k/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"853\",\"description\":\"Apache Ft. Canserbero - Stop (Con Letra) Disco : Apa y Can Año: 2013 :::::Letra:::::: [Coro] stop stop dice la wiu wiu, alerta... esconde la yerba el mio, pe...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/QueePm5hO4k\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/QueePm5hO4k\",\
 "id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=QueePm5hO4k\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=QueePm5hO4k\",\"title\":\"Apache Ft. Canserbero - Stop\",\"image\":\"http://i1.ytimg.com/vi/QueePm5hO4k/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/QueePm5hO4k\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=QueePm5hO4k\"],\"retweet_count\":[0],\"title\":[\"Apache Ft. Canserbero - Stop - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=QueePm5hO4k\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001444219466/picture\",\"id\":\"100001444219466\",\"link\":\"http://www.facebook.com/profile.php?id=100001444219466\",\"name\":\"Enigmang Bio Hazard\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:25:11 +0000\",\"description\":\"Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can Año: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sueño y sentir que fue ...\",\"id\":\"100001444219466_589069114484557\",\"link\":\"http://www.youtube.com/watch?v=ZAgFOdv4knU\",\"message\":\"http://www.youtube.com/watch?v=ZAgFOdv4knU\",\"name\":\"Apache Ft. Canserbero - Stupid Love Story\",\"source\":\"http://www.youtube.com/v/ZAgFOdv4knU?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001444219466/picture\",\"id\":\"100001444219466\",\"link\":\"http://www.facebook.com/profile.php?id=100001444219466\",\
 "name\":\"Enigmang Bio Hazard\"},\"content\":\"http://www.youtube.com/watch?v=ZAgFOdv4knU\",\"created_at\":\"Thu, 03 Oct 2013 00:25:51 +0000\",\"id\":\"1e32bc243a84ad80e0669d67bed7553a\",\"link\":\"http://www.facebook.com/100001444219466_589069114484557\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/ZAgFOdv4knU?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Ft. Canserbero - Stupid Love Story\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 18:20:51 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can Año: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sueño y sentir que fue ...\"],\"keywords\":[[\"Canserbero - Stupid love story\",\"Apache - Stupid Love Story\",\"Apache 2013\",\"Canserbero 2013\"]],\"lang\":[\"en\"],\"opengraph\
 ":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can Año: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sueño y sentir que fue ...\",\"url\":\"http://www.youtube.com/watch?v=ZAgFOdv4knU\",\"title\":\"Apache Ft. Canserbero - Stupid Love Story\",\"image\":\"http://i1.ytimg.com/vi/ZAgFOdv4knU/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"853\",\"description\":\"Apache Ft. Canserbero - Stupid Love Story (Con Letra) Disco : Apa y Can Año: 2013 :::::Letras::::: Detesto cuando pasa esto, tener un sueño y sentir que fue ...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/ZAgFOdv4knU\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/ZAgFOdv4knU\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=ZAgFOdv4knU\",\"id\":\"com.
 google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=ZAgFOdv4knU\",\"title\":\"Apache Ft. Canserbero - Stupid Love Story\",\"image\":\"http://i1.ytimg.com/vi/ZAgFOdv4knU/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/ZAgFOdv4knU\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=ZAgFOdv4knU\"],\"retweet_count\":[0],\"title\":[\"Apache Ft. Canserbero - Stupid Love Story - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=ZAgFOdv4knU\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001611980796/picture\",\"id\":\"100001611980796\",\"link\":\"http://www.facebook.com/profile.php?id=100001611980796\",\"name\":\"Royer Grefa\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:29:14 +0000\",\"description\":\"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del álbum: APA Y CAN\",\"id\":\"100001611980796_591199984277062\",\"link\":\"http://www.youtube.com/watch?v=0BBOde0Rl1I\",\"message\":\"Apa Y Can\\n\\nhttp://www.youtube.com/watch?v=0BBOde0Rl1I\",\"name\":\"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p\",\"source\":\"http://www.youtube.com/v/0BBOde0Rl1I?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001611980796/picture\",\"id\":\"100001611980796\",\"link\":\"http://www.facebook.com/profile.php?id=100001611980796\",\"name\":\"Royer Grefa\"},\"content\":\"Apa Y Can\\n\\nhttp://www.youtub
 e.com/watch?v=0BBOde0Rl1I\",\"created_at\":\"Thu, 03 Oct 2013 00:29:48 +0000\",\"id\":\"1e32bc2d47f2a900e066d78603ba84c8\",\"link\":\"http://www.facebook.com/100001611980796_591199984277062\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/0BBOde0Rl1I?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Thu, 03 Oct 2013 00:29:54 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del álbum: APA Y CAN\"],\"keywords\":[[\"STUPID LOVE STORY\",\"APACHE\",\"CANSERBERO\",\"APACHE Y CANSERBERO\",\"LETRA\",\"HD\",\"Lyrics\",\"Full\",\"Story\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del álbu
 m: APA Y CAN\",\"url\":\"http://www.youtube.com/watch?v=0BBOde0Rl1I\",\"title\":\"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p\",\"image\":\"http://i1.ytimg.com/vi/0BBOde0Rl1I/maxresdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"1440\",\"description\":\"STUPID LOVE STORY - APACHE Y CANSERBERO extraido del álbum: APA Y CAN\",\"player_height\":\"1080\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/0BBOde0Rl1I\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/0BBOde0Rl1I\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=0BBOde0Rl1I\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=0BBOde0Rl1I\",\"title\":\"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p\",\"image\":\"http://i1.ytimg.com/vi/0BBOde0Rl1I/maxresdefault.jpg\",\"player\":\"https://www.youtube.com/embed/0BBOd
 e0Rl1I\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=0BBOde0Rl1I\"],\"retweet_count\":[0],\"title\":[\"STUPID LOVE STORY - APACHE Y CANSERBERO ( LETRA ) 1080p - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=0BBOde0Rl1I\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":-4}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002033189713/picture\",\"id\":\"100002033189713\",\"link\":\"http://www.facebook.com/profile.php?id=100002033189713\",\"name\":\"Jesus Ibarra Pino\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:32:28 +0000\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"id\":\"100002033189713_536153523129082\",\"link\":\"https://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"message\":\"https://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"name\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"source\":\"http://www.youtube.com/v/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002033189713/picture\",\"id\":\"100002033189713\",\"link\":\"http://www.facebook.com/p
 rofile.php?id=100002033189713\",\"name\":\"Jesus Ibarra Pino\"},\"content\":\"https://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"created_at\":\"Thu, 03 Oct 2013 00:32:52 +0000\",\"id\":\"1e32bc348213a600e06698e907c33c3a\",\"link\":\"http://www.facebook.com/100002033189713_536153523129082\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Thu, 03 Oct 2013 00:32:50 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\"],\"keywords\":[[\"Canserbero - Uno por ellas\",\"Apache - uno por ellas\",\"Apache 2013\",\"Canserbero 2013\",\"lo mejor de
  canserbero\",\"Stop Canserbero\",\"Agradezco Canserbero\",\"rap 2013 ven...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"image\":\"https://i1.ytimg.com/vi/fI9Y-nH5yIw/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"853\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fI9Y-nH5yIw\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fI9Y-nH5yIw\",\"id\":\"544007664\"}
 ,\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"image\":\"https://i1.ytimg.com/vi/fI9Y-nH5yIw/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/fI9Y-nH5yIw\"}]},\"normalized_url\":[\"https://youtube.com/watch?v=fI9Y-nH5yIw\"],\"retweet_count\":[0],\"title\":[\"Apache Ft. Canserbero - Uno Por Ellas - YouTube\"],\"url\":[\"https://www.youtube.com/watch?v=fI9Y-nH5yIw\"]},\"salience\":{\"title\":{\"sentiment\":0}}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001611980796/picture\",\"id\":\"100001611980796\",\"link\":\"http://www.facebook.com/profile.php?id=100001611980796\",\"name\":\"Royer Grefa\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:34:21 +0000\",\"description\":\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\",\"id\":\"100001611980796_591201640943563\",\"link\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"message\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"name\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"source\":\"http://www.youtube.com/v/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001611980796/picture\",\"id\":\"100001611980796\",\"link\":\"http://www.facebook.com/profile.php?id=100001611980796\"
 ,\"name\":\"Royer Grefa\"},\"content\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"created_at\":\"Thu, 03 Oct 2013 00:34:50 +0000\",\"id\":\"1e32bc38b7baa480e066dfcb884577a8\",\"link\":\"http://www.facebook.com/100001611980796_591201640943563\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/5h1KJ4Tf2sM?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 19:46:43 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\"],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache y Canserbero - La del Estribo (Video Offi
 cial) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\",\"url\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"title\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"image\":\"http://i1.ytimg.com/vi/5h1KJ4Tf2sM/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Official) Apache y Canserbero - La del Estribo (Video Offic...\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/5h1KJ4Tf2sM\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/5h1KJ4Tf2sM\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\",\"t
 itle\":\"Apache y Canserbero - La del Estribo (Video Official)\",\"image\":\"http://i1.ytimg.com/vi/5h1KJ4Tf2sM/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/5h1KJ4Tf2sM\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=5h1KJ4Tf2sM\"],\"retweet_count\":[0],\"title\":[\"Apache y Canserbero - La del Estribo (Video Official) - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=5h1KJ4Tf2sM\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":1,\"type\":\"Company\",\"about\":1}],\"sentiment\":0,\"topics\":[{\"name\":\"Video Games\",\"score\":0.49648976325989,\"hits\":0}]}}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/149835201830545/picture\",\"id\":\"149835201830545\",\"link\":\"http://www.facebook.com/profile.php?id=149835201830545\",\"name\":\"EH. Enyerbeth Hernández\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:39:01 +0000\",\"description\":\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\",\"id\":\"149835201830545_248071985340199\",\"link\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"message\":\"La Track del Día. #Apache\\n\\nListen to it!! >>>\",\"name\":\"Apache Pónmela en el aire\",\"source\":\"http://www.youtube.com/v/BKfeBHu4Yco?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/149835201830545/picture\",\"id\":\"149835201830545\",\"link\":\"http://www.facebook
 .com/profile.php?id=149835201830545\",\"name\":\"EH. Enyerbeth Hernández\"},\"content\":\"La Track del Día. #Apache\\n\\nListen to it!! >>>\",\"created_at\":\"Thu, 03 Oct 2013 00:39:27 +0000\",\"hashtags\":[\"#Apache\"],\"id\":\"1e32bc432604a080e066aa71ea3dba02\",\"link\":\"http://www.facebook.com/149835201830545_248071985340199\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/BKfeBHu4Yco?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Pónmela en el aire\",\"type\":\"facebook\"},\"language\":{\"confidence\":63,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 18:24:10 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\"],\"keywords\":[[\"apache\",\"apache las minas\",\"rap Latino\",\"hip hip Latino\",\"La
 tin rap\",\"Latin hip hop\",\"rap\",\"Venezuela\",\"hip hop\",\"latino\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\",\"url\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"title\":\"Apache Pónmela en el aire\",\"image\":\"http://i1.ytimg.com/vi/BKfeBHu4Yco/maxresdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"1920\",\"description\":\"Producción General: Flow Gallery & Rap latino progress Talento: María Claudia Talento: Laura Talento: María Isabel Talento:Pierina Talento: Arianna Talento: ...\",\"player_height\":\"1080\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/BKfeBHu4Yco\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/BKfeBHu4Yco\",\"id\":\"544007664\"},\"googl
 eplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=BKfeBHu4Yco\",\"title\":\"Apache Pónmela en el aire\",\"image\":\"http://i1.ytimg.com/vi/BKfeBHu4Yco/maxresdefault.jpg\",\"player\":\"https://www.youtube.com/embed/BKfeBHu4Yco\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=BKfeBHu4Yco\"],\"retweet_count\":[0],\"title\":[\"Apache Pónmela en el aire - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=BKfeBHu4Yco\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"facebook\":{\"application\":\"Share_bookmarklet\",\"author\":{\"avatar\":\"https://graph.facebook.com/100001288606187/picture\",\"id\":\"100001288606187\",\"link\":\"http://www.facebook.com/profile.php?id=100001288606187\",\"name\":\"Willian Román Castillo\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 00:47:38 +0000\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"id\":\"100001288606187_639059829480298\",\"link\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw&sns=fb\",\"message\":\"para las chiks..\",\"name\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"source\":\"http://www.youtube.com/v/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001288606187/picture\",\"id\":\"100001288606187\",\"link\":\"
 http://www.facebook.com/profile.php?id=100001288606187\",\"name\":\"Willian Román Castillo\"},\"content\":\"para las chiks..\",\"created_at\":\"Thu, 03 Oct 2013 00:48:10 +0000\",\"id\":\"1e32bc566883a100e06607df280bf16c\",\"link\":\"http://www.facebook.com/100001288606187_639059829480298\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/fI9Y-nH5yIw?autohide=1&version=3&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"type\":\"facebook\"},\"language\":{\"confidence\":64,\"tag\":\"et\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 19:39:13 +0000\"],\"hops\":[[\"http://www.youtube.com/watch?v=fI9Y-nH5yIw&sns=fb\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\"],\"keywords\":[[\"Canserbero - Uno por ellas\",\"Apac
 he - uno por ellas\",\"Apache 2013\",\"Canserbero 2013\",\"lo mejor de canserbero\",\"Stop Canserbero\",\"Agradezco Canserbero\",\"rap 2013 ven...\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"image\":\"http://i1.ytimg.com/vi/fI9Y-nH5yIw/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"853\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fI9Y-nH5yIw\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTub
 e\",\"url\":\"vnd.youtube://watch/fI9Y-nH5yIw\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"image\":\"http://i1.ytimg.com/vi/fI9Y-nH5yIw/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/fI9Y-nH5yIw\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=fI9Y-nH5yIw\"],\"retweet_count\":[0],\"title\":[\"Apache Ft. Canserbero - Uno Por Ellas - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\"]}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000529773118/picture\",\"id\":\"100000529773118\",\"link\":\"http://www.facebook.com/profile.php?id=100000529773118\",\"name\":\"Ghatholl Perkasa\"},\"caption\":\"jakartagreater.com\",\"created_at\":\"Thu, 03 Oct 2013 00:48:32 +0000\",\"description\":\"Pangdam VI Mulawarman menjelaskan, tahun 2014 mendapatkan dukungan 2 unit tank Leopard-2, serta 2 unit Helikopter Apache, menemani Helikopter Bell 412 EP\",\"id\":\"100000529773118_709380572422929\",\"link\":\"http://jakartagreater.com/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan/\",\"message\":\"http://jakartagreater.com/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan/\",\"name\":\"Helikopter Apache dan Tank Leopard Temani Bell 412 EP di Kalimantan | JakartaGreater\",\"source\":\"web\",\"type\":\"link\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100000529773118/picture\",\"id\":\"100000529773118
 \",\"link\":\"http://www.facebook.com/profile.php?id=100000529773118\",\"name\":\"Ghatholl Perkasa\"},\"content\":\"http://jakartagreater.com/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan/\",\"created_at\":\"Thu, 03 Oct 2013 00:49:02 +0000\",\"id\":\"1e32bc586b7fa000e066c7349fcb4420\",\"link\":\"http://www.facebook.com/100000529773118_709380572422929\",\"schema\":{\"version\":3},\"source\":\"web\",\"subtype\":\"link\",\"title\":\"Helikopter Apache dan Tank Leopard Temani Bell 412 EP di Kalimantan | JakartaGreater\",\"type\":\"facebook\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 14:42:46 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Pangdam VI Mulawarman menjelaskan, tahun 2014 mendapatkan dukungan 2 unit tank Leopard-2, serta 2 unit Helikopter Apache, menemani Helikopter Bell 412 EP\"],\"keywords\":[[\"Helikopter Apache Kalimantan\"]],\"lang\":[\"en-us\"]},\"normalized_url\":[\"http://jakartag
 reater.com/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan\"],\"retweet_count\":[0],\"title\":[\"Helikopter Apache dan Tank Leopard Temani Bell 412 EP di Kalimantan | JakartaGreater\"],\"url\":[\"http://jakartagreater.com/helikopter-apache-dan-tank-leopard-temani-bell-412-ep-di-kalimantan/\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/y_4c0uy7ikisinxqjnquva\",\"name\":\"y_4c0uy7ikisinxqjnquva\"},\"content\":\"comenten y subo otros.\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 01:54:22 +0000\",\"id\":\"1e32bc7c8499aa80e0612c55f4551676\",\"link\":\"http://www.youtube.com/watch?v=Yj6ckGTNJ7M\",\"schema\":{\"version\":3},\"title\":\"FA! Fuerte Apache NO TE CONFUNDAS 2013] DEMO\",\"type\":\"youtube\"},\"language\":{\"confidence\":62,\"tag\":\"es\"},\"salience\":{\"content\":{\"sentiment\":7},\"title\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/y_4c0uy7ikisinxqjnquva\",\"name\":\"y_4c0uy7ikisinxqjnquva\"},\"category\":\"People &#38; Blogs\",\"content\":\"comenten y subo otros.\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 01:04:41 +0000\",\"duration\":\"219\",\"id\":\"1e32bc7c8499aa80e0612c55f4551676\",\"title\":\"FA! Fuerte Apache NO TE CONFUNDAS 2013] DEMO\",\"type\":\"video\",\"videolink\":\"htt
 p://www.youtube.com/watch?v=Yj6ckGTNJ7M\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/thercelement\",\"name\":\"thercelement\"},\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 18:57:23 +0000\",\"id\":\"1e32bc845750af80e061657d25bd1b16\",\"link\":\"http://www.youtube.com/watch?v=wMthG7WdQtI\",\"schema\":{\"version\":3},\"title\":\"HPI Apache C1 Flux Update - Smoked ESC\",\"type\":\"youtube\"},\"salience\":{\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"Economics\",\"score\":0.46346464753151,\"hits\":0}]}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/thercelement\",\"name\":\"thercelement\"},\"category\":\"entertainment\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 01:08:11 +0000\",\"duration\":\"251\",\"id\":\"1e32bc845750af80e061657d25bd1b16\",\"title\":\"HPI Apache C1 Flux Update - Smoked ESC\",\"type\":\"video\",\"videolink\":\"http://www.youtube.com/watch?v=wMthG7WdQtI\"}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100005863352468/picture\",\"id\":\"100005863352468\",\"link\":\"http://www.facebook.com/profile.php?id=100005863352468\",\"name\":\"Rolocris Tonato Veloz\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 01:20:53 +0000\",\"description\":\"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran\",\"id\":\"100005863352468_166572870214824\",\"link\":\"http://www.youtube.com/watch?v=7n0vyad0Mlk\",\"message\":\"http://www.youtube.com/watch?v=7n0vyad0Mlk\",\"name\":\"f a fuerte apache queridos amigos video oficial\",\"source\":\"http://www.youtube.com/v/7n0vyad0Mlk?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100005863352468/picture\",\"id\":\"100005863352468\",\"link\":\"http://www.facebook.com/profile.php?id=100005863352468\",\"name\":\"Rolocris
  Tonato Veloz\"},\"content\":\"http://www.youtube.com/watch?v=7n0vyad0Mlk\",\"created_at\":\"Thu, 03 Oct 2013 01:21:14 +0000\",\"id\":\"1e32bca0ba50a880e066e164e0b75830\",\"link\":\"http://www.facebook.com/100005863352468_166572870214824\",\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/7n0vyad0Mlk?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"f a fuerte apache queridos amigos video oficial\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"en\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 22:23:15 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran\"],\"keywords\":[[\"fuerte\",\"apache\",\"argentina\",\"barrios\",\"bajos\",\"muerte\",\"tevez\",\"amigos\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\"
 ,\"description\":\"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran\",\"url\":\"http://www.youtube.com/watch?v=7n0vyad0Mlk\",\"title\":\"f a fuerte apache queridos amigos video oficial\",\"image\":\"http://i1.ytimg.com/vi/7n0vyad0Mlk/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"480\",\"description\":\"del barrio mas pobre y marginal nace esta cancion dedicado a los amigos que no estan ya en este mundo pero en la gloria ya se encuentran\",\"player_height\":\"360\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/7n0vyad0Mlk\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/7n0vyad0Mlk\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=7n0vyad0Mlk\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=7n0v
 yad0Mlk\",\"title\":\"f a fuerte apache queridos amigos video oficial\",\"image\":\"http://i1.ytimg.com/vi/7n0vyad0Mlk/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/7n0vyad0Mlk\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=7n0vyad0Mlk\"],\"retweet_count\":[0],\"title\":[\"f a fuerte apache queridos amigos video oficial - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=7n0vyad0Mlk\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0,\"topics\":[{\"name\":\"Video Games\",\"score\":0.51537579298019,\"hits\":0}]}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/2fz96yvwuf7mhxsxcwqdkw\",\"name\":\"2fz96yvwuf7mhxsxcwqdkw\"},\"content\":\"This Article Austin Apache is composed of Creative Common Content. The Original Article can be location at WikiPedia.org. ref length width platform layout FF...\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 05:18:21 +0000\",\"id\":\"1e32bca152e7a080e061b93f1aebbc1e\",\"link\":\"http://www.youtube.com/watch?v=8tnaFTMm05w\",\"schema\":{\"version\":3},\"title\":\"Austin Apache\",\"type\":\"youtube\"},\"salience\":{\"content\":{\"sentiment\":4},\"title\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/2fz96yvwuf7mhxsxcwqdkw\",\"name\":\"2fz96yvwuf7mhxsxcwqdkw\"},\"category\":\"education\",\"content\":\"This Article Austin Apache is composed of Creative Common Content. The Original Article can be location at WikiPedia.org. ref length width platform layout FF...\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 
 Oct 2013 01:21:09 +0000\",\"duration\":\"39\",\"id\":\"1e32bca152e7a080e061b93f1aebbc1e\",\"title\":\"Austin Apache\",\"type\":\"video\",\"videolink\":\"http://www.youtube.com/watch?v=8tnaFTMm05w\"}}"
-"{\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002670373913/picture\",\"id\":\"100002670373913\",\"link\":\"http://www.facebook.com/profile.php?id=100002670373913\",\"name\":\"Jhonatan ZoUnd\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 01:23:46 +0000\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"id\":\"100002670373913_476818342417174\",\"link\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"message\":\"<3 Oh baby listen now\",\"name\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"source\":\"http://www.youtube.com/v/fI9Y-nH5yIw?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100002670373913/picture\",\"id\":\"100002670373913\",\"link\":\"http://www.facebook.com/profile.php?id=100002670373913\",\"name\":\"Jhonatan ZoUnd\"},\"c
 ontent\":\"<3 Oh baby listen now\",\"created_at\":\"Thu, 03 Oct 2013 01:24:08 +0000\",\"id\":\"1e32bca72c2bad00e0669ad95907cc90\",\"link\":\"http://www.facebook.com/100002670373913_476818342417174\",\"received_at\":4743578149649965593,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/fI9Y-nH5yIw?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"type\":\"facebook\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 19:39:13 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\"],\"keywords\":[[\"Canserbero - Uno por ellas\",\"Apache - uno por ellas\",\"Apache 2013\",\"Canserbero 2013\",\"lo mejor de canserbero\",\"Stop Canserbero\",\"Agradezco Canserbero\",\"rap 2013 ven...\"]],\"lang\":[\"en\"],\"o
 pengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"image\":\"http://i1.ytimg.com/vi/fI9Y-nH5yIw/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"853\",\"description\":\"Apache Ft. Canserbero - Uno Por Ellas (Con Letra ) Disco : Apa y Can Año: 2013 :::::::::::Letras:::::::::::::::::::::: Y es que se acostumbran a salir con tr...\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fI9Y-nH5yIw\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/fI9Y-nH5yIw\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"id\":\"c
 om.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\",\"title\":\"Apache Ft. Canserbero - Uno Por Ellas\",\"image\":\"http://i1.ytimg.com/vi/fI9Y-nH5yIw/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/fI9Y-nH5yIw\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=fI9Y-nH5yIw\"],\"retweet_count\":[0],\"title\":[\"Apache Ft. Canserbero - Uno Por Ellas - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=fI9Y-nH5yIw\"]},\"salience\":{\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/RedSoftVideos\",\"name\":\"RedSoftVideos\"},\"content\":\"Пошаговые инструкции для новичков. Делаем из старого компа домашний web сервер на основе Centos 6.4. В этой серии устанавливаем web сервер Apache, PHP для ди...\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 15:03:35 +0000\",\"id\":\"1e32bcb1ad88a600e0610e0f18ad029a\",\"link\":\"http://www.youtube.com/watch?v=xlLGlVcw7qQ\",\"schema\":{\"version\":3},\"title\":\"[iMike.ru] - установка LAMP web сервера видеоинструкция. Урок 2. Apache, PHP, MySQL, Wordpress.\",\"type\":\"youtube\"},\"language\":{\"confidence\":88,\"tag\":\"ru\"},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/RedSoftVideos\",\"name\":\"RedSoftVideos\"},\"category\":\"education\",\"content\":\"Пошаговые инструкции для но
 вичков. Делаем из старого компа домашний web сервер на основе Centos 6.4. В этой серии устанавливаем web сервер Apache, PHP для ди...\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Oct 2013 01:28:28 +0000\",\"duration\":\"3147\",\"id\":\"1e32bcb1ad88a600e0610e0f18ad029a\",\"title\":\"[iMike.ru] - установка LAMP web сервера видеоинструкция. Урок 2. Apache, PHP, MySQL, Wordpress.\",\"type\":\"video\",\"videolink\":\"http://www.youtube.com/watch?v=xlLGlVcw7qQ\"}}"
-"{\"demographic\":{\"gender\":\"female\"},\"facebook\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001626092766/picture\",\"id\":\"100001626092766\",\"link\":\"http://www.facebook.com/profile.php?id=100001626092766\",\"name\":\"Fernanda Beltràn\"},\"caption\":\"www.youtube.com\",\"created_at\":\"Thu, 03 Oct 2013 01:31:05 +0000\",\"description\":\"Nuevo album 2013\",\"id\":\"100001626092766_593084220755776\",\"link\":\"http://www.youtube.com/watch?v=cDALFX6lQX8#_=\",\"message\":\"te veías igual de ¡AHH! por supuesto, juro haber sentido el olor de tu cabello en mi pecho ..  y de hecho el cigarro en tu recuerdo amargo, es todo lo que dejo y regresas sin embargo ♫ uf.\",\"name\":\"Cancerbero y Apache - Stupid love story\",\"source\":\"http://www.youtube.com/v/cDALFX6lQX8?version=3&autohide=1&autoplay=1\",\"type\":\"video\"},\"interaction\":{\"author\":{\"avatar\":\"https://graph.facebook.com/100001626092766/picture\",\"id\":\"100001626092766\",\"link\":\"http://www.face
 book.com/profile.php?id=100001626092766\",\"name\":\"Fernanda Beltràn\"},\"content\":\"te veías igual de ¡AHH! por supuesto, juro haber sentido el olor de tu cabello en mi pecho ..  y de hecho el cigarro en tu recuerdo amargo, es todo lo que dejo y regresas sin embargo ♫ uf.\",\"created_at\":\"Thu, 03 Oct 2013 01:31:38 +0000\",\"id\":\"1e32bcb786cda280e0664a7d4c566eec\",\"link\":\"http://www.facebook.com/100001626092766_593084220755776\",\"received_at\":4743578151536100481,\"schema\":{\"version\":3},\"source\":\"http://www.youtube.com/v/cDALFX6lQX8?version=3&autohide=1&autoplay=1\",\"subtype\":\"video\",\"title\":\"Cancerbero y Apache - Stupid love story\",\"type\":\"facebook\"},\"language\":{\"confidence\":100,\"tag\":\"es\"},\"links\":{\"code\":[200],\"created_at\":[\"Wed, 02 Oct 2013 17:54:38 +0000\"],\"hops\":[[\"http://www.youtube.com/watch?v=cDALFX6lQX8#_=\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Nuevo album 2013\"],\"keywo
 rds\":[[\"cancerbero\",\"apache\",\"2013\",\"sptupid love story\"]],\"lang\":[\"en\"],\"opengraph\":[{\"site_name\":\"YouTube\",\"type\":\"video\",\"description\":\"Nuevo album 2013\",\"url\":\"http://www.youtube.com/watch?v=cDALFX6lQX8\",\"title\":\"Cancerbero y Apache - Stupid love story\",\"image\":\"http://i1.ytimg.com/vi/cDALFX6lQX8/hqdefault.jpg?feature=og\"}],\"twitter\":[{\"player_width\":\"640\",\"description\":\"Nuevo album 2013\",\"player_height\":\"480\",\"card\":\"player\",\"app\":{\"iphone\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/cDALFX6lQX8\",\"id\":\"544007664\"},\"ipad\":{\"name\":\"YouTube\",\"url\":\"vnd.youtube://watch/cDALFX6lQX8\",\"id\":\"544007664\"},\"googleplay\":{\"name\":\"YouTube\",\"url\":\"http://www.youtube.com/watch?v=cDALFX6lQX8\",\"id\":\"com.google.android.youtube\"}},\"site\":\"@youtube\",\"url\":\"http://www.youtube.com/watch?v=cDALFX6lQX8\",\"title\":\"Cancerbero y Apache - Stupid love story\",\"image\":\"http://i1.ytimg.com/vi/cDA
 LFX6lQX8/hqdefault.jpg\",\"player\":\"https://www.youtube.com/embed/cDALFX6lQX8\"}]},\"normalized_url\":[\"http://youtube.com/watch?v=cDALFX6lQX8\"],\"retweet_count\":[0],\"title\":[\"Cancerbero y Apache - Stupid love story - YouTube\"],\"url\":[\"http://www.youtube.com/watch?v=cDALFX6lQX8\"]},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
-"{\"interaction\":{\"author

<TRUNCATED>

[31/45] git commit: Merged in apache master

Posted by mf...@apache.org.
Merged in apache master


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/4d93cbe8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/4d93cbe8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/4d93cbe8

Branch: refs/heads/master
Commit: 4d93cbe8d974bce186180705bf573511a7964bc2
Parents: 782fee4 73ca1e0
Author: rebanks <re...@w2odigital.com>
Authored: Fri Jun 20 13:16:04 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Fri Jun 20 13:16:04 2014 -0500

----------------------------------------------------------------------
 .../org/apache/streams/s3/S3PersistReader.java  |  9 ++++-
 .../streams/console/ConsolePersistReader.java   | 23 ++++++++++++
 .../streams/console/ConsolePersistWriter.java   | 18 ++++++++++
 .../elasticsearch/ElasticsearchClient.java      | 20 ++++++++++-
 .../ElasticsearchClientManager.java             | 18 ++++++++++
 .../ElasticsearchConfigurator.java              | 18 ++++++++++
 .../ElasticsearchPersistReader.java             | 26 +++++++++++++-
 .../ElasticsearchPersistUpdater.java            | 18 ++++++++++
 .../ElasticsearchPersistWriter.java             |  1 +
 .../ElasticsearchPersistWriterTask.java         | 18 ++++++++++
 .../elasticsearch/ElasticsearchQuery.java       | 20 ++++++++++-
 .../elasticsearch/PercolateProcessor.java       | 20 ++++++++++-
 .../apache/streams/hbase/HbaseConfigurator.java | 18 ++++++++++
 .../streams/hbase/HbasePersistWriter.java       | 18 ++++++++++
 .../streams/hbase/HbasePersistWriterTask.java   | 18 ++++++++++
 .../apache/streams/hdfs/HdfsConfigurator.java   | 18 ++++++++++
 .../streams/hdfs/WebHdfsPersistReader.java      | 27 +++++++++++++-
 .../streams/hdfs/WebHdfsPersistReaderTask.java  | 18 ++++++++++
 .../streams/hdfs/WebHdfsPersistWriter.java      | 26 +++++++++++---
 .../streams/hdfs/WebHdfsPersistWriterTask.java  | 18 ++++++++++
 .../apache/streams/kafka/KafkaConfigurator.java | 18 ++++++++++
 .../streams/kafka/KafkaPersistReader.java       | 23 ++++++++++++
 .../streams/kafka/KafkaPersistReaderTask.java   | 18 ++++++++++
 .../streams/kafka/KafkaPersistWriter.java       | 18 ++++++++++
 .../streams/kafka/KafkaPersistWriterTask.java   | 18 ++++++++++
 .../streams/kafka/StreamsPartitioner.java       | 18 ++++++++++
 .../apache/streams/mongo/MongoConfigurator.java | 18 ++++++++++
 .../streams/mongo/MongoPersistWriter.java       | 18 ++++++++++
 .../apache/streams/json/JsonPathExtractor.java  |  5 ++-
 .../org/apache/streams/urls/LinkResolver.java   |  3 +-
 .../urls/LinkResolverHelperFunctions.java       |  1 +
 .../streams/urls/LinkResolverProcessor.java     |  3 +-
 .../streams/urls/LinkHelperFunctionsTest.java   | 18 ++++++++++
 .../streams/urls/TestLinkUnwinderProcessor.java | 18 ++++++++++
 .../datasift/provider/DatasiftConverter.java    |  1 +
 .../provider/DatasiftStreamProvider.java        |  5 +++
 .../com/datasift/test/DatasiftSerDeTest.java    | 18 ++++++++++
 .../provider/DatasiftStreamProviderTest.java    | 18 ++++++++++
 .../DatasiftTypeConverterProcessorTest.java     | 20 ++++++++++-
 .../datasift/provider/ErrorHandlerTest.java     | 18 ++++++++++
 .../datasift/provider/SubscriptionTest.java     | 18 ++++++++++
 ...FacebookPublicFeedXmlActivitySerializer.java | 18 ++++++++++
 .../FacebookPostActivitySerializerTest.java     |  1 +
 .../facebook/test/FacebookPostSerDeTest.java    | 18 ++++++++++
 .../facebook/test/FacebookEDCSerDeTest.java     | 18 ++++++++++
 .../gnip/flickr/test/FlickrEDCSerDeTest.java    | 18 ++++++++++
 .../com/gplus/api/GPlusActivitySerializer.java  | 18 ++++++++++
 .../com/gplus/api/GPlusEDCAsActivityTest.java   | 18 ++++++++++
 .../com/instagram/test/InstagramSerDeTest.java  | 18 ++++++++++
 .../reddit/api/RedditActivitySerializer.java    | 18 ++++++++++
 .../reddit/api/RedditEDCAsActivityJSONTest.java | 18 ++++++++++
 .../java/com/gnip/test/YouTubeEDCSerDeTest.java | 20 ++++++++++-
 .../com/gnip/test/YoutubeEDCAsActivityTest.java |  2 +-
 .../ActivityXMLActivitySerializer.java          | 18 ++++++++++
 .../PowerTrackActivitySerializer.java           | 18 ++++++++++
 .../test/PowerTrackDeserializationTest.java     | 18 ++++++++++
 .../com/google/gmail/GMailConfigurator.java     | 18 ++++++++++
 .../gmail/provider/GMailImapProviderTask.java   | 18 ++++++++++
 .../GMailMessageActivitySerializer.java         | 18 ++++++++++
 .../google/gmail/provider/GMailProvider.java    | 26 +++++++++++++-
 .../gmail/provider/GMailRssProviderTask.java    | 18 ++++++++++
 .../gplus/provider/GPlusActivitySerializer.java | 18 ++++++++++
 .../gplus/provider/GPlusConfigurator.java       | 18 ++++++++++
 .../gplus/provider/GPlusEventProcessor.java     | 18 ++++++++++
 .../provider/GPlusHistoryProviderTask.java      | 18 ++++++++++
 .../google/gplus/provider/GPlusProvider.java    | 23 ++++++++++++
 .../gmail/test/GMailMessageSerDeTest.java       | 18 ++++++++++
 .../data/MoreoverJsonActivitySerializer.java    | 18 ++++++++++
 .../data/MoreoverXmlActivitySerializer.java     | 18 ++++++++++
 .../streams/data/moreover/MoreoverClient.java   | 18 ++++++++++
 .../data/moreover/MoreoverConfigurator.java     | 18 ++++++++++
 .../streams/data/moreover/MoreoverProvider.java | 23 ++++++++++++
 .../data/moreover/MoreoverProviderTask.java     | 18 ++++++++++
 .../streams/data/moreover/MoreoverResult.java   | 18 ++++++++++
 .../data/moreover/MoreoverResultSetWrapper.java | 18 ++++++++++
 .../apache/streams/data/util/MoreoverUtils.java | 18 ++++++++++
 .../MoreoverJsonActivitySerializerTest.java     |  1 +
 .../data/MoreoverXmlActivitySerializerTest.java | 18 ++++++++++
 .../rss/provider/RssEventClassifier.java        | 18 ++++++++++
 .../streams/rss/provider/RssEventProcessor.java | 18 ++++++++++
 .../rss/provider/RssStreamConfigurator.java     | 18 ++++++++++
 .../streams/rss/provider/RssStreamProvider.java | 24 +++++++++++++
 .../rss/provider/RssStreamProviderTask.java     | 18 ++++++++++
 .../serializer/SyndEntryActivitySerializer.java | 18 ++++++++++
 .../streams/rss/test/Top100FeedsTest.java       | 18 ++++++++++
 .../sysomos/provider/ContentRequestBuilder.java |  1 +
 .../sysomos/provider/SysomosProvider.java       |  7 +++-
 .../com/sysomos/test/SysomosJsonSerDeTest.java  | 18 ++++++++++
 .../com/sysomos/test/SysomosXmlSerDeTest.java   | 18 ++++++++++
 .../FetchAndReplaceTwitterProcessor.java        |  2 +-
 .../processor/TwitterEventProcessor.java        | 18 ++++++++++
 .../processor/TwitterProfileProcessor.java      | 18 ++++++++++
 .../twitter/processor/TwitterTypeConverter.java | 18 ++++++++++
 .../twitter/provider/TwitterErrorHandler.java   | 20 ++++++++++-
 .../provider/TwitterEventClassifier.java        | 18 ++++++++++
 .../provider/TwitterStreamConfigurator.java     | 18 ++++++++++
 .../twitter/provider/TwitterStreamProvider.java | 23 ++++++++++++
 .../provider/TwitterStreamProviderTask.java     | 18 ++++++++++
 .../provider/TwitterTimelineProvider.java       | 32 +++++++++++++++--
 .../provider/TwitterTimelineProviderTask.java   | 18 ++++++++++
 .../TwitterUserInformationProvider.java         | 12 ++++++-
 .../serializer/StreamsTwitterMapper.java        | 18 ++++++++++
 .../TwitterJsonActivitySerializer.java          | 18 ++++++++++
 .../TwitterJsonDeleteActivitySerializer.java    | 18 ++++++++++
 .../TwitterJsonRetweetActivitySerializer.java   | 18 ++++++++++
 .../TwitterJsonTweetActivitySerializer.java     | 18 ++++++++++
 ...erJsonUserstreameventActivitySerializer.java | 18 ++++++++++
 .../streams/twitter/test/SimpleTweetTest.java   | 18 ++++++++++
 .../twitter/test/TweetActivitySerDeTest.java    | 18 ++++++++++
 .../streams/twitter/test/TweetSerDeTest.java    | 18 ++++++++++
 .../test/TwitterEventClassifierTest.java        | 18 ++++++++++
 .../twitter/test/TwitterStreamProviderTest.java | 18 ++++++++++
 .../org/apache/streams/core/DatumStatus.java    | 18 ++++++++++
 .../streams/core/DatumStatusCountable.java      | 18 ++++++++++
 .../apache/streams/core/DatumStatusCounter.java | 18 ++++++++++
 .../org/apache/streams/core/StreamBuilder.java  | 18 ++++++++++
 .../org/apache/streams/core/StreamHandler.java  | 18 ++++++++++
 .../org/apache/streams/core/StreamState.java    | 18 ++++++++++
 .../apache/streams/core/StreamsOperation.java   | 18 ++++++++++
 .../apache/streams/core/StreamsProvider.java    | 38 +++++++++++++++++---
 .../ActivityDeserializerException.java          | 18 ++++++++++
 .../exceptions/ActivitySerializerException.java | 18 ++++++++++
 .../jackson/StreamsDateTimeDeserializer.java    | 18 ++++++++++
 .../jackson/StreamsDateTimeSerializer.java      | 18 ++++++++++
 .../streams/jackson/StreamsJacksonMapper.java   | 18 ++++++++++
 .../streams/jackson/StreamsJacksonModule.java   | 18 ++++++++++
 .../jackson/StreamsPeriodDeserializer.java      | 18 ++++++++++
 .../jackson/StreamsPeriodSerializer.java        | 20 ++++++++++-
 .../data/data/util/DateTimeSerDeTest.java       | 18 ++++++++++
 .../local/builders/InvalidStreamException.java  | 18 ++++++++++
 .../local/builders/LocalStreamBuilder.java      | 18 ++++++++++
 .../streams/local/builders/StreamComponent.java | 18 ++++++++++
 .../streams/local/tasks/BaseStreamsTask.java    | 18 ++++++++++
 .../tasks/LocalStreamProcessMonitorThread.java  | 18 ++++++++++
 .../tasks/StatusCounterMonitorRunnable.java     | 18 ++++++++++
 .../local/tasks/StatusCounterMonitorThread.java | 37 +++++++++++++------
 .../streams/local/tasks/StreamsMergeTask.java   | 18 ++++++++++
 .../local/tasks/StreamsPersistWriterTask.java   | 18 ++++++++++
 .../local/tasks/StreamsProcessorTask.java       | 18 ++++++++++
 .../local/tasks/StreamsProviderTask.java        | 18 ++++++++++
 .../apache/streams/local/tasks/StreamsTask.java | 18 ++++++++++
 .../local/builders/LocalStreamBuilderTest.java  | 18 ++++++++++
 .../local/builders/ToyLocalBuilderExample.java  | 18 ++++++++++
 .../streams/local/tasks/BasicTasksTest.java     | 18 ++++++++++
 .../test/processors/DoNothingProcessor.java     | 18 ++++++++++
 .../PassthroughDatumCounterProcessor.java       | 18 ++++++++++
 .../test/providers/EmptyResultSetProvider.java  |  5 +++
 .../test/providers/NumericMessageProvider.java  | 23 ++++++++++++
 .../local/test/writer/DatumCounterWriter.java   | 18 ++++++++++
 .../local/test/writer/DoNothingWriter.java      | 18 ++++++++++
 .../local/test/writer/SystemOutWriter.java      | 18 ++++++++++
 .../component/ExpectedDatumsPersistWriter.java  | 18 ++++++++++
 .../test/component/FileReaderProvider.java      | 23 ++++++++++++
 .../test/component/StreamsDatumConverter.java   | 18 ++++++++++
 .../component/StringToDocumentConverter.java    | 18 ++++++++++
 .../tests/TestComponentsLocalStream.java        | 18 ++++++++++
 .../tests/TestExpectedDatumsPersitWriter.java   | 18 ++++++++++
 .../component/tests/TestFileReaderProvider.java | 18 ++++++++++
 .../trident/StreamsPersistWriterState.java      | 18 ++++++++++
 .../storm/trident/StreamsProcessorFunction.java | 18 ++++++++++
 .../storm/trident/StreamsProviderSpout.java     | 20 ++++++++++-
 .../org/apache/streams/util/ComponentUtils.java | 18 ++++++++++
 .../java/org/apache/streams/util/DateUtil.java  | 18 ++++++++++
 .../apache/streams/util/SerializationUtil.java  | 18 ++++++++++
 164 files changed, 2822 insertions(+), 44 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/4d93cbe8/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamProvider.java
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/4d93cbe8/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/4d93cbe8/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
----------------------------------------------------------------------


[03/45] git commit: Datasift mapping to activity fixes and extensions

Posted by mf...@apache.org.
Datasift mapping to activity fixes and extensions


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/f2d0715c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/f2d0715c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/f2d0715c

Branch: refs/heads/master
Commit: f2d0715c15d454e712523054773c48bdd78f35e9
Parents: 0232a3a
Author: rebanks <re...@w2odigital.com>
Authored: Mon Jun 2 14:11:25 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Mon Jun 2 14:11:25 2014 -0500

----------------------------------------------------------------------
 .../provider/DatasiftStreamProvider.java        |    2 +-
 .../DatasiftTypeConverterProcessor.java         |    9 +-
 .../serializer/DatasiftActivitySerializer.java  |  175 +-
 .../DatasiftDefaultActivitySerializer.java      |  215 +
 .../DatasiftTweetActivitySerializer.java        |  211 +
 .../main/jsonschema/com/datasift/Datasift.json  |   44 +-
 .../com/datasift/test/DatasiftSerDeTest.java    |   15 +-
 .../DatasiftActivitySerializerTest.java         |   55 +
 .../src/test/resources/part-r-big.json          | 6998 ++++++++++++++++++
 .../apache/streams/data/util/RFC3339Utils.java  |    1 +
 .../jackson/StreamsDateTimeDeserializer.java    |    2 +-
 .../local/tasks/StreamsProviderTask.java        |    4 +-
 12 files changed, 7560 insertions(+), 171 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamProvider.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamProvider.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamProvider.java
index 96466ea..c02a175 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamProvider.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamProvider.java
@@ -165,7 +165,7 @@ public class DatasiftStreamProvider implements StreamsProvider {
         while (!this.interactions.isEmpty()) {
             interaction = this.interactions.poll();
             try {
-                datum = new StreamsDatum(this.mapper.writeValueAsString(this.interactions.poll()), interaction.getData().get("interaction").get("id").textValue());
+                datum = new StreamsDatum(this.mapper.writeValueAsString(interaction.getData()), interaction.getData().get("interaction").get("id").textValue());
             } catch (JsonProcessingException jpe) {
                 LOGGER.error("Exception while converting Interaction to String : {}", jpe);
             }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
index 1e994fb..a842786 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
@@ -23,6 +23,7 @@ import com.google.common.collect.Lists;
 import org.apache.commons.lang.NotImplementedException;
 import org.apache.streams.core.StreamsDatum;
 import org.apache.streams.core.StreamsProcessor;
+import org.apache.streams.datasift.Datasift;
 import org.apache.streams.datasift.serializer.DatasiftActivitySerializer;
 import org.apache.streams.jackson.StreamsJacksonMapper;
 import org.apache.streams.pojo.json.Activity;
@@ -90,7 +91,7 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
                 return toConvert;
             try {
                 if(toConvert instanceof String)
-                    return mapper.readValue((String)toConvert, Activity.class);
+                    return datasiftInteractionActivitySerializer.deserialize((String) toConvert);
                 return mapper.convertValue(toConvert, Activity.class);
             } catch (Exception e) {
                 LOGGER.error("Exception while trying to convert {} to a Activity.", toConvert.getClass());
@@ -105,9 +106,11 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
     private class StringConverter implements DatasiftConverter {
         @Override
         public Object convert(Object toConvert, ObjectMapper mapper) {
-            if(toConvert instanceof String)
-                return toConvert;
             try {
+                if(toConvert instanceof String){
+                    LOGGER.debug(mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class)));
+                    return mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class));
+                }
                 return mapper.writeValueAsString(toConvert);
             } catch (Exception e) {
                 LOGGER.error("Exception while trying to write {} as a String.", toConvert.getClass());

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
index de65636..a9b7db1 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
@@ -1,181 +1,52 @@
 package org.apache.streams.datasift.serializer;
 
-import com.fasterxml.jackson.databind.AnnotationIntrospector;
-import com.fasterxml.jackson.databind.DeserializationFeature;
 import com.fasterxml.jackson.databind.ObjectMapper;
-import com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector;
-import com.google.common.base.Joiner;
-import com.google.common.collect.Lists;
 import org.apache.streams.data.ActivitySerializer;
 import org.apache.streams.datasift.Datasift;
-import org.apache.streams.datasift.interaction.Interaction;
-import org.apache.streams.pojo.json.*;
+import org.apache.streams.exceptions.ActivitySerializerException;
+import org.apache.streams.jackson.StreamsJacksonMapper;
+import org.apache.streams.pojo.json.Activity;
 
-import java.io.Serializable;
-import java.text.DateFormat;
-import java.text.ParseException;
-import java.text.SimpleDateFormat;
-import java.util.Date;
-import java.util.HashMap;
 import java.util.List;
-import java.util.Map;
-
-import static org.apache.streams.data.util.ActivityUtil.ensureExtensions;
 
 /**
-* Created with IntelliJ IDEA.
-* User: mdelaet
-* Date: 9/30/13
-* Time: 9:24 AM
-* To change this template use File | Settings | File Templates.
-*/
-public class DatasiftActivitySerializer implements ActivitySerializer<Datasift>, Serializable {
-
-    public static final String DATE_FORMAT = "EEE MMM dd HH:mm:ss Z yyyy";
+ * Created by rebanks on 5/30/14.
+ */
+public class DatasiftActivitySerializer implements ActivitySerializer<Datasift> {
 
-    ObjectMapper mapper = new ObjectMapper();
+    private static final DatasiftTweetActivitySerializer TWITTER_SERIALIZER = new DatasiftTweetActivitySerializer();
+    private static final DatasiftDefaultActivitySerializer DEFAULT_SERIALIZER = new DatasiftDefaultActivitySerializer();
+    private static final ObjectMapper MAPPER = StreamsJacksonMapper.getInstance();
 
     @Override
     public String serializationFormat() {
-        return "application/json+datasift.com.v1.1";
-    }
-
-    @Override
-    public Datasift serialize(Activity deserialized) {
-        throw new UnsupportedOperationException("Cannot currently serialize to Datasift JSON");
+        return null;
     }
 
     @Override
-    public Activity deserialize(Datasift serialized) {
-
-        AnnotationIntrospector introspector = new JaxbAnnotationIntrospector(mapper.getTypeFactory());
-        mapper.setAnnotationIntrospector(introspector);
-        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, Boolean.FALSE);
-        mapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, Boolean.TRUE);
-        mapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, Boolean.TRUE);
-        mapper.configure(DeserializationFeature.WRAP_EXCEPTIONS, Boolean.TRUE);
-
-        try {
-
-            Activity activity = convert(serialized);
-
-            return activity;
-
-        } catch (Exception e) {
-            throw new IllegalArgumentException("Unable to deserialize", e);
-        }
-
+    public Datasift serialize(Activity deserialized) throws ActivitySerializerException {
+        return null;
     }
 
     @Override
-    public List<Activity> deserializeAll(List<Datasift> datasifts) {
-        List<Activity> activities = Lists.newArrayList();
-        for( Datasift datasift : datasifts ) {
-            activities.add(deserialize(datasift));
+    public Activity deserialize(Datasift serialized) throws ActivitySerializerException {
+        if(serialized.getTwitter() != null) {
+            return TWITTER_SERIALIZER.deserialize(serialized);
+        } else {
+            return DEFAULT_SERIALIZER.deserialize(serialized);
         }
-        return activities;
     }
 
-    public static Date parse(String str) {
-        Date date;
-        String dstr;
-        DateFormat fmt = new SimpleDateFormat(DATE_FORMAT);
-        DateFormat out = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
+    public Activity deserialize(String json) throws ActivitySerializerException {
         try {
-            date = fmt.parse(str);
-            dstr = out.format(date);
-            return out.parse(dstr);
-        } catch (ParseException e) {
-            throw new IllegalArgumentException("Invalid date format", e);
-        }
-    }
-
-    public static Generator buildGenerator(Interaction interaction) {
-        return null;
-    }
-
-    public static Icon getIcon(Interaction interaction) {
-        return null;
-    }
-
-    public static Provider buildProvider(Interaction interaction) {
-        Provider provider = new Provider();
-        provider.setId("id:providers:twitter");
-        return provider;
-    }
-
-    public static String getUrls(Interaction interaction) {
-        return null;
-    }
-
-    public static void addDatasiftExtension(Activity activity, Datasift datasift) {
-        Map<String, Object> extensions = org.apache.streams.data.util.ActivityUtil.ensureExtensions(activity);
-        extensions.put("datasift", datasift);
-    }
-
-    public static String formatId(String... idparts) {
-        return Joiner.on(":").join(Lists.asList("id:datasift", idparts));
-    }
-
-    public Activity convert(Datasift event) {
-
-        Activity activity = new Activity();
-        activity.setActor(buildActor(event.getInteraction()));
-        activity.setVerb("post");
-        activity.setObject(buildActivityObject(event.getInteraction()));
-        activity.setId(formatId(activity.getVerb(), event.getInteraction().getId()));
-        activity.setTarget(buildTarget(event.getInteraction()));
-        activity.setPublished(event.getInteraction().getCreatedAt());
-        activity.setGenerator(buildGenerator(event.getInteraction()));
-        activity.setIcon(getIcon(event.getInteraction()));
-        activity.setProvider(buildProvider(event.getInteraction()));
-        activity.setTitle(event.getInteraction().getTitle());
-        activity.setContent(event.getInteraction().getContent());
-        activity.setUrl(event.getInteraction().getLink());
-        activity.setLinks(getLinks(event.getInteraction()));
-        addDatasiftExtension(activity, event);
-        if( event.getInteraction().getGeo() != null) {
-            addLocationExtension(activity, event.getInteraction());
-        }
-        return activity;
-    }
-
-    public static Actor buildActor(Interaction interaction) {
-        Actor actor = new Actor();
-        actor.setId(formatId(interaction.getAuthor().getId().toString()));
-        actor.setDisplayName(interaction.getAuthor().getUsername());
-        Image image = new Image();
-        image.setUrl(interaction.getAuthor().getAvatar());
-        actor.setImage(image);
-        if (interaction.getAuthor().getLink()!=null){
-            actor.setUrl(interaction.getAuthor().getLink());
+            return deserialize(MAPPER.readValue(json, Datasift.class));
+        } catch (Exception e) {
+            throw new ActivitySerializerException(e);
         }
-        return actor;
     }
 
-    public static ActivityObject buildActivityObject(Interaction interaction) {
-        ActivityObject actObj = new ActivityObject();
-        actObj.setObjectType(interaction.getContenttype());
-        return actObj;
-    }
-
-    public static List<String> getLinks(Interaction interaction) {
-        List<String> links = Lists.newArrayList();
-        return links;
-    }
-
-    public static ActivityObject buildTarget(Interaction interaction) {
+    @Override
+    public List<Activity> deserializeAll(List<Datasift> serializedList) {
         return null;
     }
-
-    public static void addLocationExtension(Activity activity, Interaction interaction) {
-        Map<String, Object> extensions = ensureExtensions(activity);
-        Map<String, Object> location = new HashMap<String, Object>();
-        Map<String, Double> coordinates = new HashMap<String, Double>();
-        coordinates.put("latitude", interaction.getGeo().getLatitude());
-        coordinates.put("longitude", interaction.getGeo().getLongitude());
-        location.put("coordinates", coordinates);
-        extensions.put("location", location);
-    }
-
 }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
new file mode 100644
index 0000000..c4cc6d3
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
@@ -0,0 +1,215 @@
+package org.apache.streams.datasift.serializer;
+
+import com.fasterxml.jackson.databind.AnnotationIntrospector;
+import com.fasterxml.jackson.databind.DeserializationFeature;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector;
+import com.google.common.base.Joiner;
+import com.google.common.collect.Lists;
+import org.apache.streams.data.ActivitySerializer;
+import org.apache.streams.datasift.Datasift;
+import org.apache.streams.datasift.interaction.*;
+import org.apache.streams.jackson.StreamsJacksonMapper;
+import org.apache.streams.pojo.json.*;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.Serializable;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import static org.apache.streams.data.util.ActivityUtil.ensureExtensions;
+
+/**
+* Created with IntelliJ IDEA.
+* User: mdelaet
+* Date: 9/30/13
+* Time: 9:24 AM
+* To change this template use File | Settings | File Templates.
+*/
+public class DatasiftDefaultActivitySerializer implements ActivitySerializer<Datasift>, Serializable {
+
+    private static final Logger LOGGER = LoggerFactory.getLogger(DatasiftDefaultActivitySerializer.class);
+
+    public static final String DATE_FORMAT = "EEE MMM dd HH:mm:ss Z yyyy";
+
+    ObjectMapper mapper = StreamsJacksonMapper.getInstance();
+
+    @Override
+    public String serializationFormat() {
+        return "application/json+datasift.com.v1.1";
+    }
+
+    @Override
+    public Datasift serialize(Activity deserialized) {
+        throw new UnsupportedOperationException("Cannot currently serialize to Datasift JSON");
+    }
+
+    public Activity deserialize(String datasiftJson) {
+        try {
+            return deserialize(this.mapper.readValue(datasiftJson, Datasift.class));
+        } catch (Exception e) {
+            LOGGER.error("Excpetion while trying convert,\n {},\n to a Datasift object.", datasiftJson);
+            LOGGER.error("Exception : {}", e);
+            throw new RuntimeException(e);
+        }
+    }
+
+    @Override
+    public Activity deserialize(Datasift serialized) {
+
+        AnnotationIntrospector introspector = new JaxbAnnotationIntrospector(mapper.getTypeFactory());
+        mapper.setAnnotationIntrospector(introspector);
+        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, Boolean.FALSE);
+        mapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, Boolean.TRUE);
+        mapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, Boolean.TRUE);
+        mapper.configure(DeserializationFeature.WRAP_EXCEPTIONS, Boolean.TRUE);
+
+        try {
+
+            Activity activity = convert(serialized);
+
+            return activity;
+
+        } catch (Exception e) {
+            throw new IllegalArgumentException("Unable to deserialize", e);
+        }
+
+    }
+
+    @Override
+    public List<Activity> deserializeAll(List<Datasift> datasifts) {
+        List<Activity> activities = Lists.newArrayList();
+        for( Datasift datasift : datasifts ) {
+            activities.add(deserialize(datasift));
+        }
+        return activities;
+    }
+
+    public static Generator buildGenerator(Interaction interaction) {
+        Generator generator = new Generator();
+        generator.setDisplayName(interaction.getSource());
+        generator.setId(interaction.getSource());
+        return generator;
+    }
+
+    public static Icon getIcon(Interaction interaction) {
+        return null;
+    }
+
+    public static Provider buildProvider(Interaction interaction) {
+        Provider provider = new Provider();
+        provider.setId("id:providers:"+interaction.getType());
+        provider.setDisplayName(interaction.getType());
+        return provider;
+    }
+
+    public static String getUrls(Interaction interaction) {
+        return null;
+    }
+
+    public static void addDatasiftExtension(Activity activity, Datasift datasift) {
+        Map<String, Object> extensions = org.apache.streams.data.util.ActivityUtil.ensureExtensions(activity);
+        extensions.put("datasift", datasift);
+    }
+
+    public static String formatId(String... idparts) {
+        return Joiner.on(":").join(Lists.asList("id:datasift", idparts));
+    }
+
+    public Activity convert(Datasift event) {
+
+        Activity activity = new Activity();
+        activity.setActor(buildActor(event.getInteraction()));
+        activity.setVerb("post");
+        activity.setObject(buildActivityObject(event.getInteraction()));
+        activity.setId(formatId(activity.getVerb(), event.getInteraction().getId()));
+        activity.setTarget(buildTarget(event.getInteraction()));
+        activity.setPublished(event.getInteraction().getCreatedAt());
+        activity.setGenerator(buildGenerator(event.getInteraction()));
+        activity.setIcon(getIcon(event.getInteraction()));
+        activity.setProvider(buildProvider(event.getInteraction()));
+        activity.setTitle(event.getInteraction().getTitle());
+        activity.setContent(event.getInteraction().getContent());
+        activity.setUrl(event.getInteraction().getLink());
+        activity.setLinks(getLinks(event));
+        addDatasiftExtension(activity, event);
+        if( event.getInteraction().getGeo() != null) {
+            addLocationExtension(activity, event.getInteraction());
+        }
+        return activity;
+    }
+
+    public Actor buildActor(Interaction interaction) {
+        Actor actor = new Actor();
+        org.apache.streams.datasift.interaction.Author author = interaction.getAuthor();
+        if(author == null) {
+            LOGGER.warn("Interactiond does not contain author information.");
+            return actor;
+        }
+        String userName = author.getUsername();
+        String name = author.getName();
+        Long id  = author.getId();
+        if(userName != null) {
+            actor.setDisplayName(userName);
+        } else {
+            actor.setDisplayName(name);
+        }
+
+        if(id != null) {
+            actor.setId(id.toString());
+        } else {
+            if(userName != null)
+                actor.setId(userName);
+            else
+                actor.setId(name);
+        }
+        Image image = new Image();
+        image.setUrl(interaction.getAuthor().getAvatar());
+        actor.setImage(image);
+        if (interaction.getAuthor().getLink()!=null){
+            actor.setUrl(interaction.getAuthor().getLink());
+        }
+        return actor;
+    }
+
+    public static ActivityObject buildActivityObject(Interaction interaction) {
+        ActivityObject actObj = new ActivityObject();
+        actObj.setObjectType(interaction.getContenttype());
+        actObj.setUrl(interaction.getLink());
+        return actObj;
+    }
+
+    public static List<String> getLinks(Datasift event) {
+        List<String> result = Lists.newArrayList();
+        Links links = event.getLinks();
+        if(links == null)
+            return null;
+        for(Object link : links.getNormalizedUrl()) {
+            if(link != null) {
+                if(link instanceof String) {
+                    result.add((String) link);
+                } else {
+                    LOGGER.warn("link is not of type String : {}", link.getClass().getName());
+                }
+            }
+        }
+        return result;
+    }
+
+    public static ActivityObject buildTarget(Interaction interaction) {
+        return null;
+    }
+
+    public static void addLocationExtension(Activity activity, Interaction interaction) {
+        Map<String, Object> extensions = ensureExtensions(activity);
+        Map<String, Object> location = new HashMap<String, Object>();
+        Map<String, Double> coordinates = new HashMap<String, Double>();
+        coordinates.put("latitude", interaction.getGeo().getLatitude());
+        coordinates.put("longitude", interaction.getGeo().getLongitude());
+        location.put("coordinates", coordinates);
+        extensions.put("location", location);
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
new file mode 100644
index 0000000..4931da6
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
@@ -0,0 +1,211 @@
+package org.apache.streams.datasift.serializer;
+
+
+import com.google.common.base.Optional;
+import com.google.common.collect.Lists;
+import com.google.common.collect.Maps;
+import org.apache.streams.data.util.RFC3339Utils;
+import org.apache.streams.datasift.Datasift;
+import org.apache.streams.datasift.interaction.Interaction;
+import org.apache.streams.datasift.interaction.User;
+import org.apache.streams.datasift.twitter.Retweet;
+import org.apache.streams.datasift.twitter.Twitter;
+import org.apache.streams.pojo.json.Activity;
+import org.apache.streams.pojo.json.Actor;
+import org.apache.streams.pojo.json.Image;
+import org.apache.streams.twitter.serializer.util.TwitterActivityUtil;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import static org.apache.streams.data.util.ActivityUtil.ensureExtensions;
+
+/**
+ * Created by rebanks on 5/30/14.
+ */
+public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySerializer {
+
+    private static final Logger LOGGER = LoggerFactory.getLogger(DatasiftTweetActivitySerializer.class);
+
+    @Override
+    public Activity convert(Datasift event) {
+        Activity activity = new Activity();
+        Twitter twitter = event.getTwitter();
+        boolean retweet = twitter.getRetweet() != null;
+
+        activity.setActor(buildActor(event, twitter)); //TODO
+        if(retweet) {
+            activity.setVerb("share");
+        } else {
+            activity.setVerb("post");
+        }
+        activity.setObject(buildActivityObject(event.getInteraction()));
+        activity.setId(formatId(activity.getVerb(), event.getInteraction().getId()));
+        activity.setTarget(buildTarget(event.getInteraction()));
+        activity.setPublished(event.getInteraction().getCreatedAt());
+        activity.setGenerator(buildGenerator(event.getInteraction()));
+        activity.setIcon(getIcon(event.getInteraction()));
+        activity.setProvider(TwitterActivityUtil.getProvider());
+        activity.setTitle(event.getInteraction().getTitle());
+        activity.setContent(event.getInteraction().getContent());
+        activity.setUrl(event.getInteraction().getLink());
+        activity.setLinks(getLinks(event));
+        addDatasiftExtension(activity, event);
+        if( twitter.getGeo() != null) {
+            addLocationExtension(activity, twitter);
+        }
+        addTwitterExtensions(activity, twitter, event.getInteraction());
+        return activity;
+    }
+
+    public Actor buildActor(Datasift event, Twitter twitter) {
+        User user = twitter.getUser();
+        Actor actor = super.buildActor(event.getInteraction());
+        if(user == null) {
+            return retweetBuildActor(actor, twitter.getRetweet().getUser());
+        }
+
+        actor.setDisplayName(user.getName());
+        actor.setId(formatId(Optional.fromNullable(
+                user.getIdStr())
+                .or(Optional.of(user.getId().toString()))
+                .orNull()));
+        actor.setSummary(user.getDescription());
+        try {
+            actor.setPublished(RFC3339Utils.parseToUTC(user.getCreatedAt()));
+        } catch (Exception e) {
+            LOGGER.warn("Exception trying to parse date : {}", e);
+        }
+
+        if(user.getUrl() != null) {
+            actor.setUrl(user.getUrl());
+        }
+
+        Map<String, Object> extensions = new HashMap<String,Object>();
+        extensions.put("location", user.getLocation());
+        extensions.put("posts", user.getStatusesCount());
+        extensions.put("followers", user.getFollowersCount());
+        extensions.put("screenName", user.getScreenName());
+        if(user.getAdditionalProperties() != null) {
+            extensions.put("favorites", user.getAdditionalProperties().get("favourites_count"));
+        }
+
+        Image profileImage = new Image();
+        String profileUrl = null;
+        if(user.getAdditionalProperties() != null) {
+            Object url = user.getAdditionalProperties().get("profile_image_url_https");
+            if(url instanceof String)
+                profileUrl = (String) url;
+        }
+        if(profileUrl == null) {
+            profileUrl = user.getProfileImageUrl();
+        }
+        profileImage.setUrl(profileUrl);
+        actor.setImage(profileImage);
+
+        actor.setAdditionalProperty("extensions", extensions);
+        return actor;
+    }
+
+    //Need to make retweet user and tweet user the same object.
+    public Actor retweetBuildActor(Actor actor, org.apache.streams.datasift.twitter.User user) {
+
+        actor.setDisplayName(user.getName());
+        actor.setId(formatId(Optional.fromNullable(
+                user.getIdStr())
+                .or(Optional.of(user.getId().toString()))
+                .orNull()));
+        actor.setSummary(user.getDescription());
+        try {
+            actor.setPublished(RFC3339Utils.parseToUTC(user.getCreatedAt()));
+        } catch (Exception e) {
+            LOGGER.warn("Exception trying to parse date : {}", e);
+        }
+
+        if(user.getUrl() != null) {
+            actor.setUrl(user.getUrl());
+        }
+
+        Map<String, Object> extensions = new HashMap<String,Object>();
+        extensions.put("location", user.getLocation());
+        extensions.put("posts", user.getStatusesCount());
+        extensions.put("followers", user.getFollowersCount());
+        extensions.put("screenName", user.getScreenName());
+        if(user.getAdditionalProperties() != null) {
+            extensions.put("favorites", user.getAdditionalProperties().get("favourites_count"));
+        }
+
+        Image profileImage = new Image();
+        String profileUrl = null;
+        if(user.getAdditionalProperties() != null) {
+            Object url = user.getAdditionalProperties().get("profile_image_url_https");
+            if(url instanceof String)
+                profileUrl = (String) url;
+        }
+        if(profileUrl == null) {
+            profileUrl = user.getProfileImageUrl();
+        }
+        profileImage.setUrl(profileUrl);
+        actor.setImage(profileImage);
+
+        actor.setAdditionalProperty("extensions", extensions);
+        return actor;
+    }
+
+    public void addLocationExtension(Activity activity, Twitter twitter) {
+        Map<String, Object> extensions = ensureExtensions(activity);
+        Map<String, Object> location = Maps.newHashMap();
+        double[] coordiantes = new double[] { twitter.getGeo().getLongitude(), twitter.getGeo().getLatitude() };
+        location.put("coordinates", coordiantes);
+        extensions.put("location", location);
+    }
+
+    public void addTwitterExtensions(Activity activity, Twitter twitter, Interaction interaction) {
+        Retweet retweet = twitter.getRetweet();
+        Map<String, Object> extensions = ensureExtensions(activity);
+        List<String> hashTags = Lists.newLinkedList();
+        List<Object> hts = Lists.newLinkedList();
+        if(twitter.getHashtags() != null) {
+            hts = twitter.getHashtags();
+        } else if (retweet != null) {
+            hts = retweet.getHashtags();
+        }
+        if(hts != null) {
+            for(Object ht : twitter.getHashtags()) {
+                if(ht instanceof String) {
+                    hashTags.add((String) ht);
+                } else {
+                    LOGGER.warn("Hashtag was not instance of String : {}", ht.getClass().getName());
+                }
+            }
+        }
+        extensions.put("hashtags", hashTags);
+
+
+        if(retweet != null) {
+            Map<String, Object> rebroadcasts = Maps.newHashMap();
+            rebroadcasts.put("perspectival", true);
+            rebroadcasts.put("count", retweet.getCount());
+        }
+
+        if(interaction.getAdditionalProperties() != null) {
+            Object mentionsObject = interaction.getAdditionalProperties().get("mentions");
+            if(mentionsObject != null ) {
+                if(mentionsObject instanceof List) {
+                    List mentions = (List) mentionsObject;
+                    List<Map<String, Object>> userMentions = Lists.newLinkedList();
+                    for(Object mention : mentions) {
+                        Map<String, Object> actor = Maps.newHashMap();
+                        actor.put("displayName", mention);
+                        userMentions.add(actor);
+                    }
+                    extensions.put("user_mentions", userMentions);
+                }
+            }
+        }
+        extensions.put("keywords", interaction.getContent());
+    }
+}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/main/jsonschema/com/datasift/Datasift.json
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/jsonschema/com/datasift/Datasift.json b/streams-contrib/streams-provider-datasift/src/main/jsonschema/com/datasift/Datasift.json
index 14653ba..e7b664a 100644
--- a/streams-contrib/streams-provider-datasift/src/main/jsonschema/com/datasift/Datasift.json
+++ b/streams-contrib/streams-provider-datasift/src/main/jsonschema/com/datasift/Datasift.json
@@ -99,10 +99,20 @@
                             "type": "integer"
                         },
                         "ids": {
-                            "type": "string"
+                            "type": "array",
+                            "items": [
+                                {
+                                    "type": "string"
+                                }
+                            ]
                         },
                         "names": {
-                            "type": "string"
+                            "type": "array",
+                            "items": [
+                                {
+                                    "type": "string"
+                                }
+                            ]
                         }
                     }
                 },
@@ -252,7 +262,12 @@
             "dynamic": "true",
             "properties": {
                 "code": {
-                    "type": "integer"
+                    "type": "array",
+                    "items": [
+                            {
+                            "type": "integer"
+                            }
+                        ]
                 },
                 "created_at": {
                     "type": "array",
@@ -398,7 +413,12 @@
                     ]
                 },
                 "retweet_count": {
-                    "type": "integer"
+                    "type": "array",
+                    "items": [
+                        {
+                            "type": "long"
+                        }
+                    ]
                 },
                 "title": {
                     "type": "array",
@@ -715,7 +735,12 @@
                     ]
                 },
                 "mention_ids": {
-                    "type": "integer"
+                    "type": "array",
+                    "items": [
+                        {
+                            "type": "integer"
+                        }
+                    ]
                 },
                 "mentions": {
                     "type": "array",
@@ -899,7 +924,13 @@
                             }
                         },
                         "mention_ids": {
-                            "type": "integer"
+                            "type": "array",
+                            "items":[
+                                {
+                                    "type": "integer"
+                                }
+                            ]
+
                         },
                         "mentions": {
                             "type": "array",
@@ -1031,6 +1062,7 @@
                             "type": "string"
                         },
                         "user": {
+                            "javaType": "org.apache.streams.datasift.twitter.User",
                             "dynamic": "true",
                             "properties": {
                                 "created_at": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
index 382a40b..785ec8f 100644
--- a/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
@@ -3,6 +3,7 @@ package com.datasift.test;
 import com.fasterxml.jackson.databind.DeserializationFeature;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import org.apache.streams.datasift.Datasift;
+import org.apache.streams.jackson.StreamsJacksonMapper;
 import org.junit.Assert;
 import org.junit.Ignore;
 import org.junit.Test;
@@ -24,17 +25,19 @@ public class DatasiftSerDeTest {
 
     private final static Logger LOGGER = LoggerFactory.getLogger(DatasiftSerDeTest.class);
 
-    private ObjectMapper mapper = new ObjectMapper();
+    private ObjectMapper mapper = StreamsJacksonMapper.getInstance();
 
-    @Ignore
-    @Test
+
+
+
+    @Test @Ignore
     public void Tests()
     {
         mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, Boolean.TRUE);
         mapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, Boolean.TRUE);
         mapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, Boolean.TRUE);
 
-        InputStream is = DatasiftSerDeTest.class.getResourceAsStream("/part-r-00000.json");
+        InputStream is = DatasiftSerDeTest.class.getResourceAsStream("/part-r-big.json");
         InputStreamReader isr = new InputStreamReader(is);
         BufferedReader br = new BufferedReader(isr);
 
@@ -42,7 +45,7 @@ public class DatasiftSerDeTest {
             while (br.ready()) {
                 String line = br.readLine();
                 LOGGER.debug(line);
-
+                System.out.println(line);
                 Datasift ser = mapper.readValue(line, Datasift.class);
 
                 String de = mapper.writeValueAsString(ser);
@@ -51,7 +54,7 @@ public class DatasiftSerDeTest {
 
                 Datasift serde = mapper.readValue(de, Datasift.class);
 
-                Assert.assertEquals(ser, serde);
+//                Assert.assertEquals(ser, serde);
 
                 LOGGER.debug(mapper.writeValueAsString(serde));
             }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/f2d0715c/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
new file mode 100644
index 0000000..0ffee7b
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
@@ -0,0 +1,55 @@
+package org.apache.streams.datasift.serializer;
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import org.apache.streams.jackson.StreamsJacksonMapper;
+import org.apache.streams.pojo.json.Activity;
+import org.apache.streams.pojo.json.Actor;
+import org.junit.Test;
+
+import java.util.Scanner;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+/**
+ * Created by rebanks on 5/29/14.
+ */
+public class DatasiftActivitySerializerTest {
+
+    private static final DatasiftActivitySerializer SERIALIZER = new DatasiftActivitySerializer();
+    private static final ObjectMapper MAPPER = StreamsJacksonMapper.getInstance();
+
+    @Test
+    public void testGeneralConversion() throws Exception {
+        Scanner scanner = new Scanner(DatasiftActivitySerializerTest.class.getResourceAsStream("/rand_sample_datasift_json.txt"));
+        String line = null;
+        while(scanner.hasNextLine()) {
+            line = scanner.nextLine();
+            testGeneralConversion(line);
+        }
+    }
+
+
+
+    /**
+     * Test that the minimum number of things that an activity has
+     * @param json
+     */
+    private void testGeneralConversion(String json) throws Exception {
+        Activity activity = SERIALIZER.deserialize(json);
+        assertNotNull(json, activity);
+        assertNotNull(json, activity.getId());
+        assertTrue(json, activity.getId().contains("datasift"));
+//        assertNotNull(json, activity.getContent());  //Some facebook do not have content
+        assertNotNull(json, activity.getPublished());
+        assertNotNull(json, activity.getUrl());
+        Actor actor = activity.getActor();
+        assertNotNull(json, actor);
+        //Not all interactions have authors
+//        assertNotNull(json, actor.getId());
+//        assertNotNull(json+"\n"+MAPPER.writeValueAsString(activity)+"\n", actor.getDisplayName());
+    }
+
+
+
+}


[22/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
index c738e80..426faef 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/random_sample_datasift_json.txt
@@ -1,1547 +1,1547 @@
-{"amazon":{"anchor":"533193","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/
 SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy s
 etup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"darkgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 0
 2:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","links":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwo
 wski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<
 br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy setup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"dar
 kgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL
  (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text\/html","text\/html","text\/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined
  configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,
 "confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
-{"amazon":{"anchor":"533271","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.c
 om\/forum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the
  SSLRequireSSL directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
-{"blog":{"atomversion":"1.0","author":{"name":"basyura"},"blog":{"link":"http:\/\/d.hatena.ne.jp\/basyura\/","title":"basyura's blog"},"blogid":"55821125","content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> 
 \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","domain":"d.hatena.ne.jp","guid":"1e2c1f54e6c6548c4381b6e9a6361cea","id":"1e3b279c65cbac00e0729be4b09bfd5c","lang":"ja","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","links":["http:\/\/localhost:3000","http:\/\/localhost\/sample","http:\/\/localhost:3000\/sample"],"parseddate":"Sun, 23 Mar 2014 15:32:03 +0000","postid":"1426a00d-f33f-4144-b396-5160bda65a31","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"post","updated":"Sun, 23 Mar 2014 10:56:24 +0000"},"interaction":
 {"author":{"name":"basyura"},"content":"<p><code>http:\/\/localhost:3000<\/code> \u3058\u3083\u306A\u304F\u3066\u3001<code>http:\/\/localhost\/sample<\/code> \u3067\u52D5\u304B\u3057\u305F\u3044\u3002<\/p><p>httpd.conf<\/p>\n<pre class=\"code\" data-unlink><VirtualHost *:80>\n  ProxyPass \/sample http:\/\/localhost:3000\/sample\n  ProxyPassReverse \/sample http:\/\/localhost:3000\/sample\n<\/VirtualHost><\/pre><p>config\/environments\/development.rb<\/p>\n<pre class=\"code\" data-unlink>config.relative_url_root = <span class=\"synSpecial\">\"<\/span><span class=\"synConstant\">\/sample<\/span><span class=\"synSpecial\">\"<\/span>\n<\/pre><p>\u8D77\u52D5<\/p>\n<pre class=\"code\" data-unlink>bundle exec thin start --prefix \/sample<\/pre><p>\u3067\u304D\u305F\u3051\u3069\u6B63\u89E3\u304C\u5206\u304B\u3089\u306A\u3044\u3002<\/p><p><code>application.rb<\/code> \u306B <code>config.assets.prefix = \"\/sample\/assets\/\"<\/code> \u3068\u5B9A\u7FA9\u3059\u308C\u3070\u3044\u3044\u306E\u304
 B\u3068\u601D\u3063\u3066\u305F\u3051\u3069\u9055\u3063\u305F\u307F\u305F\u3044\u3002\u3053\u3063\u3061\u306F\u3069\u3046\u3044\u3046\u6642\u306B\u4F7F\u3046\u306E\u304B\u3088\u304F\u5206\u304B\u3089\u3093\u304B\u3063\u305F\u3002<\/p>","contenttype":"html","created_at":"Sun, 23 Mar 2014 10:56:24 +0000","id":"1e3b279c65cbac00e0729be4b09bfd5c","link":"http:\/\/blog.basyura.org\/entry\/2014\/03\/23\/195624","schema":{"version":3},"subtype":"post","title":"apache + rails \u3092\u30B5\u30D6\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u52D5\u304B\u3057\u305F\u3044","type":"blog"},"language":{"confidence":49,"tag":"ja","tag_extended":"ja"},"links":{"code":[404],"created_at":["Sun, 23 Mar 2014 15:41:17 +0000"],"hops":[["http:\/\/localhost\/sample"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["http:\/\/localhost\/sample"]}}
-{"blog":{"author":{"name":"FunPonsel"},"blog":{"link":"http:\/\/funponsel.org\/","title":"PonSeL Indonesia."},"blogid":"71176595","content":"Jakarta\u00A0-4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu [\u2026]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","domain":"funponsel.org","guid":"0633391e1e9c865bb976c4605ca9d22f","id":"1e3b2b3b5c93a780e072555ff59c6636","lang":"id","link":"http:\/\/funponsel.org\/33180\/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","parseddate":"Sun, 23 Mar 2014 19:07:40 +0000","postid":"df16f773-3ac0-4de5-9e15-2923aac2b119","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"post"},"interaction":{"author":{"name":"FunPon
 sel"},"content":"Jakarta\u00A0-4 Pengendara motor TVS Apache 180 cc sukses menaklukan ganasnya medan Kalimantan. Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180. Perjalanan Tim Round The Borneo (RTB) ini dimulai dari Main Dealer TVS Dewi Sartika, 6 Januari 2014 lalu. TVS Apache 180 diuji terlebih dahulu [\u2026]","contenttype":"html","created_at":"Sun, 23 Mar 2014 17:51:07 +0000","id":"1e3b2b3b5c93a780e072555ff59c6636","link":"http:\/\/funponsel.org\/33180\/tvs-apache-taklukkan-ganasnya-kalimantan-2.html","schema":{"version":3},"subtype":"post","title":"TVS Apache Taklukkan Ganasnya Kalimantan","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
-{"blog":{"author":{"name":"hh58"},"blog":{"link":"http:\/\/blog.sina.com.cn\/hu263","title":"hh58"},"blogid":"73188486","content":"\u73B0\u4ECA\u5B58\u5728\u7684\u5F00\u6E90\u534F\u8BAE\u5F88\u591A\uFF0C\u800C\u7ECF\u8FC7Open\u00A0Source\u00A0Initiative\u7EC4\u7EC7\u901A\u8FC7\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u76EE\u524D\u670958\u79CD\uFF08http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD,\u00A0GPL,\u00A0LGPL,MIT\u7B49\u90FD\u662FOSI\u6279\u51C6\u7684\u534F\u8BAE\u3002\u5982\u679C\u8981\u5F00\u6E90\u81EA\u5DF1\u7684\u4EE3\u7801\uFF0C\u6700\u597D\u4E5F\u662F\u9009\u62E9\u8FD9\u4E9B\u88AB\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u3002<br \/>\n\n\u8FD9\u91CC\u6211\u4EEC\u6765\u770B\u56DB\u79CD\u6700\u5E38\u7528\u7684\u5F00\u6E90\u534F\u8BAE\u53CA\u5B83\u4EEC\u7684\u9002\u7528\u8303\u56F4\uFF0C\u4F9B\u90A3\u4E9B\u51C6\u5907\u5F00\u6E90\u6216\u8005\u4F7F\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u5F00\
 u53D1\u4EBA\u5458\/\u5382\u5BB6\u53C2\u8003\u3002<br \/>\n<br \/>\nBSD\u5F00\u6E90\u534F\u8BAE\uFF08original\u00A0BSD\u00A0license\u3001FreeBSD\u00A0license\u3001Original\u00A0BSD\u00A0license\uFF09\u00A0BSD\u5F00\u6E90\u534F\u8BAE\u662F\u4E00\u4E2A\u7ED9\u4E8E\u4F7F\u7528\u8005\u5F88\u5927\u81EA\u7531\u7684\u534F\u8BAE\u3002\u57FA\u672C\u4E0A\u4F7F\u7528\u8005\u53EF\u4EE5\u201D\u4E3A\u6240\u6B32\u4E3A\u201D,\u53EF\u4EE5\u81EA\u7531\u7684\u4F7F\u7528\uFF0C\u4FEE\u6539\u6E90\u4EE3\u7801\uFF0C\u4E5F\u53EF\u4EE5\u5C06\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u4F5C\u4E3A\u5F00\u6E90\u6216\u8005\u4E13\u6709\u8F6F\u4EF6\u518D\u53D1\u5E03\u3002<br \/>\n\n\u4F46\u201D\u4E3A\u6240\u6B32\u4E3A\u201D\u7684\u524D\u63D0\u5F53\u4F60\u53D1\u5E03\u4F7F\u7528\u4E86BSD\u534F\u8BAE\u7684\u4EE3\u7801\uFF0C\u6216\u5219\u4EE5BSD\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\u505A\u4E8C\u6B21\u5F00\u53D1\u81EA\u5DF1\u7684\u4EA7\u54C1\u65F6\uFF0C\u9700\u8981\u6EE1\u8DB3\u4E09\u4E2A\u6761\u4EF6\uFF1A<br \/>\n1.\u00A
 0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u6E90\u4EE3\u7801\uFF0C\u5219\u5728\u6E90\u4EE3\u7801\u4E2D\u5FC5\u987B\u5E26\u6709\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002\u00A02.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u53EA\u662F\u4E8C\u8FDB\u5236\u7C7B\u5E93\/\u8F6F\u4EF6\uFF0C\u5219\u9700\u8981\u5728\u7C7B\u5E93\/\u8F6F\u4EF6\u7684\u6587\u6863\u548C\u7248\u6743\u58F0\u660E\u4E2D\u5305\u542B<br \/>\n\n\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002<br \/>\n3.\u00A0\u4E0D\u53EF\u4EE5\u7528\u5F00\u6E90\u4EE3\u7801\u7684\u4F5C\u8005\/\u673A\u6784\u540D\u5B57\u548C\u539F\u6765\u4EA7\u54C1\u7684\u540D\u5B57\u505A\u5E02\u573A\u63A8\u5E7F\u3002\u00A0BSD\u00A0\u4EE3\u7801\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\uFF0C\u4F46\u9700\u8981\u5C0A\u91CD\u4EE3\u7801\u4F5C\u8005\u7684\u8457\u4F5C\u6743\u3002BSD\u7531\u4E8E\u5141\u8BB8\u4F7F\u7528\u8005\u4FEE\u6539\u548C\u91CD\u65B0\u53D1\u5E03\u4EE3\u7801\uFF0C\u4E5F\u5141\u8BB8\u4F7F\u7528\u6216\u5728
 BSD\u4EE3\u7801\u4E0A\u5F00\u53D1\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\uFF0C\u56E0\u6B64\u662F\u5BF9\u5546\u4E1A\u96C6\u6210\u5F88\u53CB\u597D\u7684\u534F\u8BAE\u3002\u800C\u5F88\u591A\u7684\u516C\u53F8\u4F01\u4E1A\u5728\u9009\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u65F6\u5019\u90FD\u9996\u9009BSD\u534F\u8BAE\uFF0C\u56E0\u4E3A\u53EF\u4EE5\u5B8C\u5168\u63A7\u5236\u8FD9\u4E9B\u7B2C\u4E09\u65B9\u7684\u4EE3\u7801\uFF0C\u5728\u5FC5\u8981\u7684\u65F6\u5019\u53EF\u4EE5\u4FEE\u6539\u6216\u8005\u4E8C\u6B21\u5F00\u53D1\u3002<br \/>\n\nApache\u00A0Licence\u00A02.0\uFF08Apache\u00A0License,\u00A0Version\u00A02.0\u3001Apache\u00A0License,\u00A0Version\u00A01.1\u3001Apache\u00A0License,\u00A0Version\u00A01.0\uFF09<br \/>\n\nApache\u00A0Licence\u662F\u8457\u540D\u7684\u975E\u76C8\u5229\u5F00\u6E90\u7EC4\u7EC7Apache\u91C7\u7528\u7684\u534F\u8BAE\u3002\u8BE5\u534F\u8BAE\u548CBSD\u7C7B\u4F3C\uFF0C\u540C\u6837\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\u548C\u5C0A\u91CD\u539F\u4F5C\u8005\u7684\
 u8457\u4F5C\u6743\uFF0C\u540C\u6837\u5141\u8BB8\u4EE3\u7801\u4FEE\u6539\uFF0C\u518D\u53D1\u5E03\uFF08\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u8F6F\u4EF6\uFF09\u3002\u9700\u8981\u6EE1\u8DB3\u7684\u6761\u4EF6\u4E5F\u548CBSD\u7C7B\u4F3C\uFF1A<br \/>\n\n1.\u00A0\u9700\u8981\u7ED9\u4EE3\u7801\u7684\u7528\u6237\u4E00\u4EFDApache\u00A0Licence<br \/>\n2.\u00A0\u5982\u679C\u4F60\u4FEE\u6539\u4E86\u4EE3\u7801\uFF0C\u9700\u8981\u518D\u88AB\u4FEE\u6539\u7684\u6587\u4EF6\u4E2D\u8BF4\u660E\u3002<br \/>\n3.\u00A0\u5728\u5EF6\u4F38\u7684\u4EE3\u7801\u4E2D\uFF08\u4FEE\u6539\u548C\u6709\u6E90\u4EE3\u7801\u884D\u751F\u7684\u4EE3\u7801\u4E2D\uFF09\u9700\u8981\u5E26\u6709\u539F\u6765\u4EE3\u7801\u4E2D\u7684\u534F\u8BAE\uFF0C\u5546<br \/>\n\u6807\uFF0C\u4E13\u5229\u58F0\u660E\u548C\u5176\u4ED6\u539F\u6765\u4F5C\u8005\u89C4\u5B9A\u9700\u8981\u5305\u542B\u7684\u8BF4\u660E\u3002<br \/>\n4.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u4E00\u4E2ANotice\u6587\u4EF6\uFF0C\u5219\u5
 728Notice\u6587\u4EF6\u4E2D\u9700\u8981\u5E26\u6709Apache<br \/>\n\nLicence\u3002\u4F60\u53EF\u4EE5\u5728Notice\u4E2D\u589E\u52A0\u81EA\u5DF1\u7684\u8BB8\u53EF\uFF0C\u4F46\u4E0D\u53EF\u4EE5\u8868\u73B0\u4E3A\u5BF9Apache\u00A0Licence\u6784\u6210\u66F4\u6539\u3002<br \/>\n\nApache\u00A0Licence\u4E5F\u662F\u5BF9\u5546\u4E1A\u5E94\u7528\u53CB\u597D\u7684\u8BB8\u53EF\u3002\u4F7F\u7528\u8005\u4E5F\u53EF\u4EE5\u5728\u9700\u8981\u7684\u65F6\u5019\u4FEE\u6539\u4EE3\u7801\u6765\u6EE1\u8DB3\u9700\u8981\u5E76\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u4EA7\u54C1\u53D1\u5E03\/\u9500\u552E\u3002\u00A0GPL\uFF08GNU\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\n\u6211\u4EEC\u5F88\u719F\u6089\u7684Linux\u5C31\u662F\u91C7\u7528\u4E86GPL\u3002GPL\u534F\u8BAE\u548CBSD,\u00A0Apache\u00A0Licence\u7B49\u9F13\u52B1\u4EE3\u7801\u91CD\u7528\u7684\u8BB8\u53EF\u5F88\u4E0D\u4E00\u6837\u3002GPL\u7684\u51FA\u53D1\u70B9\u662F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\u548C\u5F15\u7528\/\u4FEE\
 u6539\/\u884D\u751F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\uFF0C\u4F46\u4E0D\u5141\u8BB8\u4FEE\u6539\u540E\u548C\u884D\u751F\u7684\u4EE3\u7801\u505A\u4E3A\u95ED\u6E90\u7684\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\u3002\u8FD9\u4E5F\u5C31\u662F\u4E3A\u4EC0\u4E48\u6211\u4EEC\u80FD\u7528\u514D\u8D39\u7684\u5404\u79CDlinux\uFF0C\u5305\u62EC\u5546\u4E1A\u516C\u53F8\u7684linux\u548Clinux\u4E0A\u5404\u79CD\u5404\u6837\u7684\u7531\u4E2A\u4EBA\uFF0C\u7EC4\u7EC7\uFF0C\u4EE5\u53CA\u5546\u4E1A\u8F6F\u4EF6\u516C\u53F8\u5F00\u53D1\u7684\u514D\u8D39\u8F6F\u4EF6\u4E86\u3002<br \/>\n\nGPL\u534F\u8BAE\u7684\u4E3B\u8981\u5185\u5BB9\u662F\u53EA\u8981\u5728\u4E00\u4E2A\u8F6F\u4EF6\u4E2D\u4F7F\u7528(\u201C\u4F7F\u7528\u201D\u6307\u7C7B\u5E93\u5F15\u7528\uFF0C\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\u4EE3\u7801)GPL\u00A0\u534F\u8BAE\u7684\u4EA7\u54C1\uFF0C\u5219\u8BE5\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4E5F\u91C7\u7528GPL\u534F\u8BAE\uFF0C\u65E2\u5FC5\u9
 87B\u4E5F\u662F\u5F00\u6E90\u548C\u514D\u8D39\u3002\u8FD9\u5C31\u662F\u6240\u8C13\u7684\u201D\u4F20\u67D3\u6027\u201D\u3002GPL\u534F\u8BAE\u7684\u4EA7\u54C1\u4F5C\u4E3A\u4E00\u4E2A\u5355\u72EC\u7684\u4EA7\u54C1\u4F7F\u7528\u6CA1\u6709\u4EFB\u4F55\u95EE\u9898\uFF0C\u8FD8\u53EF\u4EE5\u4EAB\u53D7\u514D\u8D39\u7684\u4F18\u52BF\u3002<br \/>\n\n\u7531\u4E8EGPL\u4E25\u683C\u8981\u6C42\u4F7F\u7528\u4E86GPL\u7C7B\u5E93\u7684\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4F7F\u7528GPL\u534F\u8BAE\uFF0C\u5BF9\u4E8E\u4F7F\u7528GPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\uFF0C\u5546\u4E1A\u8F6F\u4EF6\u6216\u8005\u5BF9\u4EE3\u7801\u6709\u4FDD\u5BC6\u8981\u6C42\u7684\u90E8\u95E8\u5C31\u4E0D\u9002\u5408\u96C6\u6210\/\u91C7\u7528\u4F5C\u4E3A\u7C7B\u5E93\u548C\u4E8C\u6B21\u5F00\u53D1\u7684\u57FA\u7840\u3002<br \/>\n\n\u5176\u5B83\u7EC6\u8282\u5982\u518D\u53D1\u5E03\u7684\u65F6\u5019\u9700\u8981\u4F34\u968FGPL\u534F\u8BAE\u7B49\u548CBSD\/Apache\u7B49\u7C7B\u4F3C\u3002<br \/>\n<br \/>\nLGPL\uFF08GNU\u00A0Less
 er\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\nLGPL\u662FGPL\u7684\u4E00\u4E2A\u4E3A\u4E3B\u8981\u4E3A\u7C7B\u5E93\u4F7F\u7528\u8BBE\u8BA1\u7684\u5F00\u6E90\u534F\u8BAE\u3002\u548CGPL\u8981\u6C42\u4EFB\u4F55\u4F7F\u7528\/\u4FEE\u6539\/\u884D\u751F\u4E4BGPL\u7C7B\u5E93\u7684\u7684\u8F6F\u4EF6\u5FC5\u987B\u91C7\u7528GPL\u534F\u8BAE\u4E0D\u540C\u3002LGPL\u5141\u8BB8\u5546\u4E1A\u8F6F\u4EF6\u901A\u8FC7\u7C7B\u5E93\u5F15\u7528(link)\u65B9\u5F0F\u4F7F\u7528LGPL\u7C7B\u5E93\u800C\u4E0D\u9700\u8981\u5F00\u6E90\u5546\u4E1A\u8F6F\u4EF6\u7684\u4EE3\u7801\u3002\u8FD9\u4F7F\u5F97\u91C7\u7528LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u53EF\u4EE5\u88AB\u5546\u4E1A\u8F6F\u4EF6\u4F5C\u4E3A\u7C7B\u5E93\u5F15\u7528\u5E76\u53D1\u5E03\u548C\u9500\u552E\u3002<br \/>\n\n\u4F46\u662F\u5982\u679C\u4FEE\u6539LGPL\u534F\u8BAE\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\uFF0C\u5219\u6240\u6709\u4FEE\u6539\u7684\u4EE3\u7801\uFF0C\u6D89\u53CA\u4FEE\u6539\u90E8\u5206\u7684\u989D\u5916\u4EE3\u7801\u548
 C\u884D\u751F\u7684\u4EE3\u7801\u90FD\u5FC5\u987B\u91C7\u7528LGPL\u534F\u8BAE\u3002\u56E0\u6B64LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u5F88\u9002\u5408\u4F5C\u4E3A\u7B2C\u4E09\u65B9\u7C7B\u5E93\u88AB\u5546\u4E1A\u8F6F\u4EF6\u5F15\u7528\uFF0C\u4F46\u4E0D\u9002\u5408\u5E0C\u671B\u4EE5LGPL\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\uFF0C\u901A\u8FC7\u4FEE\u6539\u548C\u884D\u751F\u7684\u65B9\u5F0F\u505A\u4E8C\u6B21\u5F00\u53D1\u7684\u5546\u4E1A\u8F6F\u4EF6\u91C7\u7528\u3002<br \/>\n\nGPL\/LGPL\u90FD\u4FDD\u969C\u539F\u4F5C\u8005\u7684\u77E5\u8BC6\u4EA7\u6743\uFF0C\u907F\u514D\u6709\u4EBA\u5229\u7528\u5F00\u6E90\u4EE3\u7801\u590D\u5236\u5E76\u5F00\u53D1\u7C7B\u4F3C\u7684\u4EA7\u54C1\u00A0MIT\uFF08MIT\uFF09<br \/>\n\nMIT\u662F\u548CBSD\u4E00\u6837\u5BBD\u8303\u7684\u8BB8\u53EF\u534F\u8BAE,\u4F5C\u8005\u53EA\u60F3\u4FDD\u7559\u7248\u6743,\u800C\u65E0\u4EFB\u4F55\u5176\u4ED6\u4E86\u9650\u5236.\u4E5F\u5C31\u662F\u8BF4,\u4F60\u5FC5\u987B\u5728\u4F60\u7684\u53D1\u884C\u7248\u91CC\u5305\
 u542B\u539F\u8BB8\u53EF\u534F\u8BAE\u7684\u58F0\u660E,\u65E0\u8BBA\u4F60\u662F\u4EE5\u4E8C\u8FDB\u5236\u53D1\u5E03\u7684\u8FD8\u662F\u4EE5\u6E90\u4EE3\u7801\u53D1\u5E03\u7684.\u00A0<br \/>\n\n<br \/>\n<br \/>\nReference: \u767E\u5EA6\u767E\u79D1<br \/>\nhttp:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br \/>\n\n<br \/><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target
 =\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"Mon, 24 Mar 2014 03:14:12 +0000","domain":"blog.sina.com.cn","guid":"672664163c8d436f36cd797e5134ac78","id":"1e3b3025f371aa00e072242f15612c08","lang":"zh-cn","link":"http:\/\/blog.sina.com.cn\/s\/blog_844c1d8b0101fv02.html","links":["http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u
 5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD","http:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"parseddate":"Fri, 28 Mar 2014 18:25:03 +0000","postid":"7fc3321c-ce75-43af-9b5a-24486d45df88","title":"\u4E94\u79CD\u5F00\u6E90\u534F\u8BAE\u7684\u6BD4\u8F83(BSD,Apache,GPL,LGPL,MIT)","type":"post"},"interaction":{"author":{"name":"hh58"},"content":"\u73B0\u4ECA\u5B58\u5728\u7684\u5F00\u6E90\u534F\u8BAE\u5F88\u591A\uFF0C\u800C\u7ECF\u8FC7Open\u00A0Source\u00A0Initiative\u7EC4\u7EC7\u901A\u8FC7\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u76EE\u524D\u670958\u79CD\uFF08http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD,\u00A0GPL,\u00A0LGPL,MIT\u7B49\u90FD\u662FOSI\u6279\u51C6\u7684\u534F\u8BAE\u3002\u5982\u679C\u8981\u5F00\u6E90\u81EA\u5DF1\u7684\u4EE3\u7801\uFF0C\u6700\u597D\u4E5F\u662F\u9009\u62E9\u8FD9\u4E9B\
 u88AB\u6279\u51C6\u7684\u5F00\u6E90\u534F\u8BAE\u3002<br \/>\n\n\u8FD9\u91CC\u6211\u4EEC\u6765\u770B\u56DB\u79CD\u6700\u5E38\u7528\u7684\u5F00\u6E90\u534F\u8BAE\u53CA\u5B83\u4EEC\u7684\u9002\u7528\u8303\u56F4\uFF0C\u4F9B\u90A3\u4E9B\u51C6\u5907\u5F00\u6E90\u6216\u8005\u4F7F\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u5F00\u53D1\u4EBA\u5458\/\u5382\u5BB6\u53C2\u8003\u3002<br \/>\n<br \/>\nBSD\u5F00\u6E90\u534F\u8BAE\uFF08original\u00A0BSD\u00A0license\u3001FreeBSD\u00A0license\u3001Original\u00A0BSD\u00A0license\uFF09\u00A0BSD\u5F00\u6E90\u534F\u8BAE\u662F\u4E00\u4E2A\u7ED9\u4E8E\u4F7F\u7528\u8005\u5F88\u5927\u81EA\u7531\u7684\u534F\u8BAE\u3002\u57FA\u672C\u4E0A\u4F7F\u7528\u8005\u53EF\u4EE5\u201D\u4E3A\u6240\u6B32\u4E3A\u201D,\u53EF\u4EE5\u81EA\u7531\u7684\u4F7F\u7528\uFF0C\u4FEE\u6539\u6E90\u4EE3\u7801\uFF0C\u4E5F\u53EF\u4EE5\u5C06\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u4F5C\u4E3A\u5F00\u6E90\u6216\u8005\u4E13\u6709\u8F6F\u4EF6\u518D\u53D1\u5E03\u3002<br \/>\n\n\u4F46\u201D\u4E3A\u6240\u6B3
 2\u4E3A\u201D\u7684\u524D\u63D0\u5F53\u4F60\u53D1\u5E03\u4F7F\u7528\u4E86BSD\u534F\u8BAE\u7684\u4EE3\u7801\uFF0C\u6216\u5219\u4EE5BSD\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\u505A\u4E8C\u6B21\u5F00\u53D1\u81EA\u5DF1\u7684\u4EA7\u54C1\u65F6\uFF0C\u9700\u8981\u6EE1\u8DB3\u4E09\u4E2A\u6761\u4EF6\uFF1A<br \/>\n1.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u6E90\u4EE3\u7801\uFF0C\u5219\u5728\u6E90\u4EE3\u7801\u4E2D\u5FC5\u987B\u5E26\u6709\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002\u00A02.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u53EA\u662F\u4E8C\u8FDB\u5236\u7C7B\u5E93\/\u8F6F\u4EF6\uFF0C\u5219\u9700\u8981\u5728\u7C7B\u5E93\/\u8F6F\u4EF6\u7684\u6587\u6863\u548C\u7248\u6743\u58F0\u660E\u4E2D\u5305\u542B<br \/>\n\n\u539F\u6765\u4EE3\u7801\u4E2D\u7684BSD\u534F\u8BAE\u3002<br \/>\n3.\u00A0\u4E0D\u53EF\u4EE5\u7528\u5F00\u6E90\u4EE3\u7801\u7684\u4F5C\u8005\/\u673A\u6784\u540D\u5B57\u548C\u539F\u6765\u4EA7\u54C1\u7684\u540D\u5B57\u505A\u5E02\u573A\
 u63A8\u5E7F\u3002\u00A0BSD\u00A0\u4EE3\u7801\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\uFF0C\u4F46\u9700\u8981\u5C0A\u91CD\u4EE3\u7801\u4F5C\u8005\u7684\u8457\u4F5C\u6743\u3002BSD\u7531\u4E8E\u5141\u8BB8\u4F7F\u7528\u8005\u4FEE\u6539\u548C\u91CD\u65B0\u53D1\u5E03\u4EE3\u7801\uFF0C\u4E5F\u5141\u8BB8\u4F7F\u7528\u6216\u5728BSD\u4EE3\u7801\u4E0A\u5F00\u53D1\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\uFF0C\u56E0\u6B64\u662F\u5BF9\u5546\u4E1A\u96C6\u6210\u5F88\u53CB\u597D\u7684\u534F\u8BAE\u3002\u800C\u5F88\u591A\u7684\u516C\u53F8\u4F01\u4E1A\u5728\u9009\u7528\u5F00\u6E90\u4EA7\u54C1\u7684\u65F6\u5019\u90FD\u9996\u9009BSD\u534F\u8BAE\uFF0C\u56E0\u4E3A\u53EF\u4EE5\u5B8C\u5168\u63A7\u5236\u8FD9\u4E9B\u7B2C\u4E09\u65B9\u7684\u4EE3\u7801\uFF0C\u5728\u5FC5\u8981\u7684\u65F6\u5019\u53EF\u4EE5\u4FEE\u6539\u6216\u8005\u4E8C\u6B21\u5F00\u53D1\u3002<br \/>\n\nApache\u00A0Licence\u00A02.0\uFF08Apache\u00A0License,\u00A0Version\u00A02.0\u3001Apache\u00A0License,\u00A0Version\u00A01.1\u3001Apach
 e\u00A0License,\u00A0Version\u00A01.0\uFF09<br \/>\n\nApache\u00A0Licence\u662F\u8457\u540D\u7684\u975E\u76C8\u5229\u5F00\u6E90\u7EC4\u7EC7Apache\u91C7\u7528\u7684\u534F\u8BAE\u3002\u8BE5\u534F\u8BAE\u548CBSD\u7C7B\u4F3C\uFF0C\u540C\u6837\u9F13\u52B1\u4EE3\u7801\u5171\u4EAB\u548C\u5C0A\u91CD\u539F\u4F5C\u8005\u7684\u8457\u4F5C\u6743\uFF0C\u540C\u6837\u5141\u8BB8\u4EE3\u7801\u4FEE\u6539\uFF0C\u518D\u53D1\u5E03\uFF08\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u8F6F\u4EF6\uFF09\u3002\u9700\u8981\u6EE1\u8DB3\u7684\u6761\u4EF6\u4E5F\u548CBSD\u7C7B\u4F3C\uFF1A<br \/>\n\n1.\u00A0\u9700\u8981\u7ED9\u4EE3\u7801\u7684\u7528\u6237\u4E00\u4EFDApache\u00A0Licence<br \/>\n2.\u00A0\u5982\u679C\u4F60\u4FEE\u6539\u4E86\u4EE3\u7801\uFF0C\u9700\u8981\u518D\u88AB\u4FEE\u6539\u7684\u6587\u4EF6\u4E2D\u8BF4\u660E\u3002<br \/>\n3.\u00A0\u5728\u5EF6\u4F38\u7684\u4EE3\u7801\u4E2D\uFF08\u4FEE\u6539\u548C\u6709\u6E90\u4EE3\u7801\u884D\u751F\u7684\u4EE3\u7801\u4E2D\uFF09\u9700\u8981\u5E26\u6709\u539F\u6765\u4EE3
 \u7801\u4E2D\u7684\u534F\u8BAE\uFF0C\u5546<br \/>\n\u6807\uFF0C\u4E13\u5229\u58F0\u660E\u548C\u5176\u4ED6\u539F\u6765\u4F5C\u8005\u89C4\u5B9A\u9700\u8981\u5305\u542B\u7684\u8BF4\u660E\u3002<br \/>\n4.\u00A0\u5982\u679C\u518D\u53D1\u5E03\u7684\u4EA7\u54C1\u4E2D\u5305\u542B\u4E00\u4E2ANotice\u6587\u4EF6\uFF0C\u5219\u5728Notice\u6587\u4EF6\u4E2D\u9700\u8981\u5E26\u6709Apache<br \/>\n\nLicence\u3002\u4F60\u53EF\u4EE5\u5728Notice\u4E2D\u589E\u52A0\u81EA\u5DF1\u7684\u8BB8\u53EF\uFF0C\u4F46\u4E0D\u53EF\u4EE5\u8868\u73B0\u4E3A\u5BF9Apache\u00A0Licence\u6784\u6210\u66F4\u6539\u3002<br \/>\n\nApache\u00A0Licence\u4E5F\u662F\u5BF9\u5546\u4E1A\u5E94\u7528\u53CB\u597D\u7684\u8BB8\u53EF\u3002\u4F7F\u7528\u8005\u4E5F\u53EF\u4EE5\u5728\u9700\u8981\u7684\u65F6\u5019\u4FEE\u6539\u4EE3\u7801\u6765\u6EE1\u8DB3\u9700\u8981\u5E76\u4F5C\u4E3A\u5F00\u6E90\u6216\u5546\u4E1A\u4EA7\u54C1\u53D1\u5E03\/\u9500\u552E\u3002\u00A0GPL\uFF08GNU\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\n\u6211\u4EEC\u5F88\
 u719F\u6089\u7684Linux\u5C31\u662F\u91C7\u7528\u4E86GPL\u3002GPL\u534F\u8BAE\u548CBSD,\u00A0Apache\u00A0Licence\u7B49\u9F13\u52B1\u4EE3\u7801\u91CD\u7528\u7684\u8BB8\u53EF\u5F88\u4E0D\u4E00\u6837\u3002GPL\u7684\u51FA\u53D1\u70B9\u662F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\u548C\u5F15\u7528\/\u4FEE\u6539\/\u884D\u751F\u4EE3\u7801\u7684\u5F00\u6E90\/\u514D\u8D39\u4F7F\u7528\uFF0C\u4F46\u4E0D\u5141\u8BB8\u4FEE\u6539\u540E\u548C\u884D\u751F\u7684\u4EE3\u7801\u505A\u4E3A\u95ED\u6E90\u7684\u5546\u4E1A\u8F6F\u4EF6\u53D1\u5E03\u548C\u9500\u552E\u3002\u8FD9\u4E5F\u5C31\u662F\u4E3A\u4EC0\u4E48\u6211\u4EEC\u80FD\u7528\u514D\u8D39\u7684\u5404\u79CDlinux\uFF0C\u5305\u62EC\u5546\u4E1A\u516C\u53F8\u7684linux\u548Clinux\u4E0A\u5404\u79CD\u5404\u6837\u7684\u7531\u4E2A\u4EBA\uFF0C\u7EC4\u7EC7\uFF0C\u4EE5\u53CA\u5546\u4E1A\u8F6F\u4EF6\u516C\u53F8\u5F00\u53D1\u7684\u514D\u8D39\u8F6F\u4EF6\u4E86\u3002<br \/>\n\nGPL\u534F\u8BAE\u7684\u4E3B\u8981\u5185\u5BB9\u662F\u53EA\u8981\u5728\u4E00
 \u4E2A\u8F6F\u4EF6\u4E2D\u4F7F\u7528(\u201C\u4F7F\u7528\u201D\u6307\u7C7B\u5E93\u5F15\u7528\uFF0C\u4FEE\u6539\u540E\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\u4EE3\u7801)GPL\u00A0\u534F\u8BAE\u7684\u4EA7\u54C1\uFF0C\u5219\u8BE5\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4E5F\u91C7\u7528GPL\u534F\u8BAE\uFF0C\u65E2\u5FC5\u987B\u4E5F\u662F\u5F00\u6E90\u548C\u514D\u8D39\u3002\u8FD9\u5C31\u662F\u6240\u8C13\u7684\u201D\u4F20\u67D3\u6027\u201D\u3002GPL\u534F\u8BAE\u7684\u4EA7\u54C1\u4F5C\u4E3A\u4E00\u4E2A\u5355\u72EC\u7684\u4EA7\u54C1\u4F7F\u7528\u6CA1\u6709\u4EFB\u4F55\u95EE\u9898\uFF0C\u8FD8\u53EF\u4EE5\u4EAB\u53D7\u514D\u8D39\u7684\u4F18\u52BF\u3002<br \/>\n\n\u7531\u4E8EGPL\u4E25\u683C\u8981\u6C42\u4F7F\u7528\u4E86GPL\u7C7B\u5E93\u7684\u8F6F\u4EF6\u4EA7\u54C1\u5FC5\u987B\u4F7F\u7528GPL\u534F\u8BAE\uFF0C\u5BF9\u4E8E\u4F7F\u7528GPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\uFF0C\u5546\u4E1A\u8F6F\u4EF6\u6216\u8005\u5BF9\u4EE3\u7801\u6709\u4FDD\u5BC6\u8981\u6C42\u7684\u90E8\u95E8\u5C31\u4E0D\u9
 002\u5408\u96C6\u6210\/\u91C7\u7528\u4F5C\u4E3A\u7C7B\u5E93\u548C\u4E8C\u6B21\u5F00\u53D1\u7684\u57FA\u7840\u3002<br \/>\n\n\u5176\u5B83\u7EC6\u8282\u5982\u518D\u53D1\u5E03\u7684\u65F6\u5019\u9700\u8981\u4F34\u968FGPL\u534F\u8BAE\u7B49\u548CBSD\/Apache\u7B49\u7C7B\u4F3C\u3002<br \/>\n<br \/>\nLGPL\uFF08GNU\u00A0Lesser\u00A0General\u00A0Public\u00A0License\uFF09<br \/>\n\nLGPL\u662FGPL\u7684\u4E00\u4E2A\u4E3A\u4E3B\u8981\u4E3A\u7C7B\u5E93\u4F7F\u7528\u8BBE\u8BA1\u7684\u5F00\u6E90\u534F\u8BAE\u3002\u548CGPL\u8981\u6C42\u4EFB\u4F55\u4F7F\u7528\/\u4FEE\u6539\/\u884D\u751F\u4E4BGPL\u7C7B\u5E93\u7684\u7684\u8F6F\u4EF6\u5FC5\u987B\u91C7\u7528GPL\u534F\u8BAE\u4E0D\u540C\u3002LGPL\u5141\u8BB8\u5546\u4E1A\u8F6F\u4EF6\u901A\u8FC7\u7C7B\u5E93\u5F15\u7528(link)\u65B9\u5F0F\u4F7F\u7528LGPL\u7C7B\u5E93\u800C\u4E0D\u9700\u8981\u5F00\u6E90\u5546\u4E1A\u8F6F\u4EF6\u7684\u4EE3\u7801\u3002\u8FD9\u4F7F\u5F97\u91C7\u7528LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u53EF\u4EE5\u88AB\u5546\u4E1A\u8F6F\u4
 EF6\u4F5C\u4E3A\u7C7B\u5E93\u5F15\u7528\u5E76\u53D1\u5E03\u548C\u9500\u552E\u3002<br \/>\n\n\u4F46\u662F\u5982\u679C\u4FEE\u6539LGPL\u534F\u8BAE\u7684\u4EE3\u7801\u6216\u8005\u884D\u751F\uFF0C\u5219\u6240\u6709\u4FEE\u6539\u7684\u4EE3\u7801\uFF0C\u6D89\u53CA\u4FEE\u6539\u90E8\u5206\u7684\u989D\u5916\u4EE3\u7801\u548C\u884D\u751F\u7684\u4EE3\u7801\u90FD\u5FC5\u987B\u91C7\u7528LGPL\u534F\u8BAE\u3002\u56E0\u6B64LGPL\u534F\u8BAE\u7684\u5F00\u6E90\u4EE3\u7801\u5F88\u9002\u5408\u4F5C\u4E3A\u7B2C\u4E09\u65B9\u7C7B\u5E93\u88AB\u5546\u4E1A\u8F6F\u4EF6\u5F15\u7528\uFF0C\u4F46\u4E0D\u9002\u5408\u5E0C\u671B\u4EE5LGPL\u534F\u8BAE\u4EE3\u7801\u4E3A\u57FA\u7840\uFF0C\u901A\u8FC7\u4FEE\u6539\u548C\u884D\u751F\u7684\u65B9\u5F0F\u505A\u4E8C\u6B21\u5F00\u53D1\u7684\u5546\u4E1A\u8F6F\u4EF6\u91C7\u7528\u3002<br \/>\n\nGPL\/LGPL\u90FD\u4FDD\u969C\u539F\u4F5C\u8005\u7684\u77E5\u8BC6\u4EA7\u6743\uFF0C\u907F\u514D\u6709\u4EBA\u5229\u7528\u5F00\u6E90\u4EE3\u7801\u590D\u5236\u5E76\u5F00\u53D1\u7C7B\u4F3C\u768
 4\u4EA7\u54C1\u00A0MIT\uFF08MIT\uFF09<br \/>\n\nMIT\u662F\u548CBSD\u4E00\u6837\u5BBD\u8303\u7684\u8BB8\u53EF\u534F\u8BAE,\u4F5C\u8005\u53EA\u60F3\u4FDD\u7559\u7248\u6743,\u800C\u65E0\u4EFB\u4F55\u5176\u4ED6\u4E86\u9650\u5236.\u4E5F\u5C31\u662F\u8BF4,\u4F60\u5FC5\u987B\u5728\u4F60\u7684\u53D1\u884C\u7248\u91CC\u5305\u542B\u539F\u8BB8\u53EF\u534F\u8BAE\u7684\u58F0\u660E,\u65E0\u8BBA\u4F60\u662F\u4EE5\u4E8C\u8FDB\u5236\u53D1\u5E03\u7684\u8FD8\u662F\u4EE5\u6E90\u4EE3\u7801\u53D1\u5E03\u7684.\u00A0<br \/>\n\n<br \/>\n<br \/>\nReference: \u767E\u5EA6\u767E\u79D1<br \/>\nhttp:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3<br \/>\n\n<br \/><br \/><img src=\"http:\/\/simg.sinajs.cn\/blog7style\/images\/special\/1265.gif\">\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469641,474922&cid=0,0,0&sid=473458&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/ta
 g\/%E5%86%99%E7%9C%9F\" target=\"_blank\">\u9752\u6625\u5C31\u5E94\u8BE5\u8FD9\u6837\u7EFD\u653E<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469645,474926&cid=0,0,0&sid=473464&advid=358&camid=37389&show=ignore&url=http%3A%2F%2Funion.9173.com%2Fpub%3Fp%3D1%26u%3D1008\" target=\"_blank\">\u6E38\u620F\u6D4B\u8BD5\uFF1A\u4E09\u56FD\u65F6\u671F\u8C01\u662F\u4F60\u6700\u597D\u7684\u5144\u5F1F\uFF01\uFF01<\/a>\u00A0\u00A0<a href=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,469646,474927&cid=0,0,0&sid=473465&advid=358&camid=37389&show=ignore&url=http:\/\/qing.blog.sina.com.cn\/tag\/%E6%98%9F%E5%BA%A7\" target=\"_blank\">\u4F60\u4E0D\u5F97\u4E0D\u4FE1\u7684\u661F\u5EA7\u79D8\u5BC6<\/a><img src=\"http:\/\/sina.allyes.com\/main\/adfclick?db=sina&bid=204720,470173,475454&cid=0,0,0&sid=474001&advid=358&camid=37389&show=ignore&url=http:\/\/simg.sinajs.cn\/blog7style\/images\/common\/sg_trans.gif?t=0\">","contenttype":"html","created_at":"
 Mon, 24 Mar 2014 03:14:12 +0000","id":"1e3b3025f371aa00e072242f15612c08","link":"http:\/\/blog.sina.com.cn\/s\/blog_844c1d8b0101fv02.html","schema":{"version":3},"subtype":"post","title":"\u4E94\u79CD\u5F00\u6E90\u534F\u8BAE\u7684\u6BD4\u8F83(BSD,Apache,GPL,LGPL,MIT)","type":"blog"},"language":{"confidence":82,"tag":"zh","tag_extended":"zh-cn"},"links":{"code":[404,200],"created_at":["Fri, 28 Mar 2014 18:36:08 +0000","Fri, 28 Mar 2014 18:36:11 +0000"],"hops":[["http:\/\/www.opensource.org\/licenses\/alphabetical\uFF09\u3002\u6211\u4EEC\u5728\u5E38\u89C1\u7684\u5F00\u6E90\u534F\u8BAE\u5982BSD","http:\/\/opensource.org\/licenses\/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD"],[]],"meta":{"charset":["","GB2312"],"content_type":["","text\/html"],"description":["","\u5728\u7EBF\u4E92\u52A8\u5F0F\u6587\u6863\u5206\u4EAB\u5E73\u53F0\uFF0C\u5728\u8FD9\u91CC\uFF0C\u60A8\u53EF\u4EE5\u548C\u5343\u4E07\u7F51
 \u53CB\u5206\u4EAB\u81EA\u5DF1\u624B\u4E2D\u7684\u6587\u6863\uFF0C\u5168\u6587\u9605\u8BFB\u5176\u4ED6\u7528\u6237\u7684\u6587\u6863\uFF0C\u540C\u65F6\uFF0C\u4E5F\u53EF\u4EE5\u5229\u7528\u5206\u4EAB\u6587\u6863\u83B7\u53D6\u7684\u79EF\u5206\u4E0B\u8F7D\u6587\u6863"],"lang":["","unknown"]},"normalized_url":[null,"http:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"],"retweet_count":[0,0],"title":["null","\u4E94\u79CD\u5F00\u6E90\u534F\u8BAE\u7684\u6BD4\u8F83(BSD,Apache,GPL,LGPL,MIT)_\u767E\u5EA6\u6587\u5E93"],"url":["http:\/\/opensource.org\/licenses\/alphabetical%ef%bc%89%e3%80%82%e6%88%91%e4%bb%ac%e5%9c%a8%e5%b8%b8%e8%a7%81%e7%9a%84%e5%bc%80%e6%ba%90%e5%8d%8f%e8%ae%ae%e5%a6%82BSD","http:\/\/wenku.baidu.com\/link?url=eqgxpQXANzB3rrHQHqGnzVlR5XM61IxEL5U4szYT5WDZPqtV8rDkEfF6kMvkG0Prmbv2eyNioX0UxaifEznoEsV1G3SxCeYcvbw8VNgGEa3"]}}
-{"blog":{"author":{"name":"Reset"},"blog":{"link":"http:\/\/linux.org.ru\/","title":"Linux.org.ru: \u041D\u043E\u0432\u043E\u0441\u0442\u0438"},"blogid":"42212478","content":"<p>Apache Kafka\u00A0\u2014 \u044D\u0442\u043E \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043F\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0439, \u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043D\u043D\u0430\u044F \u043D\u0430 \u0432\u044B\u0441\u043E\u043A\u0443\u044E \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u043D\u0443\u044E \u0441\u043F\u043E\u0441\u043E\u0431\u043D\u043E\u0441\u0442\u044C.<\/p><p>\u041A\u043B\u044E\u0447\u0435\u0432\u044B\u0435 \u043E\u0441\u043E\u0431\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u044B:\n<\/p><ul><li> \u0421\u043A\u043E\u0440\u043E\u0441\u0442\u044C: \u043E\u0434\u0438\u043D \u0443\u0437\u0435\u043B \u
 043A\u043B\u0430\u0441\u0442\u0435\u0440\u0430 \u043C\u043E\u0436\u0435\u0442 \u043E\u0431\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0441\u043E\u0442\u043D\u0438 \u043C\u0435\u0433\u0430\u0431\u0430\u0439\u0442 \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0443.\n<\/li><li> \u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043C\u043E\u0441\u0442\u044C: \u043A\u043B\u0430\u0441\u0442\u0435\u0440 \u043C\u043E\u0436\u043D\u043E \u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u043E \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u0442\u044C \u0431\u0435\u0437 \u043F\u0440\u043E\u0441\u0442\u043E\u044F, \u043F\u043E\u0442\u043E\u043A\u0438 \u0434\u0430\u043D\u043D\u044B\u0445 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B.\n<\/li><li> \u041D\u0430\u0434\u0435\u0436\u043D\u043E\u0441\u0442\u044C: \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u0432 \u043A\u043B\u0430\u0441\
 u0442\u0435\u0440\u0435 \u043E\u0442\u0440\u0435\u043F\u043B\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B, \u043A\u0430\u0436\u0434\u044B\u0439 \u0443\u0437\u0435\u043B \u043C\u043E\u0436\u0435\u0442 \u0434\u0435\u0440\u0436\u0430\u0442\u044C \u0442\u0435\u0440\u0430\u0431\u0430\u0439\u0442\u044B \u0434\u0430\u043D\u043D\u044B\u0445 \u0431\u0435\u0437 \u043F\u043E\u0442\u0435\u0440\u044C \u0432 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438.\n<\/li><\/ul><p>\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 0.8.1:\n<\/p><ul><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0434\u0435\u0434\u0443\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0438 \u043B\u043E\u0433\u043E\u0432.\n<\/li><li> \u0423\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u0438\u0435 \u0441\u043A\u043E\u0440\u043E\u0441\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u0438 \u0437\u0430 \u0441\u044
 7\u0435\u0442 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F fsync.\n<\/li><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0447\u0438\u0441\u043B\u0430 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439 \u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u0442\u043E\u043F\u0438\u043A\u043E\u0432.\n<\/li><li> \u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0431\u0430\u043B\u0430\u043D\u0441\u0438\u0440\u043E\u0432\u043A\u0430 \u043B\u0438\u0434\u0435\u0440\u043E\u0432 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439.\n<\/li><li> \u0411\u0430\u0433\u0444\u0438\u043A\u0441\u044B.\n<\/li><\/ul><p><a href=\"http:\/\/blog.empathybox.com\/post\/79427855885\/whats-new-in-kafka-0-8-1\">\u041D\u043E\u0432\u043E\u0435 \u0432 \u0432\u0435\u
 0440\u0441\u0438\u0438 0.8.1<\/a><br>\n<a href=\"http:\/\/kafka.apache.org\/downloads.html\">\u0421\u043A\u0430\u0447\u0430\u0442\u044C<\/a>\n<\/p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i class=\"icon-tag\"><\/i>\u00A0<a class=tag rel=tag href=\"\/tag\/apache\">apache<\/a>, <a class=tag rel=tag href=\"\/tag\/kafka\">kafka<\/a><\/p><img src=\"http:\/\/feeds.feedburner.com\/~r\/org\/LOR\/~4\/0Cl5cgvj20E\" height=\"1\" width=\"1\"\/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","domain":"linux.org.ru","guid":"c8e402c6f69616765379b32b6edf23d6","id":"1e3b3148d255aa00e072d1c6eda76db0","lang":"ru","link":"http:\/\/www.linux.org.ru\/news\/opensource\/10310499","parseddate":"Mon, 24 Mar 2014 07:36:23 +0000","postid":"ad06b468-00fd-4934-858a-758a5d1d80c9","title":"\u0412\u044B\u0448\u043B\u0430 \u043D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Apache Kafka","type":"post"},"interaction":{"author":{"name":"Reset"},"content":"<p>Apache Kafka\u00A
 0\u2014 \u044D\u0442\u043E \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043F\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0439, \u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043D\u043D\u0430\u044F \u043D\u0430 \u0432\u044B\u0441\u043E\u043A\u0443\u044E \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u043D\u0443\u044E \u0441\u043F\u043E\u0441\u043E\u0431\u043D\u043E\u0441\u0442\u044C.<\/p><p>\u041A\u043B\u044E\u0447\u0435\u0432\u044B\u0435 \u043E\u0441\u043E\u0431\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441\u0438\u0441\u0442\u0435\u043C\u044B:\n<\/p><ul><li> \u0421\u043A\u043E\u0440\u043E\u0441\u0442\u044C: \u043E\u0434\u0438\u043D \u0443\u0437\u0435\u043B \u043A\u043B\u0430\u0441\u0442\u0435\u0440\u0430 \u043C\u043E\u0436\u0435\u0442 \u043E\u0431\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0441\u043E\u0442\u043D\u0438 \u043C\u0435\
 u0433\u0430\u0431\u0430\u0439\u0442 \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u0432 \u0441\u0435\u043A\u0443\u043D\u0434\u0443.\n<\/li><li> \u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043C\u043E\u0441\u0442\u044C: \u043A\u043B\u0430\u0441\u0442\u0435\u0440 \u043C\u043E\u0436\u043D\u043E \u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u043E \u0440\u0430\u0441\u0448\u0438\u0440\u044F\u0442\u044C \u0431\u0435\u0437 \u043F\u0440\u043E\u0441\u0442\u043E\u044F, \u043F\u043E\u0442\u043E\u043A\u0438 \u0434\u0430\u043D\u043D\u044B\u0445 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B.\n<\/li><li> \u041D\u0430\u0434\u0435\u0436\u043D\u043E\u0441\u0442\u044C: \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u0432 \u043A\u043B\u0430\u0441\u0442\u0435\u0440\u0435 \u043E\u0442\u0440\u0435\u043F\u043B\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u044B, \u043A\u0430\u0436\u0434\u044B\u0439 \u0443\u0437\u0435\u043B \u043C\u043E\u043
 6\u0435\u0442 \u0434\u0435\u0440\u0436\u0430\u0442\u044C \u0442\u0435\u0440\u0430\u0431\u0430\u0439\u0442\u044B \u0434\u0430\u043D\u043D\u044B\u0445 \u0431\u0435\u0437 \u043F\u043E\u0442\u0435\u0440\u044C \u0432 \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438.\n<\/li><\/ul><p>\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 0.8.1:\n<\/p><ul><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0434\u0435\u0434\u0443\u043F\u043B\u0438\u043A\u0430\u0446\u0438\u0438 \u043B\u043E\u0433\u043E\u0432.\n<\/li><li> \u0423\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u0438\u0435 \u0441\u043A\u043E\u0440\u043E\u0441\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u0438 \u0437\u0430 \u0441\u0447\u0435\u0442 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043
 8\u044F fsync.\n<\/li><li> \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0430 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0447\u0438\u0441\u043B\u0430 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439 \u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u0442\u043E\u043F\u0438\u043A\u043E\u0432.\n<\/li><li> \u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0431\u0430\u043B\u0430\u043D\u0441\u0438\u0440\u043E\u0432\u043A\u0430 \u043B\u0438\u0434\u0435\u0440\u043E\u0432 \u043F\u0430\u0440\u0442\u0438\u0446\u0438\u0439.\n<\/li><li> \u0411\u0430\u0433\u0444\u0438\u043A\u0441\u044B.\n<\/li><\/ul><p><a href=\"http:\/\/blog.empathybox.com\/post\/79427855885\/whats-new-in-kafka-0-8-1\">\u041D\u043E\u0432\u043E\u0435 \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 0.8.1<\/a><br>\n<a href=\"http:\/\/kafka.apache.org\/downloads.html\">\u0421\u043A\u0430\u0447\u0430\u0442\u044C<\/a>\n<\/p>\n\n  \n\n  \n  \n  \n      <p class=\"tags\"><i
  class=\"icon-tag\"><\/i>\u00A0<a class=tag rel=tag href=\"\/tag\/apache\">apache<\/a>, <a class=tag rel=tag href=\"\/tag\/kafka\">kafka<\/a><\/p><img src=\"http:\/\/feeds.feedburner.com\/~r\/org\/LOR\/~4\/0Cl5cgvj20E\" height=\"1\" width=\"1\"\/>","contenttype":"html","created_at":"Mon, 24 Mar 2014 05:24:20 +0000","id":"1e3b3148d255aa00e072d1c6eda76db0","link":"http:\/\/www.linux.org.ru\/news\/opensource\/10310499","schema":{"version":3},"subtype":"post","title":"\u0412\u044B\u0448\u043B\u0430 \u043D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Apache Kafka","type":"blog"},"language":{"confidence":95,"tag":"ru","tag_extended":"ru"}}
-{"blog":{"author":{"name":"jay"},"blog":{"link":"http:\/\/gilamotor.com\/","title":"Gilamotor Evalube"},"blogid":"56981296","category":"News,headline,Andry Berlianto,Round The Borneo,tvs apache rtr 180","content":"<p><strong>GILAMOTORcom \u2013<\/strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.<\/p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesungguhnya dimulai.<\/p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi 
 tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.<\/p>\n<p>\u201CDisektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,\u201D papar Andry Berlianto, Road Captain RTB.<\/p>\n<p>\u201CTerbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,\u201D sambung Agoy yang juga ikut dalam tim RTB.<\/p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau \u00A0TVSApache juga handal dijadikan motor petualang.<\/p>\n<p>\u201CProject Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS 
 Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,\u201D tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.<\/p>\n\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-1\/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-2\/' title='TVS Apache RTR Round The Borneo 2'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apach
 e RTR Round The Borneo 2\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-3\/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-4\/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" \/><\/a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","domain":"gilamotor.com","guid":"d61190c66d456eb1694e4
 25f2f101864","id":"1e3b33725343ab00e0724a3022b9fdfe","lang":"id","link":"http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/","parseddate":"Mon, 24 Mar 2014 09:50:09 +0000","postid":"eecec8d4-4a11-45b0-93d4-3cbfcecd5865","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"post"},"demographic":{"gender":"male"},"interaction":{"author":{"name":"jay"},"content":"<p><strong>GILAMOTORcom \u2013<\/strong> Mengukuhkan dan membuktikan ketangguhan TVS Apache 180cc, PT. TVS Motor Company Indonesia (TMCI) memfasilitasi Tim Round The Borneo (RTB) dengan 4 unit TVS Apache 180 cc untuk menaklukan ganasnya medan Kalimantan.<\/p>\n<p>TVS Apache 180 diuji terlebih dahulu melintasi rute Pantai Utara Jawa menuju Pelabuhan Tanjung Perak, Surabaya, yang akhirnya berlabuh di Pelabuhan Trisakti, Banjarmasin, Kalimantan Selatan. Dealer TVS Banjar Baru menyambut kedatangan tim RTB di tanah Borneo, setelah kalibrasi motor perjalanan sesunggu
 hnya dimulai.<\/p>\n<p>Dominasi jalan dengan kontur perbukitan yang memiliki elevasi yang tinggi berhasil dilalui tanpa kendala oleh mesin TVS Apache 180 bermesin 177, 4 cc, 4 tak. Mesinnya diklaim mampu memproduksi tenaga 17,03 hp di 8.500 rpm serta torsi 15,5 Nm di 6.500 rpm.<\/p>\n<p>\u201CDisektor kaki-kaki dan kestabilan TVS Apache 180 patut diacungkan jempol. Sesekali pertemuan dengan sungai kecil ditambah kondisi jembatan rusak dilalui tanpa kendala yang berarti. Apalagi bukan pertama kali kami bersahabat dengan TVS Apache 180, karena project Saptaranu (ekspedisi 7 danau Sumatera) pun menggunakan TVS Apache 180,\u201D papar Andry Berlianto, Road Captain RTB.<\/p>\n<p>\u201CTerbukti suspensi TVS benar-benar mantap dan kuat, karena mampu melahap jalur berbatu sepanjang 429 km nonstop. Kondisinya seperti Bumpy Test di pabrik,\u201D sambung Agoy yang juga ikut dalam tim RTB.<\/p>\n<p>Dengan menempuh jarak 10.426 km dan 8.000 km di Sumatera, membuktikan kalau \u00A0TVSApache juga 
 handal dijadikan motor petualang.<\/p>\n<p>\u201CProject Round The Borneo merupakan pembuktian nyata kekuatan TVS Apache 180. Seutuhnya nyaris semua komponen motor diuji oleh rintangan alam khas Kalimantan. Jadi TVS Apache bukan hanya unggul di seputaran tenaga saja, handling dan durabiltas pun ikut mengiringinya,\u201D tutup Heri Budianto Dragono, Chief Marketing Officer TVS Motor Company Indonesia.<\/p>\n\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-1\/' title='TVS Apache RTR Round The Borneo 1'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-1-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 1\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-2\/' title='TVS Apache RTR Roun
 d The Borneo 2'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-2-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 2\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-3\/' title='TVS Apache RTR Round The Borneo 3'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-3-150x150.jpg\" class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 3\" \/><\/a>\n<a href='http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/tvs-apache-rtr-round-the-borneo-4\/' title='TVS Apache RTR Round The Borneo 4'><img width=\"150\" height=\"150\" src=\"http:\/\/gilamotor.com\/wp-content\/uploads\/2014\/03\/TVS-Apache-RTR-Round-The-Borneo-4-150x150.jpg\" 
 class=\"attachment-thumbnail\" alt=\"\" title=\"TVS Apache RTR Round The Borneo 4\" \/><\/a>","contenttype":"html","created_at":"Mon, 24 Mar 2014 09:31:58 +0000","id":"1e3b33725343ab00e0724a3022b9fdfe","link":"http:\/\/gilamotor.com\/2014\/03\/ekspedisi-round-the-borneo-buktikan-ketangguhan-tvs-apache\/","received_at":4743640609237236502,"schema":{"version":3},"subtype":"post","title":"Ekspedisi Round The Borneo Buktikan Ketangguhan TVS Apache","type":"blog"},"language":{"confidence":99,"tag":"id","tag_extended":"id"}}
-{"blog":{"author":{"name":"admin"},"blog":{"link":"http:\/\/www.joinebook.com\/","title":"Join eBook, Free eBook Download"},"blogid":"72892858","content":"<div id=\"iframeContent\">\n<h3>Book Description<\/h3>\n<p>Build and integrate Accumulo clusters with various cloud platforms<\/p>\n<p><b>Overview<\/b><\/p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux<\/li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms<\/li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease<\/li>\n<\/ul>\n<p><b>In Detail<\/b><\/p>\n<p>Accumulo is a sorted and distributed key\/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google\u2019s BigTable design and is built on top of Apache Had
 oop, Zookeeper, and Thrift.<\/p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabytes of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.<\/p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems \u2013 Hadoop, ZooKeeper, and Accumulo \u2013 and configuring, monitoring, and securing them.<\/p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.<\/p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo
  cell-level security to secure your data.<\/p>\n<p><b>What you will learn from this book<\/b><\/p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo<\/li>\n<li>Monitor clusters \u2013 both performance and application logs<\/li>\n<li>Secure your data in Accumulo<\/li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance<\/li>\n<li>Integrate to various cloud platforms<\/li>\n<li>Use the Accumulo command-line shell<\/li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs<\/li>\n<li>Understand what tools are needed to optimize Accumulo performance<\/li>\n<\/ul>\n<p><b>Approach<\/b><\/p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.<\/p>\n<p><b>Who this book is written for<\/b><\/p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how 
 to use Accumulo. It\u2019s assumed that you have an understanding of how Hadoop works, both HDFS and the Map\/Reduce. No prior knowledge of ZooKeeper is assumed.<\/p>\n<h3>Book Details<\/h3>\n<div>\n<ul>\n<li><b>Paperback:<\/b> 120 pages<\/li>\n<li><b>Publisher:<\/b> Packt Publishing (October 16, 2013)<\/li>\n<li><b>Language:<\/b> English<\/li>\n<li><b>ISBN-10:<\/b> 1783285990<\/li>\n<li><b>ISBN-13:<\/b> 978-1783285990<\/li>\n<\/ul>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","domain":"www.joinebook.com","guid":"7e2ed225f2be5b7a8f3ee6d7defa89b3","id":"1e3b38071f03a400e072d82a1cb03a68","lang":"en","link":"http:\/\/www.joinebook.com\/apache-accumulo-for-developers\/","parseddate":"Tue, 25 Mar 2014 14:15:02 +0000","postid":"0b3e093d-4e84-42ca-bcb1-eb140b008ff6","title":"Apache Accumulo for Developers","type":"post"},"interaction":{"author":{"name":"admin"},"content":"<div id=\"iframeContent\">\n<h3>Book Description<\/h3>\n<p>Build and integrat
 e Accumulo clusters with various cloud platforms<\/p>\n<p><b>Overview<\/b><\/p>\n<ul>\n<li>Shows you how to build Accumulo, Hadoop, and ZooKeeper clusters from scratch on both Windows and Linux<\/li>\n<li>Allows you to get hands-on knowledge about how to run Accumulo on Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure Cloud platforms<\/li>\n<li>Packed with practical examples to enable you to manipulate Accumulo with ease<\/li>\n<\/ul>\n<p><b>In Detail<\/b><\/p>\n<p>Accumulo is a sorted and distributed key\/value store designed to handle large amounts of data. Being highly robust and scalable, its performance makes it ideal for real-time data storage. Apache Accumulo is based on Google\u2019s BigTable design and is built on top of Apache Hadoop, Zookeeper, and Thrift.<\/p>\n<p>Apache Accumulo for Developers is your guide to building an Accumulo cluster both as a single-node and multi-node, on-site and in the cloud. Accumulo has been proven to be able to handle petabyte
 s of data, with cell-level security, and real-time analyses so this is your step by step guide in taking full advantage of this power.<\/p>\n<p>Apache Accumulo for Developers looks at the process of setting up three systems \u2013 Hadoop, ZooKeeper, and Accumulo \u2013 and configuring, monitoring, and securing them.<\/p>\n<p>You will learn to connect Accumulo to both Hadoop and ZooKeeper. You will also learn how to monitor the cluster (single-node or multi-node) to find any performance bottlenecks, and then integrate to Amazon EC2, Google Cloud Platform, Rackspace, and Windows Azure. When integrating with these cloud platforms, we will focus on scripting as well.<\/p>\n<p>You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data.<\/p>\n<p><b>What you will learn from this book<\/b><\/p>\n<ul>\n<li>Set up Hadoop, ZooKeeper, and Accumulo<\/li>\n<li>Monitor clusters \u2013 both performance and application logs<\/li>\n<li
 >Secure your data in Accumulo<\/li>\n<li>Optimize Hadoop, ZooKeeper, and Accumulo performance<\/li>\n<li>Integrate to various cloud platforms<\/li>\n<li>Use the Accumulo command-line shell<\/li>\n<li>Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs<\/li>\n<li>Understand what tools are needed to optimize Accumulo performance<\/li>\n<\/ul>\n<p><b>Approach<\/b><\/p>\n<p>The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.<\/p>\n<p><b>Who this book is written for<\/b><\/p>\n<p>This book is great for developers new to Accumulo, who are looking to get a good grounding in how to use Accumulo. It\u2019s assumed that you have an understanding of how Hadoop works, both HDFS and the Map\/Reduce. No prior knowledge of ZooKeeper is assumed.<\/p>\n<h3>Book Details<\/h3>\n<div>\n<ul>\n<li><b>Paperback:<\/b> 120 
 pages<\/li>\n<li><b>Publisher:<\/b> Packt Publishing (October 16, 2013)<\/li>\n<li><b>Language:<\/b> English<\/li>\n<li><b>ISBN-10:<\/b> 1783285990<\/li>\n<li><b>ISBN-13:<\/b> 978-1783285990<\/li>\n<\/ul>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 18:16:40 +0000","id":"1e3b38071f03a400e072d82a1cb03a68","link":"http:\/\/www.joinebook.com\/apache-accumulo-for-developers\/","schema":{"version":3},"subtype":"post","title":"Apache Accumulo for Developers","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Apache Accumulo","sentiment":35,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examp
 les","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"ZooKeeper","sentiment":22,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["various cloud platforms Overview","cell-level security","tutorial-based approach","command-line shell","performance Approach","real-time data storage","real-time analyses","full advantage","step guide","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","monitoring tools","good grounding","performance bottlenecks"]},{"name":"Windows","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes":["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust"]},{"name":"Linux","sentiment":10,"confident":1,"label":"Product","evidence":5,"type":"Product","about":1,"themes"
 :["various cloud platforms Overview","real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust"]},{"name":"Amazon.com","sentiment":7,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["real-time data storage","Accumulo clusters","ZooKeeper clusters","hands-on knowledge","practical examples","value store","highly robust","performance bottlenecks","cloud platforms","monitoring tools","cell-level security"]},{"name":"Google","sentiment":4,"confident":1,"label":"Company","evidence":5,"type":"Company","about":0,"themes":["real-time data storage","highly robust"]},{"name":"October 16, 2013","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0,"themes":["Book Details Paperback","prior knowledge"]}],"sentiment":2,"topics":[{"name":"Software and Internet","score":0.50457036495209,"additional":"Apache Accumulo for Developers looks at the process of settin
 g up three systems \u2013 Hadoop, ZooKeeper, and Accumulo \u2013 and configuring, monitoring, and securing them. You will also learn to troubleshoot clusters with monitoring tools, and use Accumulo cell-level security to secure your data. What you will learn from this book Set up Hadoop, ZooKeeper, and Accumulo Monitor clusters \u2013 both performance and application logs Secure your data in Accumulo Optimize Hadoop, ZooKeeper, and Accumulo performance Integrate to various cloud platforms Use the Accumulo command-line shell Employ Ganglina to monitor the cluster and Graylog2 to monitor application logs Understand what tools are needed to optimize Accumulo performance Approach The book will have a tutorial-based approach that will show the readers how to start from scratch with building an Accumulo cluster and learning how to monitor the system and implement aspects such as security.","hits":0}]},"title":{"sentiment":0,"topics":[{"name":"Software and Internet","score":0.5521121621131
 9,"additional":"Apache Accumulo for Developers","hits":0}]}}}
-{"blog":{"blog":{"link":"http:\/\/ibm.ulitzer.com\/","title":"Latest News from IBM News on Ulitzer"},"blogid":"71106617","content":"<p><span class=\"xn-location\">FOREST HILL, Md.<\/span>, <span class=\"xn-chron\">March 25, 2014<\/span> \/PRNewswire\/ --\u00A0The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.<\/p><p><a href=\"http:\/\/ibm.ulitzer.com\/node\/3026607\" target=\"_blank\">read more<\/a><\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","domain":"ibm.ulitzer.com","guid":"3032fcc90b1d53e13ec24b46bf6ad3a3","id":"1e3b41519b74a180e072fbcdee35ca7e","lang":"en","link":"http:\/\/ibm.ulitzer.com\/node\/3026607","parseddate":"Tue, 25 Mar 2014 14:51:38 +0000","postid":"6eeaec5e-861b-4640-8276-f7ab8b8a3523","title":"The Apache Software Foundation Ann
 ounces Apache\u2122 CloudStack\u2122 v4.3","type":"post"},"interaction":{"content":"<p><span class=\"xn-location\">FOREST HILL, Md.<\/span>, <span class=\"xn-chron\">March 25, 2014<\/span> \/PRNewswire\/ --\u00A0The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of more than 170 Open Source projects and initiatives, today announced Apache CloudStack v4.3, the latest feature release of the CloudStack cloud orchestration platform.<\/p><p><a href=\"http:\/\/ibm.ulitzer.com\/node\/3026607\" target=\"_blank\">read more<\/a><\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 12:00:47 +0000","id":"1e3b41519b74a180e072fbcdee35ca7e","link":"http:\/\/ibm.ulitzer.com\/node\/3026607","schema":{"version":3},"subtype":"post","title":"The Apache Software Foundation Announces Apache\u2122 CloudStack\u2122 v4.3","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"FOREST HILL, Md.","sen
 timent":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1,"themes":["latest feature release","all-volunteer developers"]},{"name":"March 25, 2014","sentiment":-1,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["latest feature release","all-volunteer developers"]}],"sentiment":-1},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"Apache"},"comment":{"id":"650dba80c6b04a2124e0075cff28af4b"},"content":"<p>C&rsquo;est triste pour ces hommes sinc\u00E8res et lucides, amoureux de la v\u00E9rit\u00E9<br \/>\nLes int\u00E9gristes n&rsquo;aiment pas la v\u00E9rit\u00E9 tant ils sont aveugl\u00E9s par LEUR V\u00C9RIT\u00C9 qu&rsquo;ils veulent nous imposer par la force et par la mort.<br \/>\nDans toutes les religions l&rsquo;int\u00E9grisme est dangereux.<br \/>\nNous avons excell\u00E9 dans l&rsquo;inquisition en tant que chr\u00E9tiens .<br \/>\nMaintenant nous subissons \u00E0 notre tour les exc\u00E8s de gens \u00E9lev\u00E9s dans de fausses id\u00E9es moyen\u00E2geuses.<br \/>\nJe souhaite de tout mon c\u0153ur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les prot\u00E8ge .<br \/>\nIls sont peut \u00EAtre sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la v\u00E9rit\u00E9 et pratiquant le bien e
 st agr\u00E9able \u00E0 ses yeux.Et que sa main ne sera pas assez courte pour les sauver.<\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","domain":"leblogdrzz.over-blog.com","id":"1e3b4580ed1da080e072338f47a54b24","lang":"fr","link":"http:\/\/www.dreuz.info\/2014\/03\/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens\/","parseddate":"Tue, 25 Mar 2014 20:22:24 +0000","post":{"created_at":"Tue, 25 Mar 2014 09:46:53 +0000","guid":"287825f6c2bd7e5f1a5615286d028e56","link":"http:\/\/www.dreuz.info\/2014\/03\/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens\/","title":"Salem Ben Ammar, auteur chez Dreuz, est menac\u00E9 de mort par des islamistes tunisiens"},"source":{"crawled":"Tue, 25 Mar 2014 11:43:43 +0000","guid":"5c3074412dceeb8b550f4f8467bdce0d","id":"48710360","language":"fr","link":"leblogdrzz.over-blog.com","title":"Dreuz.info","type":"blogs"},"title":"Par : Apache","type":"comment"},"inte
 raction":{"author":{"name":"Apache"},"content":"<p>C&rsquo;est triste pour ces hommes sinc\u00E8res et lucides, amoureux de la v\u00E9rit\u00E9<br \/>\nLes int\u00E9gristes n&rsquo;aiment pas la v\u00E9rit\u00E9 tant ils sont aveugl\u00E9s par LEUR V\u00C9RIT\u00C9 qu&rsquo;ils veulent nous imposer par la force et par la mort.<br \/>\nDans toutes les religions l&rsquo;int\u00E9grisme est dangereux.<br \/>\nNous avons excell\u00E9 dans l&rsquo;inquisition en tant que chr\u00E9tiens .<br \/>\nMaintenant nous subissons \u00E0 notre tour les exc\u00E8s de gens \u00E9lev\u00E9s dans de fausses id\u00E9es moyen\u00E2geuses.<br \/>\nJe souhaite de tout mon c\u0153ur et je prie pour que notre Dieu, le seul et unique, se souvienne de ces hommes courageux et les prot\u00E8ge .<br \/>\nIls sont peut \u00EAtre sans le savoir des instruments dans ses mains pour montrer aux humains que tout homme aimant la v\u00E9rit\u00E9 et pratiquant le bien est agr\u00E9able \u00E0 ses yeux.Et que sa main ne 
 sera pas assez courte pour les sauver.<\/p>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:00:05 +0000","id":"1e3b4580ed1da080e072338f47a54b24","link":"http:\/\/www.dreuz.info\/2014\/03\/salem-ben-ammar-auteur-chez-dreuz-est-menace-de-mort-par-des-islamistes-tunisiens\/","schema":{"version":3},"subtype":"comment","title":"Par : Apache","type":"blog"},"language":{"confidence":99,"tag":"fr","tag_extended":"fr"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
-{"blog":{"author":{"name":"Tip Meister"},"blog":{"link":"http:\/\/www.lamp-tips.com\/","title":"Linux Apache MySQL PHP Tips"},"blogid":"71186799","content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","domain":"www.lamp-tips.com","guid":"eb93f438e4191fd92fc1664a71c30a83","id":"1e3b4799c71ea800e07243367e6972b4","lang":"en","link":"http:\/\/www.lamp-tips.com\/apache\/what-does-apache-camel-do\/","parseddate":"Wed, 26 Mar 2014 00:16:44 +0000","postid":"33815629-a87b-488f-9ca5-98c7359733d1","title":"What does Apache Camel do?","type":"post"},"interaction":{"author":{"name":"Tip Meister"},"content":"please help! \nexplain in SIMPLE terms","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:00:16 +0000","id":"1e3b4799c71ea800e07243367e6972b4","link":"http:\/\/www.lamp-tips.com\/apache\/what-does-apache-camel-do\/","received_at":4743641192805852774,"schema":{"version":3},"subtype":"post","title":"What does Apache Camel do?"
 ,"type":"blog"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"blog":{"author":{"name":"Sv\u011Bt knihy"},"blog":{"link":"http:\/\/ceske-knizky.cz\/","title":"\u010Cesk\u00E9 kn\u00ED\u017Eky"},"blogid":"71098056","content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech slu\u017Eby v britsk\u00E9 arm\u00E1d\u011B pl\u00E1nuje Ed Macy odchod do v\u00FDslu\u017Eby. Ale tento pl\u00E1n odkl\u00E1d\u00E1, proto\u017Ee souhlasil s je\u0161t\u011B jedn\u00EDm turnusem v ji\u017En\u00EDm Afgh\u00E1nist\u00E1nu jako zbra\u0148ov\u00FD specialista, l\u00E9taj\u00EDc\u00ED na \u00FApln\u011B nov\u00E9m vrtuln\u00EDku Apache. Je to nejsmrtonosn\u011Bj\u0161\u00ED a technicky nejvysp\u011Blej\u0161\u00ED vrtuln\u00EDk na sv\u011Bt\u011B. Let\u011Bt s vrtuln\u00EDkem Apache do boje je jako hr\u00E1t sou\u010Dasn\u011B na Xboxu, PlayStationu a velmistrovskou partii \u0161achu \u2013 a p\u0159itom se v\u00E9zt na nejv\u011Bt\u0161\u00ED horsk\u00E9 dr\u00E1ze v Disneylandu. Podle zji\u0161t\u011Bn\u00ED americk\u
 00FDch studi\u00ED dok\u00E1\u017Ee jen mal\u00E9 procento lidsk\u00FDch mozk\u016F soub\u011B\u017En\u011B zvl\u00E1dnout v\u0161echny po\u017Eadovan\u00E9 \u010Dinnosti p\u0159i pilotov\u00E1n\u00ED tohoto letounu.\u2026A nejenom jednu nebo dv\u011B minuty, ale t\u0159i hodiny bez p\u0159est\u00E1vky. Pokud jste p\u0159ehl\u00E9dl jednu kl\u00ED\u010Dovou v\u011Bc, mohl jste okam\u017Eit\u011B zab\u00EDt sebe i sv\u00E9ho kopilota. Koncem roku 2006 byla Macyho letka Apache nasazena v nechvaln\u011B zn\u00E1m\u00E9 afgh\u00E1nsk\u00E9 provincii Hilmand, v drsn\u00E9 a nehostinn\u00E9 oblasti, m\u00EDstn\u00EDmi naz\u00FDvan\u00E9 Da\u0161t-e-Margo (Pou\u0161\u0165 smrti). Operace dostala n\u00E1zev Herrick. Posl\u00E1n\u00EDm Macyho a jeho letky Apache bylo bojovat spolu s mu\u017Ei na zemi a chr\u00E1nit je v\u0161emi nezbytn\u00FDmi prost\u0159edky. Kdy\u017E se jeden p\u0159\u00EDslu\u0161n\u00EDk n\u00E1mo\u0159n\u00ED p\u011Bchoty poh\u0159e\u0161oval v akci, Ed a jeho t\u00FD
 m byli jedinou nad\u011Bj\u00ED arm\u00E1dy na to, \u017Ee ho doprav\u00ED zp\u00E1tky \u017Eiv\u00E9ho. S voj\u00E1ky, p\u0159ipoutan\u00FDmi po obou stran\u00E1ch bitevn\u00EDch vrtuln\u00EDk\u016F musel p\u0159ist\u00E1t v srdci pevnosti Jugroom, t\u00E1lib\u00E1nsk\u00E9m op\u011Brn\u00E9m bod\u011B a postavit se tv\u00E1\u0159\u00ED v tv\u00E1\u0159 hord\u00E1m ne\u00FAprosn\u00E9ho nep\u0159\u00EDtele. N\u00E1sledoval dech berouc\u00ED pokus o z\u00E1chranu. Kniha Pilotem Apache, n\u011Bco mezi \u010Cern\u00FD jest\u0159\u00E1b sest\u0159elen a T\u011Bsn\u011B vedle, popisuje odv\u00E1\u017Enou misi, za ni\u017E byl Ed Macy jako prvn\u00ED pilot v historii britsk\u00E9ho letectva vyznamen\u00E1n velmi presti\u017En\u00EDm Vojensk\u00FDm k\u0159\u00ED\u017Eem. Pilotem Apache je p\u0159\u00EDb\u011Bh Macyho, story o odvaze, nebezpe\u010D\u00ED a kamar\u00E1dstv\u00ED, kterou p\u0159e\u010Dtete jedn\u00EDm dechem. Kniha je dopln\u011Bna situa\u010Dn\u00EDmi mapkami a barevnou obr
 azovou p\u0159\u00EDlohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelstv\u00ED: Omnibooks  Rok vyd\u00E1n\u00ED: 2012  Doporu\u010Den\u00E1 cena: 349  Po\u010Det stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je mo\u017En\u011B koupit v klasick\u00E9m internetov\u00E9m knihkupectv\u00ED Beletrie nebo modern\u00EDm internetov\u00E9m knihkupectv\u00ED U Mobi . Koupen\u00E9 knihy si m\u016F\u017Eete ulo\u017Eit do kabelky \u00A0\u010D\u00ED aktovky z internetov\u00E9ho obchodu www.purses-kabelky.cz \n \nDal\u0161\u00ED knihy:   \u010Ceskoslovensk\u00E1 lidov\u00E1 arm\u00E1da\u2026  Nejv\u011Bt\u0161\u00ED tajemn\u00E1 spiknut\u00ED (G\u2026  Krugo Bajkalka (Turek V\u00E1clav)  Report\u00E9rem na t\u0159ech kontinen\u2026  M\u016Fj \u017Eivot \u2013 Fascinuj\u00EDc\u00ED a in\u2026  Ilumin\u00E1ti (Makow Henri)  Pra\u017Esk\u00E9 katastrofy  Glob\u00E1ln\u00ED Minotaurus \u2013 Amerik\u2026  Mordcentr\u00E1la X (C\u00EDlek Roman)  V\u00FDbuch nad 
 tajgou (Jir\u00E1nek J\u2026  Radik\u00E1ln\u00ED pravice v N\u011Bmecku \u2026  Nepoko\u0159en\u00E1 (Val\u010Deva Kristiana)  Tenkr\u00E1t za prvn\u00ED republiky (\u2026  V\u011Bchi (Miln\u00EDky) (Ber\u010Fajev Ni\u2026  Belze, Sobibor, Treblinka (A\u2026","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","domain":"ceske-knizky.cz","guid":"f6d6c4a76240a3d4ef20ea2a75f80893","id":"1e3b4809fbcaa200e072eade39a77334","lang":"cs","link":"http:\/\/ceske-knizky.cz\/pilotem-apache-macy-ed-2\/","parseddate":"Wed, 26 Mar 2014 02:37:30 +0000","postid":"858cfa87-6b6a-49a8-aa1c-7bf5449976d8","title":"Pilotem Apache (Macy Ed)","type":"post"},"interaction":{"author":{"name":"Sv\u011Bt knihy"},"content":"Pilotem Apache (Macy Ed) \n \nAnotace Pilotem Apache (Macy Ed): \n \nPo dvaadvaceti letech slu\u017Eby v britsk\u00E9 arm\u00E1d\u011B pl\u00E1nuje Ed Macy odchod do v\u00FDslu\u017Eby. Ale tento pl\u00E1n odkl\u00E1d\u00E1, proto\u017Ee souhlasil s je\u0161t\u011B jedn\u00EDm 
 turnusem v ji\u017En\u00EDm Afgh\u00E1nist\u00E1nu jako zbra\u0148ov\u00FD specialista, l\u00E9taj\u00EDc\u00ED na \u00FApln\u011B nov\u00E9m vrtuln\u00EDku Apache. Je to nejsmrtonosn\u011Bj\u0161\u00ED a technicky nejvysp\u011Blej\u0161\u00ED vrtuln\u00EDk na sv\u011Bt\u011B. Let\u011Bt s vrtuln\u00EDkem Apache do boje je jako hr\u00E1t sou\u010Dasn\u011B na Xboxu, PlayStationu a velmistrovskou partii \u0161achu \u2013 a p\u0159itom se v\u00E9zt na nejv\u011Bt\u0161\u00ED horsk\u00E9 dr\u00E1ze v Disneylandu. Podle zji\u0161t\u011Bn\u00ED americk\u00FDch studi\u00ED dok\u00E1\u017Ee jen mal\u00E9 procento lidsk\u00FDch mozk\u016F soub\u011B\u017En\u011B zvl\u00E1dnout v\u0161echny po\u017Eadovan\u00E9 \u010Dinnosti p\u0159i pilotov\u00E1n\u00ED tohoto letounu.\u2026A nejenom jednu nebo dv\u011B minuty, ale t\u0159i hodiny bez p\u0159est\u00E1vky. Pokud jste p\u0159ehl\u00E9dl jednu kl\u00ED\u010Dovou v\u011Bc, mohl jste okam\u017Eit\u011B zab\u00EDt sebe i sv\u00E9ho kopilota. Konc
 em roku 2006 byla Macyho letka Apache nasazena v nechvaln\u011B zn\u00E1m\u00E9 afgh\u00E1nsk\u00E9 provincii Hilmand, v drsn\u00E9 a nehostinn\u00E9 oblasti, m\u00EDstn\u00EDmi naz\u00FDvan\u00E9 Da\u0161t-e-Margo (Pou\u0161\u0165 smrti). Operace dostala n\u00E1zev Herrick. Posl\u00E1n\u00EDm Macyho a jeho letky Apache bylo bojovat spolu s mu\u017Ei na zemi a chr\u00E1nit je v\u0161emi nezbytn\u00FDmi prost\u0159edky. Kdy\u017E se jeden p\u0159\u00EDslu\u0161n\u00EDk n\u00E1mo\u0159n\u00ED p\u011Bchoty poh\u0159e\u0161oval v akci, Ed a jeho t\u00FDm byli jedinou nad\u011Bj\u00ED arm\u00E1dy na to, \u017Ee ho doprav\u00ED zp\u00E1tky \u017Eiv\u00E9ho. S voj\u00E1ky, p\u0159ipoutan\u00FDmi po obou stran\u00E1ch bitevn\u00EDch vrtuln\u00EDk\u016F musel p\u0159ist\u00E1t v srdci pevnosti Jugroom, t\u00E1lib\u00E1nsk\u00E9m op\u011Brn\u00E9m bod\u011B a postavit se tv\u00E1\u0159\u00ED v tv\u00E1\u0159 hord\u00E1m ne\u00FAprosn\u00E9ho nep\u0159\u00EDtele. N\u00E1sledoval dech berouc\u0
 0ED pokus o z\u00E1chranu. Kniha Pilotem Apache, n\u011Bco mezi \u010Cern\u00FD jest\u0159\u00E1b sest\u0159elen a T\u011Bsn\u011B vedle, popisuje odv\u00E1\u017Enou misi, za ni\u017E byl Ed Macy jako prvn\u00ED pilot v historii britsk\u00E9ho letectva vyznamen\u00E1n velmi presti\u017En\u00EDm Vojensk\u00FDm k\u0159\u00ED\u017Eem. Pilotem Apache je p\u0159\u00EDb\u011Bh Macyho, story o odvaze, nebezpe\u010D\u00ED a kamar\u00E1dstv\u00ED, kterou p\u0159e\u010Dtete jedn\u00EDm dechem. Kniha je dopln\u011Bna situa\u010Dn\u00EDmi mapkami a barevnou obrazovou p\u0159\u00EDlohou \n \nInformace o Pilotem Apache (Macy Ed): \n  Nakladatelstv\u00ED: Omnibooks  Rok vyd\u00E1n\u00ED: 2012  Doporu\u010Den\u00E1 cena: 349  Po\u010Det stran: 320  Jazyk: CZE  EAN: 9788090523227   \nPilotem Apache (Macy Ed) je mo\u017En\u011B koupit v klasick\u00E9m internetov\u00E9m knihkupectv\u00ED Beletrie nebo modern\u00EDm internetov\u00E9m knihkupectv\u00ED U Mobi . Koupen\u00E9 knihy si m\u016F\u017Eete ulo
 \u017Eit do kabelky \u00A0\u010D\u00ED aktovky z internetov\u00E9ho obchodu www.purses-kabelky.cz \n \nDal\u0161\u00ED knihy:   \u010Ceskoslovensk\u00E1 lidov\u00E1 arm\u00E1da\u2026  Nejv\u011Bt\u0161\u00ED tajemn\u00E1 spiknut\u00ED (G\u2026  Krugo Bajkalka (Turek V\u00E1clav)  Report\u00E9rem na t\u0159ech kontinen\u2026  M\u016Fj \u017Eivot \u2013 Fascinuj\u00EDc\u00ED a in\u2026  Ilumin\u00E1ti (Makow Henri)  Pra\u017Esk\u00E9 katastrofy  Glob\u00E1ln\u00ED Minotaurus \u2013 Amerik\u2026  Mordcentr\u00E1la X (C\u00EDlek Roman)  V\u00FDbuch nad tajgou (Jir\u00E1nek J\u2026  Radik\u00E1ln\u00ED pravice v N\u011Bmecku \u2026  Nepoko\u0159en\u00E1 (Val\u010Deva Kristiana)  Tenkr\u00E1t za prvn\u00ED republiky (\u2026  V\u011Bchi (Miln\u00EDky) (Ber\u010Fajev Ni\u2026  Belze, Sobibor, Treblinka (A\u2026","contenttype":"html","created_at":"Wed, 26 Mar 2014 00:50:28 +0000","id":"1e3b4809fbcaa200e072eade39a77334","link":"http:\/\/ceske-knizky.cz\/pilotem-apache-macy-ed-2\/","schema":{"
 version":3},"subtype":"post","title":"Pilotem Apache (Macy Ed)","type":"blog"},"language":{"confidence":99,"tag":"cs","tag_extended":"cs"}}
-{"blog":{"author":{"name":"Benjamin D. Thomas"},"blog":{"link":"http:\/\/lxer.com\/","title":"LXer Linux News"},"blogid":"40458952","content":"Apache H

<TRUNCATED>

[44/45] git commit: Merge branch 'master' of github.com:apache/incubator-streams into DATASIFT_SERIALIZER_FIXES

Posted by mf...@apache.org.
Merge branch 'master' of github.com:apache/incubator-streams into DATASIFT_SERIALIZER_FIXES


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/7d9ee340
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/7d9ee340
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/7d9ee340

Branch: refs/heads/master
Commit: 7d9ee340c48d26468054956b9c45a6ede529d6e9
Parents: 9fdcd8a 7d6194d
Author: rebanks <re...@w2odigital.com>
Authored: Mon Jun 23 11:10:30 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Mon Jun 23 11:10:30 2014 -0500

----------------------------------------------------------------------
 .../streams-provider-datasift/pom.xml           |  14 ++-
 .../streams/datasift/csdl/DatasiftCsdlUtil.java | 114 +++++++++++++++++++
 .../processor/TwitterProfileProcessor.java      |  13 ++-
 .../streams/jackson/StreamsJacksonMapper.java   |   4 +-
 4 files changed, 136 insertions(+), 9 deletions(-)
----------------------------------------------------------------------



[08/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
new file mode 100644
index 0000000..4826a64
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/reddit_datasift_json.txt
@@ -0,0 +1,33 @@
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Centuron","name":"Centuron","username":"Centuron"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/i.imgur.com\/uUq0alG.jpg\" ><img src=\"http:\/\/c.thumbs.redditmedia.com\/2qmd7QCt4gxEpyeV.jpg\" width='70' height='45' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Wed, 26 Mar 2014 05:50:00 +0000","id":"1e3b4aa77e23a400e0729dfdaf3bde26","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/21e6nl\/apache_light_show\/21e6nl","schema":{"version":3},"subtype":"thread","title":"Apache light show","type":"reddit"},"reddit":{"anchor":"21e6nl","author":{"link":"http:\/\/www.reddit.com\/user\/Centuron","name":"Centuron","username":"Centuron"},"boardname":"pics","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/i.imgur.com\/uUq0alG.jpg\" ><img src=\"http:\/\/c.thumbs.redditmedia.com\/2qmd7QCt4gxEpyeV.jpg\" width='70' height='45' alt=\"\"\/><\/a>","contenttype":"html","coun
 trycode":"US","crawled":"Wed, 26 Mar 2014 06:19:01 +0000","created_at":"Wed, 26 Mar 2014 05:50:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3b4aa77e23a400e0729dfdaf3bde26","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/21e6nl\/apache_light_show\/21e6nl","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/21e6nl\/apache_light_show\/?limit=500","threadid":"21e6nl","threadstarter":1,"title":"Apache light show","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/42aross","name":"42aross","username":"42aross"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 20:10:00 +0000","id":"1e3b9d99a5bdac00e072b3805c850ab2","link":"http:\/\/www.reddit.com\/r\/technology\/comments\/21yb2i\/apache_subversion_to_migrate_to_git_apparently\/21yb2i","received_at":4743646470850625300,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git (apparently not a joke!)","type":"reddit"},"reddit":{"anchor":"21yb2i","author":{"link":"http:\/\/www.reddit.com\/user\/42aross","name":"42aross","username":"42aross"},"boardname":"technology","categories":"General Talk","content":"","contenttype":"html","countrycode":"US","crawled":"Wed, 09 Apr 2014 09:54:04 +0000","created_at":"Tue, 01 Apr 2014 20:10:00 +0000","domain":"www.reddit.com","forumid":"4c065aff1f","forumname":"Reddit: Technology Forum","forumurl":"http:\/\/www.reddit.com\/r\/technology\/","id":"1e3b9d9
 9a5bdac00e072b3805c850ab2","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/technology\/comments\/21yb2i\/apache_subversion_to_migrate_to_git_apparently\/21yb2i","siteid":"4c065aff1a","thread":"http:\/\/www.reddit.com\/r\/technology\/comments\/21yb2i\/apache_subversion_to_migrate_to_git_apparently\/?limit=500","threadid":"21yb2i","threadstarter":1,"title":"Apache Subversion to Migrate to Git (apparently not a joke!)","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:22:00 +0000","id":"1e3b9ec0b0bfa400e072ae39f85ae494","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\
 n<\/div>","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Tue, 01 Apr 2014 22:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ec0b0bfa400e072ae39f85ae494","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e07233e0551b7594","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ed4ce96aa00e07233e0551b7594","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/program
 ming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e07286324c45ea64","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","received_at":4743645155923598298,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sat, 05 Apr 2014 17:00:26 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ed4ce96aa00e07286324c45ea64","language":"Unknown","link":"h
 ttp:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"content":"","contenttype":"html","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","id":"1e3b9ed4ce96aa00e072dd432713a948","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","received_at":4743644755860130680,"schema":{"version":3},"subtype":"thread","title":"Apache Subversion to Migrate to Git","type":"reddit"},"reddit":{"anchor":"21yq2g","author":{"link":"http:\/\/www.reddit.com\/user\/xvirk","name":"xvirk","username":"xvirk"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Tue, 01 Apr 2014 22:31:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3b9ed4ce96aa00e072dd432713a948","language":"Unknown","link":"h
 ttp:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/21yq2g","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","threadstarter":1,"title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","id":"1e3ba1711fc2ac00e07219fb646a291e","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghw4m5","author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycod
 e":"US","crawled":"Thu, 10 Apr 2014 09:26:06 +0000","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba1711fc2ac00e07219fb646a291e","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","id":"1e3ba1711fc2ac00e072f9e506a4555a","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghw4m5","author":{"link":"http:\/\/www.reddit.com\/user\/vaibhavsagar","name":"vaibhavsagar","username":"vaibhavsagar"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Wait, this isn&#39;t a joke?<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycod
 e":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Wed, 02 Apr 2014 03:30:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba1711fc2ac00e072f9e506a4555a","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghw4m5","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","id":"1e3ba26b76acac00e072261af18a8cec","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","received_at":4743644755860130261,"schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had
  me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Fri, 04 Apr 2014 16:21:11 +0000","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba26b76acac00e072261af18a8cec","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","id":"1e3ba26b76acac00e07261ab38b9b7b8","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","schema":{"version":3},"subtype":"post","title":"Apache Subversion to Migrate to Git","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cghyee0","author":{"link":"http:\/\/www.reddit.com\/user\/html6dev","name":"html6dev","username":"html6dev"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>It turned out to be a joke. Rofl. They had me going all day. <\/p>\n<\/div>\
 n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 05 Apr 2014 17:00:26 +0000","created_at":"Wed, 02 Apr 2014 05:22:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3ba26b76acac00e07261ab38b9b7b8","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/cghyee0","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/21yq2g\/apache_subversion_to_migrate_to_git\/?limit=500","threadid":"21yq2g","title":"Apache Subversion to Migrate to Git","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":4},"title":{"sentiment":0}}}
+{"interaction":{"content":"submitted by <a href=\"http:\/\/www.reddit.com\/user\/klimov\"> klimov <\/a> <br\/> <a href=\"https:\/\/news.ycombinator.com\/item?id=7532059\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 05 Apr 2014 12:05:44 +0000","id":"1e3bcba9d491ac00e072c774b723bdb8","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/","received_at":4743645010304135122,"schema":{"version":3},"subtype":"post","title":"Apache Wave and Google Wave discussion on HN","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"blog":{"link":"http:\/\/programming.reddit.com\/","title":"programming"},"blogid":"50213831","content":"submitted by <a href=\"http:\/\/www.reddit.com\/user\/klimov\"> klimov <\/a> <br\/> <a href=\"https:\/\/news.ycombinator.com\/item?id=75
 32059\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 05 Apr 2014 12:05:44 +0000","domain":"programming.reddit.com","guid":"3033dc75c40c532e4f82182611b563e7","id":"1e3bcba9d491ac00e072c774b723bdb8","lang":"en","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/229lax\/apache_wave_and_google_wave_discussion_on_hn\/","parseddate":"Sat, 05 Apr 2014 13:10:11 +0000","postid":"573ff17d-71f2-4868-bb81-1edb1280cacd","title":"Apache Wave and Google Wave discussion on HN","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Alah2","name":"Alah2","username":"Alah2"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/imgur.com\/gallery\/VA7mM\" ><img src=\"http:\/\/e.thumbs.redditmedia.com\/i91u8uoHDrL2YjaX.jpg\" width='70' height='52' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Tue, 08 Apr 2014 09:58:00 +0000","id":"1e3bf04446cca400e072e562dc4828ea","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/22i6rx","received_at":4743646143724412679,"schema":{"version":3},"subtype":"thread","title":"Apache forced landing in a Scottish field","type":"reddit"},"reddit":{"anchor":"22i6rx","author":{"link":"http:\/\/www.reddit.com\/user\/Alah2","name":"Alah2","username":"Alah2"},"boardname":"pics","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/imgur.com\/gallery\/VA7mM\" ><img src=\"http:\/\/e.thumbs.redditmedia.com\/i91u8uoHDrL2YjaX.jpg\" w
 idth='70' height='52' alt=\"\"\/><\/a>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 09:58:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf04446cca400e072e562dc4828ea","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/22i6rx","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","threadstarter":1,"title":"Apache forced landing in a Scottish field","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/djgump35","name":"djgump35","username":"djgump35"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Give me a cargobob, and I will get it back without a scratch. Really easy mission. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 10:49:00 +0000","id":"1e3bf0b6453ba600e072b3afe47c705e","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24qh","received_at":4743646143724751579,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn24qh","author":{"link":"http:\/\/www.reddit.com\/user\/djgump35","name":"djgump35","username":"djgump35"},"boardname":"pics","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Give me a cargobob
 , and I will get it back without a scratch. Really easy mission. <\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 10:49:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf0b6453ba600e072b3afe47c705e","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24qh","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"sentiment":8},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}
 }}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/The_Fiddler1979","name":"The_Fiddler1979","username":"The_Fiddler1979"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Upvote for comment #7<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 10:50:00 +0000","id":"1e3bf0b8816fac00e072d381797a08c6","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24wh","received_at":4743646143724755354,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn24wh","author":{"link":"http:\/\/www.reddit.com\/user\/The_Fiddler1979","name":"The_Fiddler1979","username":"The_Fiddler1979"},"boardname":"pics","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Upvote for comment #7<\/p>\n<\/div>\n<
 \/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 10:50:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf0b8816fac00e072d381797a08c6","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn24wh","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Jessie_James","name":"Jessie_James","username":"Jessie_James"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><blockquote>\n<p>Although if it was me I would just blow it up with some C4 and it should respawn back at base. <\/p>\n<\/blockquote>\n\n<p>Upvoted.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 15:35:00 +0000","id":"1e3bf33587beaa00e07289f56dad109e","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn7n43","received_at":4743646143724559899,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn7n43","author":{"link":"http:\/\/www.reddit.com\/user\/Jessie_James","name":"Jessie_James","username":"Jessie_James"},"boardname":"pics","categories":"General Talk","content":
 "<div class=\"usertext-body may-blank-within\"><div class=\"md\"><blockquote>\n<p>Although if it was me I would just blow it up with some C4 and it should respawn back at base. <\/p>\n<\/blockquote>\n\n<p>Upvoted.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 15:35:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf33587beaa00e07289f56dad109e","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn7n43","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache"
 ,"sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/wzl46","name":"wzl46","username":"wzl46"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>I think it&#39;s funny how cool it is for the locals when a helicopter performs an emergency landing somewhere, and how much of a pain it is for the aircrews.\nMy flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles.  We relayed via aircraft radios our position and maintenance issue to our home unit.  We had to sleep in the field overnight with no food, and only warm water to drink. \nThe next day when our maintenance crew arrived, the local newspaper got word about us, and they showed up with a bunch of local residents.  A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.<\/p>\n<\/div>\n
 <\/div>","contenttype":"html","created_at":"Tue, 08 Apr 2014 16:05:00 +0000","id":"1e3bf37895e1ae00e0724e0cd821d134","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn8j65","received_at":4743646143724760387,"schema":{"version":3},"subtype":"post","title":"Apache forced landing in a Scottish field","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgn8j65","author":{"link":"http:\/\/www.reddit.com\/user\/wzl46","name":"wzl46","username":"wzl46"},"boardname":"pics","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>I think it&#39;s funny how cool it is for the locals when a helicopter performs an emergency landing somewhere, and how much of a pain it is for the aircrews.\nMy flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone
  reception, and no occupied houses within a couple of miles.  We relayed via aircraft radios our position and maintenance issue to our home unit.  We had to sleep in the field overnight with no food, and only warm water to drink. \nThe next day when our maintenance crew arrived, the local newspaper got word about us, and they showed up with a bunch of local residents.  A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 08 Apr 2014 12:13:36 +0000","created_at":"Tue, 08 Apr 2014 16:05:00 +0000","domain":"www.reddit.com","forumid":"4ad4294119","forumname":"Pictures and Images Forum","forumurl":"http:\/\/www.reddit.com\/r\/pics\/","id":"1e3bf37895e1ae00e0724e0cd821d134","language":"English","link":"http:\/\/www.reddit.com\/r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/cgn8j65","siteid":"4ad429410","thread":"http:\/\/www.reddit.com\
 /r\/pics\/comments\/22i6rx\/apache_forced_landing_in_a_scottish_field\/?limit=500","threadid":"22i6rx","title":"Apache forced landing in a Scottish field","topics":"Social","type":"post"},"salience":{"content":{"entities":[{"name":"Van Buren, Missouri","sentiment":0,"confident":1,"label":"Place","evidence":1,"type":"Place","about":0,"themes":["ass maintenance issue","local newspaper","local residents","maintenance crew"]}],"sentiment":0,"topics":[{"name":"Aviation","score":0.47797566652298,"additional":"My flight control hydraulics went out on a cross country flight a few years ago, and we had to land in an open field in the middle of nowhere with no cell phone reception, and no occupied houses within a couple of miles. We relayed via aircraft radios our position and maintenance issue to our home unit. A pain in the ass maintenance issue for us turned into an airshow for the locals of Van Buren, Missouri.","hits":0}]},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1
 ,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["Scottish field","forced landing"]}],"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Manuzhai","name":"Manuzhai","username":"Manuzhai"},"content":"","contenttype":"html","created_at":"Wed, 09 Apr 2014 17:06:00 +0000","id":"1e3c009394f8ac00e072753fa3e27f6c","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22mcl3\/apache_couchdb_151_released_security_release\/22mcl3","schema":{"version":3},"subtype":"thread","title":"Apache CouchDB 1.5.1 Released (security release)","type":"reddit"},"reddit":{"anchor":"22mcl3","author":{"link":"http:\/\/www.reddit.com\/user\/Manuzhai","name":"Manuzhai","username":"Manuzhai"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Thu, 10 Apr 2014 01:58:52 +0000","created_at":"Wed, 09 Apr 2014 17:06:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3c009394f8ac00e072753fa3e27f6c","language":"Unknown","li
 nk":"http:\/\/www.reddit.com\/r\/programming\/comments\/22mcl3\/apache_couchdb_151_released_security_release\/22mcl3","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22mcl3\/apache_couchdb_151_released_security_release\/?limit=500","threadid":"22mcl3","threadstarter":1,"title":"Apache CouchDB 1.5.1 Released (security release)","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/en.wikipedia.org\/wiki\/Apache_(dance)\" ><img src=\"http:\/\/a.thumbs.redditmedia.com\/jZ2j2jvyZtsBMON0.jpg\" width='70' height='70' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Wed, 09 Apr 2014 19:44:00 +0000","id":"1e3c01f4bd4ca000e07220cb4a1e9cf6","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/22mrzd","schema":{"version":3},"subtype":"thread","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"reddit":{"anchor":"22mrzd","author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"boardname":"todayilearned","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"h
 ttp:\/\/en.wikipedia.org\/wiki\/Apache_(dance)\" ><img src=\"http:\/\/a.thumbs.redditmedia.com\/jZ2j2jvyZtsBMON0.jpg\" width='70' height='70' alt=\"\"\/><\/a>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 19:44:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c01f4bd4ca000e07220cb4a1e9cf6","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/22mrzd","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","threadstarter":1,"title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p><a href=\"http:\/\/m.youtube.com\/watch?v=s48wDOalMLw\">Those French are nuts<\/a><\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 19:48:00 +0000","id":"1e3c01fdae1da800e072988cbc223a5c","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgobnk5","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgobnk5","author":{"link":"http:\/\/www.reddit.com\/user\/gerryhanes","name":"gerryhanes","username":"gerryhanes"},"boardname":"todayilearned","categories":"General Talk","content":"<div class
 =\"usertext-body may-blank-within\"><div class=\"md\"><p><a href=\"http:\/\/m.youtube.com\/watch?v=s48wDOalMLw\">Those French are nuts<\/a><\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 19:48:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c01fdae1da800e072988cbc223a5c","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgobnk5","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title
 ":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/sophanisba","name":"sophanisba","username":"sophanisba"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well, that was disturbing. <\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 20:04:00 +0000","id":"1e3c02217163a800e072e6ecad99957c","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc5zu","received_at":4743647598518180879,"schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgoc5zu","author":{"link":"http:\/\/www.reddit.com\/user\/sophanisba","name":"sophanisba","username":"sophanisba"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-
 blank-within\"><div class=\"md\"><p>Well, that was disturbing. <\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 20:04:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c02217163a800e072e6ecad99957c","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc5zu","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":-4},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Compan
 y","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/StantonMD","name":"StantonMD","username":"StantonMD"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Here is a version done in the movie Can Can (1960), it&#39;s funny.<\/p>\n\n<p><a href=\"http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html\" rel=\"nofollow\">http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html<\/a><\/p>\n\n<p>Thanks for mentioning this, I had totally forgotten about it until now<\/p>\n\n<p>Edit: to fix link problem.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 20:07:00 +0000","id":"1e3c02282600aa00e0727d489e1ea86e","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc9p2","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pi
 mp beating up a prostitute","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 12 Apr 2014 16:48:18 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"keywords":[["Cole Porter","Frank Sinatra","Maurice Chevalier","Juliet Prowse","Louis Jourdan","Shirley MacLaine","Marcel Dalio","Leon Belasco","Nestor Paiva","John A. Neris","Walter Lang","Hermes Pan","Michael Kidd","William H. Danielsk Dorothy Kingsley","Charles Lederer","Jack Cummings","Eugene Borden","Abe Burrows","Ambrogio Malerba","Saul Chaplin"]],"lang":["en-gb"],"opengraph":[{"site_name":"Turner Classic Movies","type":"movie","description":"The tune is a Cole Porter composition from the original Broadway show, Shirley MacLaine as Paris entertainer Simone, astonishing her guest (Louis Jourdan), an extended, athletic performance choreographed by Hermes Pan, from Can-Can, 1960.","url":"http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-C
 lip-Apache-Dance.html","title":"Can-Can (1960) -- (Movie Clip) Apache Dance","image":"http:\/\/i.cdn.turner.com\/v5cache\/TCM\/Images\/Dynamic\/i193\/cancan60_apachedance_vd_120x60_021320130507.jpg"}]},"normalized_url":["http:\/\/tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html"],"retweet_count":[0],"title":["Can-Can (1960) -- (Movie Clip) Apache Dance"],"url":["http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html"]},"reddit":{"anchor":"cgoc9p2","author":{"link":"http:\/\/www.reddit.com\/user\/StantonMD","name":"StantonMD","username":"StantonMD"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Here is a version done in the movie Can Can (1960), it&#39;s funny.<\/p>\n\n<p><a href=\"http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html\" rel=\"nofollow\">http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-
 Clip-Apache-Dance.html<\/a><\/p>\n\n<p>Thanks for mentioning this, I had totally forgotten about it until now<\/p>\n\n<p>Edit: to fix link problem.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 20:07:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c02282600aa00e0727d489e1ea86e","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoc9p2","links":["http:\/\/www.tcm.com\/mediaroom\/video\/580545\/Can-Can-Movie-Clip-Apache-Dance.html"],"siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pi
 mp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/littlegreycloud","name":"littlegreycloud","username":"littlegreycloud"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>And <a href=\"https:\/\/www.youtube.com\/watch?v=yTCDVfMz15M\" rel=\"nofollow\">here&#39;s<\/a> the 2012 version.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Wed, 09 Apr 2014 20:57:00 +0000","id":"1e3c0297e83ba600e072f8de81c1f326","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoduk3","received_at":4743647598518180879,"schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgoduk3","author":{"link":"http:\/\/www.reddit.com\/user\/littlegreycloud","name":"littlegreycloud","username":"
 littlegreycloud"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>And <a href=\"https:\/\/www.youtube.com\/watch?v=yTCDVfMz15M\" rel=\"nofollow\">here&#39;s<\/a> the 2012 version.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Wed, 09 Apr 2014 20:57:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c0297e83ba600e072f8de81c1f326","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoduk3","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, sai
 d to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/FAPSLOCK","name":"FAPSLOCK","username":"FAPSLOCK"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>European men are so passionate.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 01:43:00 +0000","id":"1e3c05172abeaa00e0726e6b050927a4","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgolnhf","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgolnhf","author":{"link":"http:\/\/www.reddit.com\/user\/FAPSLOCK","name":"FAPSLOCK","username":"FAPSLOCK"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Europe
 an men are so passionate.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Thu, 10 Apr 2014 01:43:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c05172abeaa00e0726e6b050927a4","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgolnhf","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":9},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about
 ":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/javakah","name":"javakah","username":"javakah"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Your link is wrong.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 02:40:00 +0000","id":"1e3c05969268a000e0725d8fe166e016","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgon9z2","received_at":4743647598518180879,"schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":95,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgon9z2","author":{"link":"http:\/\/www.reddit.com\/user\/javakah","name":"javakah","username":"javakah"},"boardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=
 \"md\"><p>Your link is wrong.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Thu, 10 Apr 2014 02:40:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c05969268a000e0725d8fe166e016","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgon9z2","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","a
 bout":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/ghostofcookiespast","name":"ghostofcookiespast","username":"ghostofcookiespast"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>welp... that explains a lot... about the French<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 03:28:00 +0000","id":"1e3c0601dc3aa000e07226d7e1b78f12","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoolpb","schema":{"version":3},"subtype":"post","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgoolpb","author":{"link":"http:\/\/www.reddit.com\/user\/ghostofcookiespast","name":"ghostofcookiespast","username":"ghostofcookiespast"},"boardname":"todayilearned","categories":"General Talk","content
 ":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>welp... that explains a lot... about the French<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 12:36:43 +0000","created_at":"Thu, 10 Apr 2014 03:28:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c0601dc3aa000e07226d7e1b78f12","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/cgoolpb","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22mrzd\/til_of_the_apache_a_popular_french_dance_for\/?limit=500","threadid":"22mrzd","title":"TIL of the Apache, a popular French dance for couples of the 1900s, said to be based on a pimp beating up a prostitute","topics":"Social","type":"post"},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name"
 :"Apache","sentiment":6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1,"themes":["French dance"]}],"sentiment":6}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/getex250","name":"getex250","username":"getex250"},"content":"","contenttype":"html","created_at":"Thu, 10 Apr 2014 09:21:00 +0000","id":"1e3c0916e072a600e07213ab7a1d5e26","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/22oivc","received_at":4743647283611885896,"schema":{"version":3},"subtype":"thread","title":"Review: Apache Solr Beginner's Guide","type":"reddit"},"reddit":{"anchor":"22oivc","author":{"link":"http:\/\/www.reddit.com\/user\/getex250","name":"getex250","username":"getex250"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Fri, 11 Apr 2014 14:34:06 +0000","created_at":"Thu, 10 Apr 2014 09:21:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3c0916e072a600e07213ab7a1d5e26","language":"
 Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/22oivc","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/?limit=500","threadid":"22oivc","threadstarter":1,"title":"Review: Apache Solr Beginner's Guide","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/PilotPirx","name":"PilotPirx","username":"PilotPirx"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>That&#39;s not a review, it tells me nothing about the book (only that you like it).<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Thu, 10 Apr 2014 09:27:00 +0000","id":"1e3c092449acaa00e0722de4069ff0b4","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/cgotztv","received_at":4743647283611872474,"schema":{"version":3},"subtype":"post","title":"Review: Apache Solr Beginner's Guide","type":"reddit"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgotztv","author":{"link":"http:\/\/www.reddit.com\/user\/PilotPirx","name":"PilotPirx","username":"PilotPirx"},"boardname":"programming","categories":"Software","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>That&#39;s no
 t a review, it tells me nothing about the book (only that you like it).<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Fri, 11 Apr 2014 14:34:06 +0000","created_at":"Thu, 10 Apr 2014 09:27:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id":"1e3c092449acaa00e0722de4069ff0b4","language":"English","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/cgotztv","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22oivc\/review_apache_solr_beginners_guide\/?limit=500","threadid":"22oivc","title":"Review: Apache Solr Beginner's Guide","topics":"Computers","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/Distant_Texans_Fan","name":"Distant_Texans_Fan","username":"Distant_Texans_Fan"},"content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/www.nzdf.mil.nz\/news\/media-releases\/2011\/nzlav-assists-us-apache-helicopter-in-afghanistan.htm\" ><img src=\"http:\/\/f.thumbs.redditmedia.com\/n3GB58Azp8pj_oG5.jpg\" width='70' height='46' alt=\"\"\/><\/a>","contenttype":"html","created_at":"Fri, 11 Apr 2014 21:37:00 +0000","id":"1e3c1c169da2a600e07221a570127bc8","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/22t6n6","schema":{"version":3},"subtype":"thread","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","type":"reddit"},"reddit":{"anchor":"22t6n6","author":{"link":"http:\/\/www.reddit.com\/user\/Distant_Texans_Fan","n
 ame":"Distant_Texans_Fan","username":"Distant_Texans_Fan"},"boardname":"todayilearned","categories":"General Talk","content":"<a class=\"thumbnail may-blank \" href=\"http:\/\/www.nzdf.mil.nz\/news\/media-releases\/2011\/nzlav-assists-us-apache-helicopter-in-afghanistan.htm\" ><img src=\"http:\/\/f.thumbs.redditmedia.com\/n3GB58Azp8pj_oG5.jpg\" width='70' height='46' alt=\"\"\/><\/a>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 02:57:56 +0000","created_at":"Fri, 11 Apr 2014 21:37:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c1c169da2a600e07221a570127bc8","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/22t6n6","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/?limi
 t=500","threadid":"22t6n6","threadstarter":1,"title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","topics":"Social","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","id":"1e3c1d7c3e5ea600e072676029a3fa8e","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","schema":{"version":3},"subtype":"post","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgq8ai3","author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"b
 oardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 02:57:56 +0000","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c1d7c3e5ea600e072676029a3fa8e","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/?limit=500","threadid":"22t6n6","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable t
 o take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","topics":"Social","type":"post"},"salience":{"content":{"sentiment":4},"title":{"entities":[{"name":"Afghanistan","sentiment":0,"confident":1,"label":"Place","evidence":2,"type":"Place","about":1,"themes":["tow bar"]}],"sentiment":0,"topics":[{"name":"Law","score":0.65574711561203,"additional":"Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","hits":0}]}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","id":"1e3c1d7c3e5ea600e0729cdf729e20d8","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","schema":{"version":3},"subtype":"post","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","type":"reddit"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"reddit":{"anchor":"cgq8ai3","author":{"link":"http:\/\/www.reddit.com\/user\/hanahou","name":"hanahou","username":"hanahou"},"b
 oardname":"todayilearned","categories":"General Talk","content":"<div class=\"usertext-body may-blank-within\"><div class=\"md\"><p>Well buy that NZ grunt a bakers dozen of 12 pack beers on my tax money. Hell he just saved millions in replacement.<\/p>\n<\/div>\n<\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 15 Apr 2014 23:23:15 +0000","created_at":"Sat, 12 Apr 2014 00:17:00 +0000","domain":"www.reddit.com","forumid":"4c0662795","forumname":"Today I Learned Forum","forumurl":"http:\/\/www.reddit.com\/r\/todayilearned\/","id":"1e3c1d7c3e5ea600e0729cdf729e20d8","language":"English","link":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/cgq8ai3","siteid":"4c0662790","thread":"http:\/\/www.reddit.com\/r\/todayilearned\/comments\/22t6n6\/til_in_2011_an_us_apache_helicopter_was_forced_to\/?limit=500","threadid":"22t6n6","title":"TIL in 2011 an US Apache Helicopter was forced to land in Afghanistan. Unable t
 o take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","topics":"Social","type":"post"},"salience":{"content":{"sentiment":4},"title":{"entities":[{"name":"Afghanistan","sentiment":0,"confident":1,"label":"Place","evidence":2,"type":"Place","about":1,"themes":["tow bar"]}],"sentiment":0,"topics":[{"name":"Law","score":0.65574711561203,"additional":"Unable to take off again, the nearby NZDF manufactured a tow bar to an LAV to tow the it back to base.","hits":0}]}}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"content":"","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","id":"1e3c276e1b65a800e0722108f0267ef4","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","schema":{"version":3},"subtype":"thread","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"reddit"},"reddit":{"anchor":"22vej3","author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sat, 12 Apr 2014 23:08:59 +0000","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id
 ":"1e3c276e1b65a800e0722108f0267ef4","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/?limit=500","threadid":"22vej3","threadstarter":1,"title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","topics":"Computers","type":"thread"}}
+{"interaction":{"author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"content":"","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","id":"1e3c276e1b65a800e072bcb683e13d52","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","schema":{"version":3},"subtype":"thread","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"reddit"},"reddit":{"anchor":"22vej3","author":{"link":"http:\/\/www.reddit.com\/user\/iamondemand","name":"iamondemand","username":"iamondemand"},"boardname":"programming","categories":"Software","content":"","contenttype":"html","countrycode":"US","crawled":"Sun, 13 Apr 2014 16:47:38 +0000","created_at":"Sat, 12 Apr 2014 19:16:00 +0000","domain":"www.reddit.com","forumid":"4c065940d","forumname":"Programming Forum","forumurl":"http:\/\/www.reddit.com\/r\/programming\/","id
 ":"1e3c276e1b65a800e072bcb683e13d52","language":"Unknown","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/22vej3","siteid":"4c0659406","thread":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/?limit=500","threadid":"22vej3","threadstarter":1,"title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","topics":"Computers","type":"thread"}}
+{"interaction":{"content":"submitted by <a href=\"http:\/\/www.reddit.com\/user\/iamondemand\"> iamondemand <\/a> <br\/> <a href=\"https:\/\/code.facebook.com\/posts\/274771932683700\/large-scale-graph-partitioning-with-apache-giraph\/\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:22 +0000","id":"1e3c276eed34a700e072ba255b00a128","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/","received_at":4743647638226100185,"schema":{"version":3},"subtype":"post","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"reddit"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"reddit":{"blog":{"link":"http:\/\/programming.reddit.com\/","title":"programming"},"blogid":"50213831","content":"submitted by <a hr
 ef=\"http:\/\/www.reddit.com\/user\/iamondemand\"> iamondemand <\/a> <br\/> <a href=\"https:\/\/code.facebook.com\/posts\/274771932683700\/large-scale-graph-partitioning-with-apache-giraph\/\">[link]<\/a> <a href=\"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/\">[comment]<\/a>","contenttype":"html","created_at":"Sat, 12 Apr 2014 19:16:22 +0000","domain":"programming.reddit.com","guid":"cbde0f804e3e6d5e369afd85746c4803","id":"1e3c276eed34a700e072ba255b00a128","lang":"en","link":"http:\/\/www.reddit.com\/r\/programming\/comments\/22vej3\/largescale_graph_partitioning_with_apache_giraph\/","parseddate":"Sat, 12 Apr 2014 19:18:53 +0000","postid":"f9b7d3ea-a9f8-4d42-aa38-3f2a7923a90e","title":"Large-scale graph partitioning with Apache Giraph | FB Engineering Blog | Facebook Code","type":"post"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}


[33/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
index fb68f98..0067201 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/wikipedia_datasift_json.txt
@@ -1,252 +1,252 @@
-"{\"interaction\":{\"author\":{\"link\":\"http://en.wikipedia.org/wiki/Special:Contributions/98.250.65.246\",\"username\":\"98.250.65.246\"},\"content\":\"<table class=\\\"infobox vevent\\\" cellspacing=\\\"3\\\" style=\\\"border-spacing:3px;width:22em;font-size: 90%;;\\\">\\n<tr>\\n<th colspan=\\\"2\\\" class=\\\"summary\\\" style=\\\"text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;\\\">Fort Apache: The Bronx</th>\\n</tr>\\n<tr>\\n<td colspan=\\\"2\\\" style=\\\"text-align:center;\\\"><a href=\\\"/wiki/File:Fort_apache_the_bronx.jpg\\\" class=\\\"image\\\"><img alt=\\\"Fort apache the bronx.jpg\\\" src=\\\"//upload.wikimedia.org/wikipedia/en/thumb/9/9d/Fort_apache_the_bronx.jpg/220px-Fort_apache_the_bronx.jpg\\\" width=\\\"220\\\" height=\\\"337\\\" class=\\\"thumbborder\\\" srcset=\\\"//upload.wikimedia.org/wikipedia/en/9/9d/Fort_apache_the_bronx.jpg 1.5x, //upload.wikimedia.org/wikipedia/en/9/9d/Fort_apache_the_bronx.jpg 2x\\\" /></a><br />\\
 n<div style=\\\"font-size: 95%; line-height: 1.5em;\\\">Movie poster for <i>Fort Apache, The Bronx</i></div>\\n</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Directed by</th>\\n<td><a href=\\\"/wiki/Daniel_Petrie\\\" title=\\\"Daniel Petrie\\\">Daniel Petrie</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Produced by</th>\\n<td>Thomas Fiorello<br />\\n<a href=\\\"/wiki/Martin_Richards_(producer)\\\" title=\\\"Martin Richards (producer)\\\">Martin Richards</a><br />\\nCompanies:<br />\\nProducers Circle<br />\\nTime-Life Television</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Written by</th>\\n<td>Heywood Gould</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Starring</th>\\n<td><a href=\\\"/wiki/Paul_Newman\\\" title=\\\"Paul Newman\\\">Paul Newman</a><br />\\n<a href=\\\"/wiki/Ed_Asner
 \\\" title=\\\"Ed Asner\\\">Ed Asner</a><br />\\n<a href=\\\"/wiki/Ken_Wahl\\\" title=\\\"Ken Wahl\\\">Ken Wahl</a><br />\\n<a href=\\\"/wiki/Danny_Aiello\\\" title=\\\"Danny Aiello\\\">Danny Aiello</a><br />\\n<a href=\\\"/wiki/Rachel_Ticotin\\\" title=\\\"Rachel Ticotin\\\">Rachel Ticotin</a><br />\\n<a href=\\\"/wiki/Kathleen_Beller\\\" title=\\\"Kathleen Beller\\\">Kathleen Beller</a><br />\\n<a href=\\\"/wiki/Pam_Grier\\\" title=\\\"Pam Grier\\\">Pam Grier</a><br />\\n<a href=\\\"/wiki/Clifford_David\\\" title=\\\"Clifford David\\\">Clifford David</a><br />\\n<a href=\\\"/wiki/Miguel_Pi%C3%B1ero\\\" title=\\\"Miguel Piñero\\\">Miguel Piñero</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Music by</th>\\n<td><a href=\\\"/wiki/Jonathan_Tunick\\\" title=\\\"Jonathan Tunick\\\">Jonathan Tunick</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Cinematography</th>\\n<td><a href=\\\
 "/wiki/John_Alcott\\\" title=\\\"John Alcott\\\">John Alcott</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Editing by</th>\\n<td>Rita Roland</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Distributed by</th>\\n<td><a href=\\\"/wiki/20th_Century_Fox\\\" title=\\\"20th Century Fox\\\">20th Century Fox</a><br />\\n<a href=\\\"/wiki/HBO\\\" title=\\\"HBO\\\">HBO</a> (DVD)</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Release dates</th>\\n<td>February 6, 1981</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Running time</th>\\n<td>125 minutes</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Language</th>\\n<td><a href=\\\"/wiki/English_language\\\" title=\\\"English language\\\">English</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"t
 ext-align:left;white-space: nowrap;;\\\">Budget</th>\\n<td>$4,000,000</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Box office</th>\\n<td>Total US Gross: <a href=\\\"/wiki/USD\\\" title=\\\"USD\\\" class=\\\"mw-redirect\\\">$</a>29,200,000 (US)<br />\\nInternational Gross: $36,000,000<br />\\nWorldwide Gross: $65,200,000<sup id=\\\"cite_ref-1\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-1\\\"><span>[</span>1<span>]</span></a></sup></td>\\n</tr>\\n</table>\\n<div class=\\\"thumb tright\\\">\\n<div class=\\\"thumbinner\\\" style=\\\"width:222px;\\\"><a href=\\\"/wiki/File:Fort_Apache_Police_Precinct,_2007.JPG\\\" class=\\\"image\\\"><img alt=\\\"\\\" src=\\\"//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Fort_Apache_Police_Precinct%2C_2007.JPG/220px-Fort_Apache_Police_Precinct%2C_2007.JPG\\\" width=\\\"220\\\" height=\\\"165\\\" class=\\\"thumbimage\\\" srcset=\\\"//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Fort_Apac
 he_Police_Precinct%2C_2007.JPG/330px-Fort_Apache_Police_Precinct%2C_2007.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Fort_Apache_Police_Precinct%2C_2007.JPG/440px-Fort_Apache_Police_Precinct%2C_2007.JPG 2x\\\" /></a>\\n<div class=\\\"thumbcaption\\\">\\n<div class=\\\"magnify\\\"><a href=\\\"/wiki/File:Fort_Apache_Police_Precinct,_2007.JPG\\\" class=\\\"internal\\\" title=\\\"Enlarge\\\"><img src=\\\"//bits.wikimedia.org/static-1.23wmf18/skins/common/images/magnify-clip.png\\\" width=\\\"15\\\" height=\\\"11\\\" alt=\\\"\\\" /></a></div>\\nThe real \\\"Fort Apache\\\" in the summer of 2007—1086 Simpson Street in the Bronx, formerly the New York Police Department's 41st Precinct Station. <span class=\\\"plainlinks nourlexpansion\\\"><a class=\\\"external text\\\" href=\\\"//tools.wmflabs.org/geohack/geohack.php?pagename=Fort_Apache%2C_The_Bronx&amp;params=40_49_32.07_N_73_53_33.72_W_scale:2000\\\"><span class=\\\"geo-default\\\"><span class=\\\"geo-dms\\\" title=\
 \\"Maps, aerial photos, and other data for this location\\\"><span class=\\\"latitude\\\">40°49′32.07″N</span> <span class=\\\"longitude\\\">73°53′33.72″W</span></span></span><span class=\\\"geo-multi-punct\\\"> / </span><span class=\\\"geo-nondefault\\\"><span class=\\\"geo-dec\\\" title=\\\"Maps, aerial photos, and other data for this location\\\">40.8255750°N 73.8927000°W</span><span style=\\\"display:none\\\"> / <span class=\\\"geo\\\">40.8255750; -73.8927000</span></span></span></a></span></div>\\n</div>\\n</div>\\n<p><i><b>Fort Apache: The Bronx</b></i> is a 1981 <a href=\\\"/wiki/Crime_film\\\" title=\\\"Crime film\\\">crime</a> <a href=\\\"/wiki/Drama_film\\\" title=\\\"Drama film\\\">drama film</a> made by Producers Circle, Time-Life Television Productions Inc., and distributed by <a href=\\\"/wiki/Twentieth_Century-Fox_Film_Corporation\\\" title=\\\"Twentieth Century-Fox Film Corporation\\\" class=\\\"mw-redirect\\\">Twentieth Century-Fox Film Corporat
 ion</a>. It was directed by <a href=\\\"/wiki/Daniel_Petrie\\\" title=\\\"Daniel Petrie\\\">Daniel Petrie</a> and produced by <a href=\\\"/wiki/Martin_Richards_(producer)\\\" title=\\\"Martin Richards (producer)\\\">Martin Richards</a>, Thomas Fiorello, with <a href=\\\"/wiki/David_Susskind\\\" title=\\\"David Susskind\\\">David Susskind</a> as executive producer. It stars <a href=\\\"/wiki/Paul_Newman\\\" title=\\\"Paul Newman\\\">Paul Newman</a>, <a href=\\\"/wiki/Ken_Wahl\\\" title=\\\"Ken Wahl\\\">Ken Wahl</a>, <a href=\\\"/wiki/Danny_Aiello\\\" title=\\\"Danny Aiello\\\">Danny Aiello</a>, <a href=\\\"/wiki/Edward_Asner\\\" title=\\\"Edward Asner\\\" class=\\\"mw-redirect\\\">Edward Asner</a>, <a href=\\\"/wiki/Rachel_Ticotin\\\" title=\\\"Rachel Ticotin\\\">Rachel Ticotin</a>, <a href=\\\"/wiki/Kathleen_Beller\\\" title=\\\"Kathleen Beller\\\">Kathleen Beller</a>, <a href=\\\"/wiki/Pam_Grier\\\" title=\\\"Pam Grier\\\">Pam Grier</a>, <a href=\\\"/wiki/Clifford_David\\\" title=\
 \\"Clifford David\\\">Clifford David</a> and <a href=\\\"/wiki/Miguel_Pi%C3%B1ero\\\" title=\\\"Miguel Piñero\\\">Miguel Piñero</a>.</p>\\n<p>Filmed on locations in the Bronx, New York City, New York, it is widely believed that the film was based on the book <i>Fort Apache</i> by Tom Walker, but the studio, Time-Life Television Films (owner of the script), disputes this. The result was lengthy court litigation.</p>\\n<p></p>\\n<div id=\\\"toc\\\" class=\\\"toc\\\">\\n<div id=\\\"toctitle\\\">\\n<h2>Contents</h2>\\n</div>\\n<ul>\\n<li class=\\\"toclevel-1 tocsection-1\\\"><a href=\\\"#Plot\\\"><span class=\\\"tocnumber\\\">1</span> <span class=\\\"toctext\\\">Plot</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-2\\\"><a href=\\\"#Cast\\\"><span class=\\\"tocnumber\\\">2</span> <span class=\\\"toctext\\\">Cast</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-3\\\"><a href=\\\"#Reception\\\"><span class=\\\"tocnumber\\\">3</span> <span class=\\\"toctext\\\">Reception</span
 ></a></li>\\n<li class=\\\"toclevel-1 tocsection-4\\\"><a href=\\\"#Legal_issues\\\"><span class=\\\"tocnumber\\\">4</span> <span class=\\\"toctext\\\">Legal issues</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-5\\\"><a href=\\\"#See_also\\\"><span class=\\\"tocnumber\\\">5</span> <span class=\\\"toctext\\\">See also</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-6\\\"><a href=\\\"#References\\\"><span class=\\\"tocnumber\\\">6</span> <span class=\\\"toctext\\\">References</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-7\\\"><a href=\\\"#External_links\\\"><span class=\\\"tocnumber\\\">7</span> <span class=\\\"toctext\\\">External links</span></a></li>\\n</ul>\\n</div>\\n<p></p>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"Plot\\\">Plot</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=1\\\" title=\\\"Edit section: Plot\\\">edit</a><span c
 lass=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<p>Police officers face many challenges in the decayed <a href=\\\"/wiki/South_Bronx\\\" title=\\\"South Bronx\\\">South Bronx</a> region of <a href=\\\"/wiki/New_York_City\\\" title=\\\"New York City\\\">New York City</a>. Among them are <a href=\\\"/wiki/NYPD\\\" title=\\\"NYPD\\\" class=\\\"mw-redirect\\\">NYPD</a> officers Murphy (Newman) and Corelli (Wahl), who work out of the 41st precinct, nicknamed \\\"Fort Apache\\\" because to those who work there, it feels like an army outpost in foreign territory (an <a href=\\\"/wiki/Allusion\\\" title=\\\"Allusion\\\">allusion</a> to <a href=\\\"/wiki/Fort_Apache\\\" title=\\\"Fort Apache\\\">Fort Apache</a> out of the <a href=\\\"/wiki/Old_West\\\" title=\\\"Old West\\\" class=\\\"mw-redirect\\\">Old West</a>).</p>\\n<p>The precinct itself is one of the worst and most dilapidated in the entire department, approaching demolition and staffed mostly by officers who are unwanted b
 y and have been transferred out of other precincts. Additionally, the precinct is of little use to the large <a href=\\\"/wiki/Puerto_Rican_people\\\" title=\\\"Puerto Rican people\\\">Puerto Rican</a> community, as only 4% of the officers are <a href=\\\"/wiki/Hispanic\\\" title=\\\"Hispanic\\\">Hispanic</a> in the largest non-English speaking section of the Bronx, according to retiring precinct captain Dugan.</p>\\n<p>Corelli and Murphy attempt to maintain law and order but have conflicts with corrupt fellow officers, as well as with a newly appointed police captain, rioting due to police brutality, and issues related to the deaths of two rookie cops at the film's beginning.</p>\\n<p>Illustrating the hopeless futility of the work done at the precinct, the killer is later found as an anonymous body, dumped in the roadside trash. With nothing to link her to the deaths of the rookie officers, the police remain ignorant of the fact that she was the killer and will never be caught.</p>
 \\n<h2><span class=\\\"mw-headline\\\" id=\\\"Cast\\\">Cast</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=2\\\" title=\\\"Edit section: Cast\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li><a href=\\\"/wiki/Paul_Newman\\\" title=\\\"Paul Newman\\\">Paul Newman</a> as Murphy</li>\\n<li><a href=\\\"/wiki/Ed_Asner\\\" title=\\\"Ed Asner\\\">Ed Asner</a> as Connolly</li>\\n<li><a href=\\\"/wiki/Ken_Wahl\\\" title=\\\"Ken Wahl\\\">Ken Wahl</a> as Corelli</li>\\n<li><a href=\\\"/wiki/Danny_Aiello\\\" title=\\\"Danny Aiello\\\">Danny Aiello</a> as Morgan</li>\\n<li><a href=\\\"/wiki/Rachel_Ticotin\\\" title=\\\"Rachel Ticotin\\\">Rachel Ticotin</a> as Isabella</li>\\n<li><a href=\\\"/wiki/Pam_Grier\\\" title=\\\"Pam Grier\\\">Pam Grier</a> as Charlotte</li>\\n<li><a href=\\\"/wiki/Kathleen_Beller\\\" title=\\\"Kathleen Bell
 er\\\">Kathleen Beller</a> as Theresa</li>\\n<li><a href=\\\"/wiki/Tito_Goya\\\" title=\\\"Tito Goya\\\">Tito Goya</a> as Jumper / Detective</li>\\n<li><a href=\\\"/wiki/Miguel_Pi%C3%B1ero\\\" title=\\\"Miguel Piñero\\\">Miguel Piñero</a> as Hernando</li>\\n<li>Jaime Tirelli as Jose</li>\\n<li>Lance Guecia as Track star</li>\\n<li>Rony Clanton as agent for hookers</li>\\n<li><a href=\\\"/wiki/Clifford_David\\\" title=\\\"Clifford David\\\">Clifford David</a> as Dacey</li>\\n<li><a href=\\\"/wiki/Sully_Boyar\\\" title=\\\"Sully Boyar\\\">Sully Boyar</a> as Dugan</li>\\n<li><a href=\\\"/wiki/Michael_Higgins_(actor)\\\" title=\\\"Michael Higgins (actor)\\\">Michael Higgins</a> as Heffernan</li>\\n<li>Rik Colitti as Pantuzzi</li>\\n<li>Irving Metzman as Applebaum</li>\\n<li>Frank Adu as Clendennon</li>\\n<li>John Aquino as Finley</li>\\n<li>Norman Matlock as Lincoln</li>\\n<li>John Ring as Donohue</li>\\n<li>Tony DiBenedetto as Moran</li>\\n<li>Terence Brady as Cop at bar</li>\\n<li>R
 andy Jurgensen as Cop at bar</li>\\n<li>Marvin Cohen as Cop at bar</li>\\n<li><a href=\\\"/wiki/Paul_Gleason\\\" title=\\\"Paul Gleason\\\">Paul Gleason</a> as Detective</li>\\n<li>Reynaldo Medina as Detective</li>\\n<li>Daryl Edwards as Black rookie</li>\\n<li><a href=\\\"/wiki/Donald_Petrie\\\" title=\\\"Donald Petrie\\\">Donald Petrie</a> as White rookie</li>\\n<li>Thomas A. Carlin as Man with flat tire</li>\\n<li>Frederick Allen as Corelli's brother</li>\\n<li><a href=\\\"/wiki/Dominic_Chianese\\\" title=\\\"Dominic Chianese\\\">Dominic Chianese</a> as Corelli's father</li>\\n<li>Mike Cicchetti as Wild-eyed man</li>\\n<li>Apu Guecia as Stabbed boy</li>\\n<li>Kim Delgado as Suspect #1</li>\\n<li>Reyno as Suspect #2</li>\\n<li>Dadi Pinero as Suspect #3</li>\\n<li><a href=\\\"/wiki/Cleavant_Derricks_(actor)\\\" title=\\\"Cleavant Derricks (actor)\\\">Cleavant Derricks</a> as Suspect #4</li>\\n<li>Dolores Hernández as Pregnant girl</li>\\n<li>Santos Morales as Girl's father</li>\\n
 <li>Ruth Last as Girl's mother</li>\\n<li>José Rabelo as Girl's uncle</li>\\n<li><a href=\\\"/wiki/Gilbert_Lewis_(actor)\\\" title=\\\"Gilbert Lewis (actor)\\\">Gilbert Lewis</a> as Mob leader</li>\\n<li><a href=\\\"/wiki/Lisa_Loomer\\\" title=\\\"Lisa Loomer\\\">Lisa Loomer</a> as Hooker #1</li>\\n<li>Sandi Franklin as Hooker #2</li>\\n<li>Eric Mourino as Boy on roof</li>\\n<li>Jessica Costello as Girl on roof</li>\\n<li>Gloria Irizarry as Drug dealer</li>\\n<li>Manuel E. Santiago as Intern</li>\\n<li>Joaquin La Habana as Transvestite</li>\\n<li>Fred Strothers as Hospital buyer</li>\\n<li>Sylvia Kuumba Williams as Bartender</li>\\n<li>Patricia Dratel as Hostage</li>\\n<li>Thomas Fiorello as Fence</li>\\n<li>M.J. Quinn as Cop</li>\\n<li>Bernie Rachelle as Wedgie Patrol</li>\\n</ul>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"Reception\\\">Reception</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache
 ,_The_Bronx&amp;action=edit&amp;section=3\\\" title=\\\"Edit section: Reception\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<p>The film was successful, grossing over $65 million worldwide at its time of release in 1981. Paul Newman was largely praised for his performance, but the movie itself received more negative reviews.</p>\\n<ul>\\n<li><a href=\\\"/wiki/Richard_Schickel\\\" title=\\\"Richard Schickel\\\">Richard Schickel</a>, in <i><a href=\\\"/wiki/Time_(magazine)\\\" title=\\\"Time (magazine)\\\">TIME</a></i>, called it: \\\"more like a made-for-TV movie\\\". He also added: \\\"The film is not quite up to its star\\\".; \\\"...somewhere between <a href=\\\"/wiki/Barney_Miller\\\" title=\\\"Barney Miller\\\">Barney Miller</a> and the works of <a href=\\\"/wiki/Joseph_Wambaugh\\\" title=\\\"Joseph Wambaugh\\\">Joseph Wambaugh</a>\\\".; and: \\\"But mainly it is Newman, now 56, who gives Fort Apache its modest distinction\\\".<sup id=\\\"cite_re
 f-2\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-2\\\"><span>[</span>2<span>]</span></a></sup></li>\\n<li><a href=\\\"/wiki/Roger_Ebert\\\" title=\\\"Roger Ebert\\\">Roger Ebert</a>, <i><a href=\\\"/wiki/Chicago_Sun_Times\\\" title=\\\"Chicago Sun Times\\\" class=\\\"mw-redirect\\\">Chicago Sun Times</a></i>, said: \\\"...the most complete collection of cop-movie clichés since John Wayne played a Chicago cop in <i>McQ</i>\\\". (Ebert got this incorrect, in <i><a href=\\\"/wiki/McQ\\\" title=\\\"McQ\\\">McQ</a></i> Wayne played a Seattle policeman, he played a Chicago policeman in <a href=\\\"/wiki/Brannigan_(film)\\\" title=\\\"Brannigan (film)\\\"><i>Brannigan</i></a>.) \\\"There are too many scenes that are necessary to the plot but not to the movie, scenes where the life of the movie stops so story details can be filled in\\\". \\\"The movie has several story threads that lead nowhere\\\". But, says about Newman, \\\"He's good in his role,...\\\" But, also calls this more 
 of a TV show.<sup id=\\\"cite_ref-3\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-3\\\"><span>[</span>3<span>]</span></a></sup></li>\\n<li><a href=\\\"/wiki/Variety_(magazine)\\\" title=\\\"Variety (magazine)\\\"><i>Variety</i></a> labeled the film: \\\"... a very patchy picture, strong on dialog and acting and exceedingly weak on story\\\", and criticizes it for its lack of depth.<sup id=\\\"cite_ref-Variety-Review-FATB_4-0\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-Variety-Review-FATB-4\\\"><span>[</span>4<span>]</span></a></sup></li>\\n<li>Nick Sambides, Jr. at <a href=\\\"/wiki/Allmovie\\\" title=\\\"Allmovie\\\">Allmovie</a> calls it \\\"...flinty but otherwise forgettable character study\\\".<sup id=\\\"cite_ref-5\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-5\\\"><span>[</span>5<span>]</span></a></sup></li>\\n</ul>\\n<ul>\\n<li>The <i><a href=\\\"/wiki/New_York_Post\\\" title=\\\"New York Post\\\">New York Post</a></i> published a photo of Newman on the set
  with a caption that he stated was inaccurate<sup class=\\\"noprint Inline-Template\\\" style=\\\"white-space:nowrap;\\\">[<i><a href=\\\"/wiki/Wikipedia:Please_clarify\\\" title=\\\"Wikipedia:Please clarify\\\"><span title=\\\"The text near this tag may need clarification or removal of jargon. (December 2011)\\\">clarification needed</span></a></i>]</sup>, calling the paper \\\"a garbage can\\\". Because of the dispute the <i>Post</i> banned him from its pages, even removing his name from movies in the TV listings.<sup id=\\\"cite_ref-digiacomo200412_6-0\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-digiacomo200412-6\\\"><span>[</span>6<span>]</span></a></sup></li>\\n</ul>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"Legal_issues\\\">Legal issues</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=4\\\" title=\\\"Edit section: Legal issues\\\">edit</a><span
  class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li>Local community groups threatened to file suit against the producers because of the way it depicted their neighborhood in the Bronx and for the depiction of ethnic minorities (Blacks and Puerto Ricans). Because of this pressure some changes were made to the script and a note was added to the title card at the beginning of the film.<sup id=\\\"cite_ref-Variety-Review-FATB_4-1\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-Variety-Review-FATB-4\\\"><span>[</span>4<span>]</span></a></sup><sup id=\\\"cite_ref-7\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-7\\\"><span>[</span>7<span>]</span></a></sup></li>\\n</ul>\\n<ul>\\n<li><i>Walker v. Time Life Films, Inc.</i>, 784 F.2d 44 (<a href=\\\"/wiki/United_States_Court_of_Appeals_for_the_Second_Circuit\\\" title=\\\"United States Court of Appeals for the Second Circuit\\\">2d Cir</a>. 1986)</li>\\n</ul>\\n<dl>\\n<dd>\\n<dl>\\n<dd>After the release of the film,
  an author, Tom Walker, filed a lawsuit against one of the production companies, Time-Life Television Films (legal owner of the script), claiming that the producers infringed on his book <i>Fort Apache</i> (New York: Crowell, 1976. <a href=\\\"/wiki/Special:BookSources/0690010478\\\" class=\\\"internal mw-magiclink-isbn\\\">ISBN 0-690-01047-8</a>). Among other things, Walker, the plaintiff, argued that: \\\"both the book and the film begin with the murder of a black and a white policeman with a handgun at close range; both depict cockfights, drunks, stripped cars, prostitutes and rats; both feature as central characters third- or fourth-generation Irish policemen who live in Queens and frequently drink; both show disgruntled, demoralized police officers and unsuccessful foot chases of fleeing criminals\\\". But the <a href=\\\"/wiki/United_States_Court_of_Appeals_for_the_Second_Circuit\\\" title=\\\"United States Court of Appeals for the Second Circuit\\\">United States Court of App
 eals for the Second Circuit</a> ruled that these are stereo-typical ideas, so called <i>\\\"<a href=\\\"/wiki/Scenes_%C3%A0_faire\\\" title=\\\"Scenes à faire\\\" class=\\\"mw-redirect\\\">scènes à faire</a>\\\"</i> (French for \\\"scenes that must be done\\\"), and that the <a href=\\\"/wiki/United_States_copyright_law\\\" title=\\\"United States copyright law\\\" class=\\\"mw-redirect\\\">United States copyright law</a> does not protect concepts or ideas. The court ruling stated: \\\"the book <i>Fort Apache</i> and the film <i>Fort Apache: The Bronx</i> were not substantially similar beyond [the] level of generalized or otherwise nonprotectible ideas, and thus [the] latter did not infringe copyright of [the] former\\\".<sup id=\\\"cite_ref-MargolickD-NYT_8-0\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-MargolickD-NYT-8\\\"><span>[</span>8<span>]</span></a></sup><sup id=\\\"cite_ref-9\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-9\\\"><span>[</span>9<span>]</span></a
 ></sup></dd>\\n</dl>\\n</dd>\\n</dl>\\n<p><br /></p>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"See_also\\\">See also</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=5\\\" title=\\\"Edit section: See also\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li><a href=\\\"/wiki/List_of_American_films_of_1981\\\" title=\\\"List of American films of 1981\\\">List of American films of 1981</a></li>\\n<li><a href=\\\"/wiki/Fort_Apache_(hostile_place)\\\" title=\\\"Fort Apache (hostile place)\\\">Fort Apache</a></li>\\n<li><a href=\\\"/wiki/Fort_Apache_(film)\\\" title=\\\"Fort Apache (film)\\\"><i>Fort Apache</i> (film)</a></li>\\n</ul>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"References\\\">References</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=F
 ort_Apache,_The_Bronx&amp;action=edit&amp;section=6\\\" title=\\\"Edit section: References\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<div class=\\\"reflist\\\" style=\\\"list-style-type: decimal;\\\">\\n<ol class=\\\"references\\\">\\n<li id=\\\"cite_note-1\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-1\\\">^</a></b></span> <span class=\\\"reference-text\\\"><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.the-numbers.com/movies/1981/0FABR.php\\\"><i>Fort Apache, The Bronx</i></a>. – The Numbers</span></li>\\n<li id=\\\"cite_note-2\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-2\\\">^</a></b></span> <span class=\\\"reference-text\\\"><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.time.com/time/printout/0,8816,954681,00.html#\\\">\\\"Conscience in a Rough Precinct\\\"</a>. – <i><a href=\\\"/wiki/Time_(magazine)\\\" title=\\\"Time (magazine)\\\">TIME</a></i>
 . – February 16, 1981. – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-3\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-3\\\">^</a></b></span> <span class=\\\"reference-text\\\">Ebert, Roger. – <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://rogerebert.suntimes.com/apps/pbcs.dll/article?AID=/19810101/REVIEWS/101010327/1023\\\">\\\"Fort Apache, The Bronx\\\"</a>. – <i><a href=\\\"/wiki/Chicago_Sun_Times\\\" title=\\\"Chicago Sun Times\\\" class=\\\"mw-redirect\\\">Chicago Sun Times</a></i>. – January 1, 1981 – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-Variety-Review-FATB-4\\\"><span class=\\\"mw-cite-backlink\\\">^ <a href=\\\"#cite_ref-Variety-Review-FATB_4-0\\\"><sup><i><b>a</b></i></sup></a> <a href=\\\"#cite_ref-Variety-Review-FATB_4-1\\\"><sup><i><b>b</b></i></sup></a></span> <span class=\\\"reference-text\\\">Film: <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.variety.com/inde
 x.asp?layout=print_review&amp;reviewid=VE1117791034&amp;categoryid=31\\\">\\\"Fort Apache, The Bronx\\\"</a>. – <a href=\\\"/wiki/Variety_(magazine)\\\" title=\\\"Variety (magazine)\\\"><i>Variety</i></a>. – January 1, 1981. – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-5\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-5\\\">^</a></b></span> <span class=\\\"reference-text\\\">Sambides, Nick, Jr. – Review: <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.allmovie.com/cg/avg.dll?p=avg&amp;sql=1:18269~T1\\\"><i>Fort Apache, the Bronx\\\"</i></a>. – <a href=\\\"/wiki/Allmovie\\\" title=\\\"Allmovie\\\">Allmovie</a>. – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-digiacomo200412-6\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-digiacomo200412_6-0\\\">^</a></b></span> <span class=\\\"reference-text\\\"><span class=\\\"citation news\\\">DiGiaomo, Frank (December 2004). <a rel=\\\"nofollow\\\" c
 lass=\\\"external text\\\" href=\\\"http://www.vanityfair.com/culture/features/2004/12/pagesix200412.print\\\">\\\"The Gossip Behind the Gossip\\\"</a>. <i>Vanity Fair</i><span class=\\\"reference-accessdate\\\">. Retrieved September 13, 2011</span>.</span><span title=\\\"ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AFort+Apache%2C+The+Bronx&amp;rft.atitle=The+Gossip+Behind+the+Gossip&amp;rft.au=DiGiaomo%2C+Frank&amp;rft.aulast=DiGiaomo%2C+Frank&amp;rft.date=December+2004&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.vanityfair.com%2Fculture%2Ffeatures%2F2004%2F12%2Fpagesix200412.print&amp;rft.jtitle=Vanity+Fair&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal\\\" class=\\\"Z3988\\\"><span style=\\\"display:none;\\\">&#160;</span></span></span></li>\\n<li id=\\\"cite_note-7\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-7\\\">^</a></b></span> <span class=\\\"reference-text\\\">Cultural Desk: \\\"'Apache' Film's Debut Protested\\\". – <
 i><a href=\\\"/wiki/New_York_Times\\\" title=\\\"New York Times\\\" class=\\\"mw-redirect\\\">New York Times</a></i>. – February 7, 1981</span></li>\\n<li id=\\\"cite_note-MargolickD-NYT-8\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-MargolickD-NYT_8-0\\\">^</a></b></span> <span class=\\\"reference-text\\\">Margolick, David. – Legal Notes: \\\"Writer Told 'Ft. Apache' isn't Just His\\\". – <i><a href=\\\"/wiki/New_York_Times\\\" title=\\\"New York Times\\\" class=\\\"mw-redirect\\\">New York Times</a></i>. – August 25, 1985</span></li>\\n<li id=\\\"cite_note-9\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-9\\\">^</a></b></span> <span class=\\\"reference-text\\\">Beeber, Jessie, and Maura Wogan. – \\\"Is Scènes à Faire Really 'Necessary'?\\\". – <i>Entertainment, Arts and Sports Law Journal</i>. – Spring 2004. – Vol. 15, No. 1</span></li>\\n</ol>\\n</div>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"External_links\\\">Externa
 l links</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=7\\\" title=\\\"Edit section: External links\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.imdb.com/title/tt0082402/\\\"><i>Fort Apache, The Bronx</i></a> at the <a href=\\\"/wiki/Internet_Movie_Database\\\" title=\\\"Internet Movie Database\\\">Internet Movie Database</a></li>\\n<li><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.allmovie.com/movie/v18269\\\"><i>Fort Apache, The Bronx</i></a> at <a href=\\\"/wiki/Allmovie\\\" title=\\\"Allmovie\\\">allmovie</a></li>\\n<li><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.rottentomatoes.com/m/fort_apache_the_bronx/\\\"><i>Fort Apache, The Bronx</i></a> at <a href=\\\"/wiki/Rotten_Tomatoes\\\" tit
 le=\\\"Rotten Tomatoes\\\">Rotten Tomatoes</a></li>\\n</ul>\\n<table cellspacing=\\\"0\\\" class=\\\"navbox\\\" style=\\\"border-spacing:0;\\\">\\n<tr>\\n<td style=\\\"padding:2px;\\\">\\n<table cellspacing=\\\"0\\\" class=\\\"nowraplinks collapsible autocollapse navbox-inner\\\" style=\\\"border-spacing:0;background:transparent;color:inherit;\\\">\\n<tr>\\n<th scope=\\\"col\\\" class=\\\"navbox-title\\\" colspan=\\\"2\\\">\\n<div class=\\\"plainlinks hlist navbar mini\\\">\\n<ul>\\n<li class=\\\"nv-view\\\"><a href=\\\"/wiki/Template:Daniel_Petrie\\\" title=\\\"Template:Daniel Petrie\\\"><span title=\\\"View this template\\\" style=\\\";;background:none transparent;border:none;;\\\">v</span></a></li>\\n<li class=\\\"nv-talk\\\"><a href=\\\"/wiki/Template_talk:Daniel_Petrie\\\" title=\\\"Template talk:Daniel Petrie\\\"><span title=\\\"Discuss this template\\\" style=\\\";;background:none transparent;border:none;;\\\">t</span></a></li>\\n<li class=\\\"nv-edit\\\"><a class=\\\"externa
 l text\\\" href=\\\"//en.wikipedia.org/w/index.php?title=Template:Daniel_Petrie&amp;action=edit\\\"><span title=\\\"Edit this template\\\" style=\\\";;background:none transparent;border:none;;\\\">e</span></a></li>\\n</ul>\\n</div>\\n<div style=\\\"font-size:110%;\\\">Films directed by <a href=\\\"/wiki/Daniel_Petrie\\\" title=\\\"Daniel Petrie\\\">Daniel Petrie</a></div>\\n</th>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1960s</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/The_Bramble_Bush\\\" title=\\\"The Bramble Bush\\\">The Bramble Bush</a></i> (1960)</li>\\n<li><i><a href=\\\"/wiki/A_Raisin_in_the_Sun_(1961_film)\\\" title=\\\"A Raisin in the Sun (1961 film)\\\">A Raisin in the Sun</a></i> (1961)</li>\\n
 <li><i><a href=\\\"/wiki/The_Main_Attraction_(film)\\\" title=\\\"The Main Attraction (film)\\\">The Main Attraction</a></i> (1962)</li>\\n<li><i><a href=\\\"/wiki/Stolen_Hours\\\" title=\\\"Stolen Hours\\\">Stolen Hours</a></i> (1963)</li>\\n<li><i><a href=\\\"/wiki/The_Idol_(film)\\\" title=\\\"The Idol (film)\\\">The Idol</a></i> (1966)</li>\\n<li><i><a href=\\\"/wiki/The_Spy_with_a_Cold_Nose\\\" title=\\\"The Spy with a Cold Nose\\\">The Spy with a Cold Nose</a></i> (1966)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1970s</th>\\n<td class=\\\"navbox-list navbox-even hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Moon_of_the_Wolf\\\" title=\\\"Moon of the Wolf\\\">Moon of the Wolf</a></i> (1973)</li>\\n<li><i><a href=\\\"
 /wiki/The_Neptune_Factor\\\" title=\\\"The Neptune Factor\\\">The Neptune Factor</a></i> (1973)</li>\\n<li><i><a href=\\\"/wiki/The_Gun_and_the_Pulpit\\\" title=\\\"The Gun and the Pulpit\\\">The Gun and the Pulpit</a></i> (1974)</li>\\n<li><i><a href=\\\"/wiki/Buster_and_Billie\\\" title=\\\"Buster and Billie\\\">Buster and Billie</a></i> (1974)</li>\\n<li><i><a href=\\\"/wiki/Eleanor_and_Franklin\\\" title=\\\"Eleanor and Franklin\\\">Eleanor and Franklin</a></i> (1976)</li>\\n<li><i><a href=\\\"/wiki/Lifeguard_(film)\\\" title=\\\"Lifeguard (film)\\\">Lifeguard</a></i> (1976)</li>\\n<li><i><a href=\\\"/wiki/Sybil_(1976_film)\\\" title=\\\"Sybil (1976 film)\\\">Sybil</a></i> (1976)</li>\\n<li><i><a href=\\\"/wiki/Eleanor_and_Franklin:_The_White_House_Years\\\" title=\\\"Eleanor and Franklin: The White House Years\\\">Eleanor and Franklin: The White House Years</a></i> (1977)</li>\\n<li><i><a href=\\\"/wiki/The_Betsy\\\" title=\\\"The Betsy\\\">The Betsy</a></i> (1978)</li>\\n</ul>
 \\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1980s</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Resurrection_(1980_film)\\\" title=\\\"Resurrection (1980 film)\\\">Resurrection</a></i> (1980)</li>\\n<li><i><strong class=\\\"selflink\\\">Fort Apache, The Bronx</strong></i> (1981)</li>\\n<li><i><a href=\\\"/wiki/Six_Pack_(film)\\\" title=\\\"Six Pack (film)\\\">Six Pack</a></i> (1982)</li>\\n<li><i><a href=\\\"/wiki/The_Dollmaker\\\" title=\\\"The Dollmaker\\\">The Dollmaker</a></i> (1984)</li>\\n<li><i><a href=\\\"/wiki/The_Bay_Boy\\\" title=\\\"The Bay Boy\\\">The Bay Boy</a></i> (1984)</li>\\n<li><i><a href=\\\"/wiki/Square_Dance_(film)\\\" title=\\\"Square Dance (film)\\\">Square Dance</a><
 /i> (1987)</li>\\n<li><i><a href=\\\"/wiki/Rocket_Gibraltar\\\" title=\\\"Rocket Gibraltar\\\">Rocket Gibraltar</a></i> (1988)</li>\\n<li><i><a href=\\\"/wiki/Cocoon:_The_Return\\\" title=\\\"Cocoon: The Return\\\">Cocoon: The Return</a></i> (1988)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1990s</th>\\n<td class=\\\"navbox-list navbox-even hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Lassie_(1994_film)\\\" title=\\\"Lassie (1994 film)\\\">Lassie</a></i> (1994)</li>\\n<li><i><a href=\\\"/wiki/The_Assistant_(1998_film)\\\" title=\\\"The Assistant (1998 film)\\\">The Assistant</a></i> (1998)</li>\\n<li><i><a href=\\\"/wiki/Inherit_the_Wind_(1999_film)\\\" title=\\\"Inherit the Wind (1999 film)\\\">Inherit the Wind</a></i> (
 1999)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">2000s</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Wild_Iris_(film)\\\" title=\\\"Wild Iris (film)\\\">Wild Iris</a></i> (2001)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n</table>\\n</td>\\n</tr>\\n</table>\\n<table cellspacing=\\\"0\\\" class=\\\"navbox\\\" style=\\\"border-spacing:0;\\\">\\n<tr>\\n<td style=\\\"padding:2px;\\\">\\n<table cellspacing=\\\"0\\\" class=\\\"nowraplinks collapsible autocollapse navbox-inner\\\" style=\\\"border-spacing:0;background:transparent;color:inherit;\\\">\\n<tr>\\n<th scope=\\\"col\\\" class=\\\"navbox-title\\\" colspan=\\\"2\\\">\\n<div class=\\\"plainlinks hlist navbar mini\\\">\\n<ul>\\n<li cl
 ass=\\\"nv-view\\\"><a href=\\\"/wiki/Template:Heywood_Gould\\\" title=\\\"Template:Heywood Gould\\\"><span title=\\\"View this template\\\" style=\\\";;background:none transparent;border:none;;\\\">v</span></a></li>\\n<li class=\\\"nv-talk\\\"><a href=\\\"/wiki/Template_talk:Heywood_Gould\\\" title=\\\"Template talk:Heywood Gould\\\"><span title=\\\"Discuss this template\\\" style=\\\";;background:none transparent;border:none;;\\\">t</span></a></li>\\n<li class=\\\"nv-edit\\\"><a class=\\\"external text\\\" href=\\\"//en.wikipedia.org/w/index.php?title=Template:Heywood_Gould&amp;action=edit\\\"><span title=\\\"Edit this template\\\" style=\\\";;background:none transparent;border:none;;\\\">e</span></a></li>\\n</ul>\\n</div>\\n<div style=\\\"font-size:110%;\\\"><a href=\\\"/wiki/Heywood_Gould\\\" title=\\\"Heywood Gould\\\">Heywood Gould</a></div>\\n</th>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-gr
 oup\\\">Films</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/One_Good_Cop\\\" title=\\\"One Good Cop\\\">One Good Cop</a></i> (1991)</li>\\n<li><i><a href=\\\"/wiki/Trial_by_Jury_(film)\\\" title=\\\"Trial by Jury (film)\\\">Trial by Jury</a></i> (1994)</li>\\n<li><i><a href=\\\"/wiki/Mistrial_(1996_film)\\\" title=\\\"Mistrial (1996 film)\\\">Mistrial</a></i> (1996)</li>\\n<li><i><a href=\\\"/wiki/Double_Bang\\\" title=\\\"Double Bang\\\">Double Bang</a></i> (2001)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">Screenplays</th>\\n<td class=\\\"navbox-list navbox-even hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div 
 style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Rolling_Thunder_(film)\\\" title=\\\"Rolling Thunder (film)\\\">Rolling Thunder</a></i> (1977)</li>\\n<li><i><a href=\\\"/wiki/The_Boys_from_Brazil_(film)\\\" title=\\\"The Boys from Brazil (film)\\\">The Boys from Brazil</a></i> (1978)</li>\\n<li><i><strong class=\\\"selflink\\\">Fort Apache, The Bronx</strong></i> (1981)</li>\\n<li><i><a href=\\\"/wiki/Streets_of_Gold_(film)\\\" title=\\\"Streets of Gold (film)\\\">Streets of Gold</a></i> (1986)</li>\\n<li><i><a href=\\\"/wiki/Cocktail_(1988_film)\\\" title=\\\"Cocktail (1988 film)\\\">Cocktail</a></i> (1988)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n</table>\\n</td>\\n</tr>\\n</table>\\n\\n\\n<!-- \\nNewPP limit report\\nParsed by mw1206\\nCPU time usage: 0.536 seconds\\nReal time usage: 0.615 seconds\\nPreprocessor visited node count: 873/1000000\\nPreprocessor generated node count: 4510/1500000\\nPost‐expand include size: 28730/2048000 bytes\\nTemplate argumen
 t size: 1418/2048000 bytes\\nHighest expansion depth: 11/40\\nExpensive parser function count: 5/500\\nLua time usage: 0.068/10.000 seconds\\nLua memory usage: 1.57 MB/50 MB\\n-->\\n\\n<!-- Saved in parser cache with key enwiki:pcache:idhash:8009696-0!*!0!!en!4!* and timestamp 20140323010622\\n -->\\n\",\"created_at\":\"Sun, 23 Mar 2014 01:06:21 +0000\",\"id\":\"1e3b2275887aa480e0771b13a8f59744\",\"link\":\"http://en.wikipedia.org/wiki/Fort_Apache%2C_The_Bronx\",\"schema\":{\"version\":3},\"title\":\"Fort Apache, The Bronx\",\"type\":\"wikipedia\"},\"language\":{\"tag\":\"en\"},\"links\":{\"code\":[200,404,200,200,200,200,200,200,200],\"created_at\":[\"Sun, 23 Mar 2014 01:06:23 +0000\",\"Sun, 23 Mar 2014 01:06:24 +0000\",\"Sun, 23 Mar 2014 01:06:30 +0000\",\"Sun, 23 Mar 2014 01:06:33 +0000\",\"Sun, 23 Mar 2014 00:20:48 +0000\",\"Sun, 23 Mar 2014 01:06:35 +0000\",\"Sun, 23 Mar 2014 01:06:36 +0000\",\"Sun, 23 Mar 2014 01:06:37 +0000\",\"Sun, 23 Mar 2014 01:06:38 +0000\"],\"hops\":[[],
 [\"http://www.time.com/time/printout/0,8816,954681,00.html#\",\"http://time.com/time/printout/0,8816,954681,00.html\",\"http://content.time.com/time/printout/0%2C8816%2C954681%2C00.html\"],[\"http://rogerebert.suntimes.com/apps/pbcs.dll/article?AID=/19810101/REVIEWS/101010327/1023\",\"http://www.rogerebert.com/apps/pbcs.dll/article?AID=/19810101/REVIEWS/101010327/1023\"],[\"http://www.variety.com/index.asp?layout=print_review&reviewid=VE1117791034&categoryid=31\",\"http://www.variety.com/article/VE1117791034?layout=print_review&reviewid=VE1117791034&categoryid=31\",\"http://variety.com/article/VE1117791034?layout=print_review&reviewid=VE1117791034&categoryid=31\"],[\"http://www.allmovie.com/cg/avg.dll?p=avg&sql=1:18269~T1\"],[],[],[],[]],\"meta\":{\"charset\":[\"CP1252\",\"\",\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\"],\"content_type\":[\"text/html\",\"\",\"text/html\",\"text/html\",\"text/html\",\"text/html\",\"text/html\",\"text/html\",\"text/html\"],\"d
 escription\":[\"Domestic Release Date: January 1, 1981Domestic Box Office: $29,200,000Worldwide Box Office: $65,200,000\",\"\",\"\",\"\",\"The best, most complete site to help you find movie trailers, synopsis, movie reviews as well as complete celebrity & movie cast details…\",\"From world affairs to entertainment, business to fashion, crime to society, Vanity Fair is a cultural catalyst that drives the popular dialogue globally.\",\"Directed by Daniel Petrie. With Paul Newman, Edward Asner, Ken Wahl, Danny Aiello. From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \\\"Fort Apache\\\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tuff cynic, but in truth he's a moralist with a sense for justice.\",\"Find trailers, reviews, synopsis, showtimes and cast information for Fort Apache, the Bronx on AllMovie - 1981 - Pa
 ul Newman stars as an essentially decent cop &hellip;\",\"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as the Bronx,...\"],\"keywords\":[[\"movies\",\"box office\",\"The Numbers\",\"Numbers\",\"daily box office\",\"weekly box office\",\"movie stars\",\"dvd sales\",\"Blu-ray sales\",\"release schedule\"],[],[],[],[\"allmovie.com\",\"movies\",\"movie\",\"movie recommendations\",\"movie reviews\",\"actors\",\"actors bios\",\"actor biography\",\"now available\",\"movie new releases\",\"dvd\",\"movie trailers\",\"movie search\"],[],[\"Reviews\",\"Showtimes\",\"DVDs\",\"Photos\",\"Message Boards\",\"User Ratings\",\"Synopsis\",\"Trailers\",\"Credits\"],[\"Fort Apache\",\"the Bronx\",\"Daniel Petrie\",\"Trailers\",\"Reviews\",\"Summary\",\"Synopsis\",\"Cast\",\"Showtimes\",\"Rent\",\"Buy\",\"Photos\",\"Movie Stills\",\"Awards\"],[]],\"lang\":[\"unknown\",\"\",\"en\",\"en\",\"unknown\",\"en\",\"en-gb\
 ",\"unknown\",\"en-us\"],\"opengraph\":[{},{},{},{\"site_name\":\"Variety\",\"type\":\"article\",\"description\":\"Birth\",\"url\":\"http://variety.com/2000/scene/people-news/robert-emerson-langlois-ulrich-1117791034/\",\"title\":\"Robert Emerson Langlois-Ulrich\",\"image\":\"http://0.gravatar.com/blavatar/8181b523e3c891bc770494a0bbbe8244?s=200\",\"facebook_author\":\"http://variety.com/author/varietystaff/\"},{\"description\":\"The best, most complete site to help you find movie trailers, synopsis, movie reviews as well as complete celebrity & movie cast details…\",\"url\":\"http://www.allmovie.com/\",\"image\":\"http://www.allmovie.com/images/allmovie-logo-share.png\",\"title\":\"AllMovie - Movies and Films Database - Movie Search, Guide, Recommendations, and Reviews\"},{\"site_name\":\"Vanity Fair\",\"description\":\"From world affairs to entertainment, business to fashion, crime to society, Vanity Fair is a cultural catalyst that drives the popular dialogue globally.\",\"type\
 ":\"article\",\"url\":\"http://www.vanityfair.com/culture/features/2004/12/pagesix200412.print\",\"image\":\"http://subscribe.condenet.com/images_covers/cover_vanityfair_80.jpg\",\"title\":\"Frank DiGiacomo: a dishy oral history of America\"},{\"site_name\":\"IMDb\",\"type\":\"video.movie\",\"description\":\"Directed by Daniel Petrie. With Paul Newman, Edward Asner, Ken Wahl, Danny Aiello. From the sight of a police officer this movie depicts the life in New York\",\"url\":\"http://www.imdb.com/title/tt0082402/\",\"image\":\"http://ia.media-imdb.com/images/M/MV5BMTQ0NDA1MzA0NF5BMl5BanBnXkFtZTcwMzQ5NDQyMQ@@._V1_SY475_SX262_.jpg\",\"title\":\"Fort Apache the Bronx (1981)\"},{\"site_name\":\"AllMovie\",\"type\":\"movie\",\"image\":\"http://cps-static.rovicorp.com/1/avg/cov75/drv300/v328/v32888fjfsd.jpg?partner=allrovi.com\"},{\"type\":\"video.movie\",\"description\":\"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known 
 on the city maps as the Bronx, but known to its denizens as\",\"url\":\"http://www.rottentomatoes.com/m/fort_apache_the_bronx/\",\"title\":\"Fort Apache, the Bronx\",\"image\":\"http://content6.flixster.com/movie/10/95/34/10953460_800.jpg\"}],\"twitter\":[{},{},{},{\"card\":\"summary\",\"creator\":\"@Variety\",\"site\":\"@variety\",\"image\":\"http://0.gravatar.com/blavatar/8181b523e3c891bc770494a0bbbe8244?s=240\"},{},{},{},{},{\"description\":\"Synopsis: Paul Newman stars as an essentially decent cop patrolling that decimated, drug-and-gang-ridden borough known on the city maps as the Bronx, but known to its denizens as\",\"card\":\"product\",\"site\":\"@rottentomatoes\",\"title\":\"Fort Apache, the Bronx\"}]},\"normalized_url\":[\"http://the-numbers.com/movies/1981/0FABR.php\",null,\"http://rogerebert.com/reviews/fort-apache-the-bronx-1981\",\"http://variety.com/2000/scene/people-news/robert-emerson-langlois-ulrich-1117791034\",\"http://allmovie.com\",\"http://vanityfair.com/cultu
 re/features/2004/12/pagesix200412.print\",\"http://imdb.com/title/tt0082402\",\"http://allmovie.com/movie/v18269\",\"http://rottentomatoes.com/m/fort_apache_the_bronx\"],\"retweet_count\":[0,0,0,0,0,0,0,0,0],\"title\":[\"Fort Apache, The Bronx - Box Office Data, DVD Sales, Movie News, Cast Information - The Numbers\",\"null\",\"Fort Apache, The Bronx Movie Review (1981) | Roger Ebert\",\"Robert Emerson Langlois-Ulrich | Variety\",\"AllMovie - Movies and Films Database - Movie Search, Guide, Recommendations, and Reviews\",\"The Gossip Behind the Gossip | Vanity Fair\",\"Fort Apache the Bronx (1981) - IMDb\",\"Fort Apache, the Bronx (1981) - Trailers, Reviews, Synopsis, Showtimes and Cast - AllMovie\",\"Fort Apache, the Bronx - Rotten Tomatoes\"],\"url\":[\"http://www.the-numbers.com/movies/1981/0FABR.php\",\"http://content.time.com/time/printout/0%2C8816%2C954681%2C00.html\",\"http://www.rogerebert.com/reviews/fort-apache-the-bronx-1981\",\"http://variety.com/2000/scene/people-news/r
 obert-emerson-langlois-ulrich-1117791034/\",\"http://www.allmovie.com\",\"http://www.vanityfair.com/culture/features/2004/12/pagesix200412.print\",\"http://www.imdb.com/title/tt0082402/\",\"http://www.allmovie.com/movie/v18269\",\"http://www.rottentomatoes.com/m/fort_apache_the_bronx/\"]},\"wikipedia\":{\"author\":{\"link\":\"http://en.wikipedia.org/wiki/Special:Contributions/98.250.65.246\",\"username\":\"98.250.65.246\"},\"body\":\"<table class=\\\"infobox vevent\\\" cellspacing=\\\"3\\\" style=\\\"border-spacing:3px;width:22em;font-size: 90%;;\\\">\\n<tr>\\n<th colspan=\\\"2\\\" class=\\\"summary\\\" style=\\\"text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;\\\">Fort Apache: The Bronx</th>\\n</tr>\\n<tr>\\n<td colspan=\\\"2\\\" style=\\\"text-align:center;\\\"><a href=\\\"/wiki/File:Fort_apache_the_bronx.jpg\\\" class=\\\"image\\\"><img alt=\\\"Fort apache the bronx.jpg\\\" src=\\\"//upload.wikimedia.org/wikipedia/en/thumb/9/9d/Fort_apache_th
 e_bronx.jpg/220px-Fort_apache_the_bronx.jpg\\\" width=\\\"220\\\" height=\\\"337\\\" class=\\\"thumbborder\\\" srcset=\\\"//upload.wikimedia.org/wikipedia/en/9/9d/Fort_apache_the_bronx.jpg 1.5x, //upload.wikimedia.org/wikipedia/en/9/9d/Fort_apache_the_bronx.jpg 2x\\\" /></a><br />\\n<div style=\\\"font-size: 95%; line-height: 1.5em;\\\">Movie poster for <i>Fort Apache, The Bronx</i></div>\\n</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Directed by</th>\\n<td><a href=\\\"/wiki/Daniel_Petrie\\\" title=\\\"Daniel Petrie\\\">Daniel Petrie</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Produced by</th>\\n<td>Thomas Fiorello<br />\\n<a href=\\\"/wiki/Martin_Richards_(producer)\\\" title=\\\"Martin Richards (producer)\\\">Martin Richards</a><br />\\nCompanies:<br />\\nProducers Circle<br />\\nTime-Life Television</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white
 -space: nowrap;;\\\">Written by</th>\\n<td>Heywood Gould</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Starring</th>\\n<td><a href=\\\"/wiki/Paul_Newman\\\" title=\\\"Paul Newman\\\">Paul Newman</a><br />\\n<a href=\\\"/wiki/Ed_Asner\\\" title=\\\"Ed Asner\\\">Ed Asner</a><br />\\n<a href=\\\"/wiki/Ken_Wahl\\\" title=\\\"Ken Wahl\\\">Ken Wahl</a><br />\\n<a href=\\\"/wiki/Danny_Aiello\\\" title=\\\"Danny Aiello\\\">Danny Aiello</a><br />\\n<a href=\\\"/wiki/Rachel_Ticotin\\\" title=\\\"Rachel Ticotin\\\">Rachel Ticotin</a><br />\\n<a href=\\\"/wiki/Kathleen_Beller\\\" title=\\\"Kathleen Beller\\\">Kathleen Beller</a><br />\\n<a href=\\\"/wiki/Pam_Grier\\\" title=\\\"Pam Grier\\\">Pam Grier</a><br />\\n<a href=\\\"/wiki/Clifford_David\\\" title=\\\"Clifford David\\\">Clifford David</a><br />\\n<a href=\\\"/wiki/Miguel_Pi%C3%B1ero\\\" title=\\\"Miguel Piñero\\\">Miguel Piñero</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"
 text-align:left;white-space: nowrap;;\\\">Music by</th>\\n<td><a href=\\\"/wiki/Jonathan_Tunick\\\" title=\\\"Jonathan Tunick\\\">Jonathan Tunick</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Cinematography</th>\\n<td><a href=\\\"/wiki/John_Alcott\\\" title=\\\"John Alcott\\\">John Alcott</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Editing by</th>\\n<td>Rita Roland</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Distributed by</th>\\n<td><a href=\\\"/wiki/20th_Century_Fox\\\" title=\\\"20th Century Fox\\\">20th Century Fox</a><br />\\n<a href=\\\"/wiki/HBO\\\" title=\\\"HBO\\\">HBO</a> (DVD)</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Release dates</th>\\n<td>February 6, 1981</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Runnin
 g time</th>\\n<td>125 minutes</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Language</th>\\n<td><a href=\\\"/wiki/English_language\\\" title=\\\"English language\\\">English</a></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Budget</th>\\n<td>$4,000,000</td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" style=\\\"text-align:left;white-space: nowrap;;\\\">Box office</th>\\n<td>Total US Gross: <a href=\\\"/wiki/USD\\\" title=\\\"USD\\\" class=\\\"mw-redirect\\\">$</a>29,200,000 (US)<br />\\nInternational Gross: $36,000,000<br />\\nWorldwide Gross: $65,200,000<sup id=\\\"cite_ref-1\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-1\\\"><span>[</span>1<span>]</span></a></sup></td>\\n</tr>\\n</table>\\n<div class=\\\"thumb tright\\\">\\n<div class=\\\"thumbinner\\\" style=\\\"width:222px;\\\"><a href=\\\"/wiki/File:Fort_Apache_Police_Precinct,_2007.JPG\\\" class=\\\"image\\\"><img alt=\\\"\\\" s
 rc=\\\"//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Fort_Apache_Police_Precinct%2C_2007.JPG/220px-Fort_Apache_Police_Precinct%2C_2007.JPG\\\" width=\\\"220\\\" height=\\\"165\\\" class=\\\"thumbimage\\\" srcset=\\\"//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Fort_Apache_Police_Precinct%2C_2007.JPG/330px-Fort_Apache_Police_Precinct%2C_2007.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Fort_Apache_Police_Precinct%2C_2007.JPG/440px-Fort_Apache_Police_Precinct%2C_2007.JPG 2x\\\" /></a>\\n<div class=\\\"thumbcaption\\\">\\n<div class=\\\"magnify\\\"><a href=\\\"/wiki/File:Fort_Apache_Police_Precinct,_2007.JPG\\\" class=\\\"internal\\\" title=\\\"Enlarge\\\"><img src=\\\"//bits.wikimedia.org/static-1.23wmf18/skins/common/images/magnify-clip.png\\\" width=\\\"15\\\" height=\\\"11\\\" alt=\\\"\\\" /></a></div>\\nThe real \\\"Fort Apache\\\" in the summer of 2007—1086 Simpson Street in the Bronx, formerly the New York Police Department's 41st Precinct Station
 . <span class=\\\"plainlinks nourlexpansion\\\"><a class=\\\"external text\\\" href=\\\"//tools.wmflabs.org/geohack/geohack.php?pagename=Fort_Apache%2C_The_Bronx&amp;params=40_49_32.07_N_73_53_33.72_W_scale:2000\\\"><span class=\\\"geo-default\\\"><span class=\\\"geo-dms\\\" title=\\\"Maps, aerial photos, and other data for this location\\\"><span class=\\\"latitude\\\">40°49′32.07″N</span> <span class=\\\"longitude\\\">73°53′33.72″W</span></span></span><span class=\\\"geo-multi-punct\\\"> / </span><span class=\\\"geo-nondefault\\\"><span class=\\\"geo-dec\\\" title=\\\"Maps, aerial photos, and other data for this location\\\">40.8255750°N 73.8927000°W</span><span style=\\\"display:none\\\"> / <span class=\\\"geo\\\">40.8255750; -73.8927000</span></span></span></a></span></div>\\n</div>\\n</div>\\n<p><i><b>Fort Apache: The Bronx</b></i> is a 1981 <a href=\\\"/wiki/Crime_film\\\" title=\\\"Crime film\\\">crime</a> <a href=\\\"/wiki/Drama_film\\\" title=\\\"Drama 
 film\\\">drama film</a> made by Producers Circle, Time-Life Television Productions Inc., and distributed by <a href=\\\"/wiki/Twentieth_Century-Fox_Film_Corporation\\\" title=\\\"Twentieth Century-Fox Film Corporation\\\" class=\\\"mw-redirect\\\">Twentieth Century-Fox Film Corporation</a>. It was directed by <a href=\\\"/wiki/Daniel_Petrie\\\" title=\\\"Daniel Petrie\\\">Daniel Petrie</a> and produced by <a href=\\\"/wiki/Martin_Richards_(producer)\\\" title=\\\"Martin Richards (producer)\\\">Martin Richards</a>, Thomas Fiorello, with <a href=\\\"/wiki/David_Susskind\\\" title=\\\"David Susskind\\\">David Susskind</a> as executive producer. It stars <a href=\\\"/wiki/Paul_Newman\\\" title=\\\"Paul Newman\\\">Paul Newman</a>, <a href=\\\"/wiki/Ken_Wahl\\\" title=\\\"Ken Wahl\\\">Ken Wahl</a>, <a href=\\\"/wiki/Danny_Aiello\\\" title=\\\"Danny Aiello\\\">Danny Aiello</a>, <a href=\\\"/wiki/Edward_Asner\\\" title=\\\"Edward Asner\\\" class=\\\"mw-redirect\\\">Edward Asner</a>, <a href
 =\\\"/wiki/Rachel_Ticotin\\\" title=\\\"Rachel Ticotin\\\">Rachel Ticotin</a>, <a href=\\\"/wiki/Kathleen_Beller\\\" title=\\\"Kathleen Beller\\\">Kathleen Beller</a>, <a href=\\\"/wiki/Pam_Grier\\\" title=\\\"Pam Grier\\\">Pam Grier</a>, <a href=\\\"/wiki/Clifford_David\\\" title=\\\"Clifford David\\\">Clifford David</a> and <a href=\\\"/wiki/Miguel_Pi%C3%B1ero\\\" title=\\\"Miguel Piñero\\\">Miguel Piñero</a>.</p>\\n<p>Filmed on locations in the Bronx, New York City, New York, it is widely believed that the film was based on the book <i>Fort Apache</i> by Tom Walker, but the studio, Time-Life Television Films (owner of the script), disputes this. The result was lengthy court litigation.</p>\\n<p></p>\\n<div id=\\\"toc\\\" class=\\\"toc\\\">\\n<div id=\\\"toctitle\\\">\\n<h2>Contents</h2>\\n</div>\\n<ul>\\n<li class=\\\"toclevel-1 tocsection-1\\\"><a href=\\\"#Plot\\\"><span class=\\\"tocnumber\\\">1</span> <span class=\\\"toctext\\\">Plot</span></a></li>\\n<li class=\\\"toclevel
 -1 tocsection-2\\\"><a href=\\\"#Cast\\\"><span class=\\\"tocnumber\\\">2</span> <span class=\\\"toctext\\\">Cast</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-3\\\"><a href=\\\"#Reception\\\"><span class=\\\"tocnumber\\\">3</span> <span class=\\\"toctext\\\">Reception</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-4\\\"><a href=\\\"#Legal_issues\\\"><span class=\\\"tocnumber\\\">4</span> <span class=\\\"toctext\\\">Legal issues</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-5\\\"><a href=\\\"#See_also\\\"><span class=\\\"tocnumber\\\">5</span> <span class=\\\"toctext\\\">See also</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-6\\\"><a href=\\\"#References\\\"><span class=\\\"tocnumber\\\">6</span> <span class=\\\"toctext\\\">References</span></a></li>\\n<li class=\\\"toclevel-1 tocsection-7\\\"><a href=\\\"#External_links\\\"><span class=\\\"tocnumber\\\">7</span> <span class=\\\"toctext\\\">External links</span></a></li>\\n</ul>\\n</div>\\n<p></p>\\n<h
 2><span class=\\\"mw-headline\\\" id=\\\"Plot\\\">Plot</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=1\\\" title=\\\"Edit section: Plot\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<p>Police officers face many challenges in the decayed <a href=\\\"/wiki/South_Bronx\\\" title=\\\"South Bronx\\\">South Bronx</a> region of <a href=\\\"/wiki/New_York_City\\\" title=\\\"New York City\\\">New York City</a>. Among them are <a href=\\\"/wiki/NYPD\\\" title=\\\"NYPD\\\" class=\\\"mw-redirect\\\">NYPD</a> officers Murphy (Newman) and Corelli (Wahl), who work out of the 41st precinct, nicknamed \\\"Fort Apache\\\" because to those who work there, it feels like an army outpost in foreign territory (an <a href=\\\"/wiki/Allusion\\\" title=\\\"Allusion\\\">allusion</a> to <a href=\\\"/wiki/Fort_Apache\\\" title=\\\"Fort Apache\\\">Fort Ap
 ache</a> out of the <a href=\\\"/wiki/Old_West\\\" title=\\\"Old West\\\" class=\\\"mw-redirect\\\">Old West</a>).</p>\\n<p>The precinct itself is one of the worst and most dilapidated in the entire department, approaching demolition and staffed mostly by officers who are unwanted by and have been transferred out of other precincts. Additionally, the precinct is of little use to the large <a href=\\\"/wiki/Puerto_Rican_people\\\" title=\\\"Puerto Rican people\\\">Puerto Rican</a> community, as only 4% of the officers are <a href=\\\"/wiki/Hispanic\\\" title=\\\"Hispanic\\\">Hispanic</a> in the largest non-English speaking section of the Bronx, according to retiring precinct captain Dugan.</p>\\n<p>Corelli and Murphy attempt to maintain law and order but have conflicts with corrupt fellow officers, as well as with a newly appointed police captain, rioting due to police brutality, and issues related to the deaths of two rookie cops at the film's beginning.</p>\\n<p>Illustrating the ho
 peless futility of the work done at the precinct, the killer is later found as an anonymous body, dumped in the roadside trash. With nothing to link her to the deaths of the rookie officers, the police remain ignorant of the fact that she was the killer and will never be caught.</p>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"Cast\\\">Cast</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=2\\\" title=\\\"Edit section: Cast\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li><a href=\\\"/wiki/Paul_Newman\\\" title=\\\"Paul Newman\\\">Paul Newman</a> as Murphy</li>\\n<li><a href=\\\"/wiki/Ed_Asner\\\" title=\\\"Ed Asner\\\">Ed Asner</a> as Connolly</li>\\n<li><a href=\\\"/wiki/Ken_Wahl\\\" title=\\\"Ken Wahl\\\">Ken Wahl</a> as Corelli</li>\\n<li><a href=\\\"/wiki/Danny_Aiello\\\" title=\\\"Danny Aiello\\\">Danny Aiello</a> a
 s Morgan</li>\\n<li><a href=\\\"/wiki/Rachel_Ticotin\\\" title=\\\"Rachel Ticotin\\\">Rachel Ticotin</a> as Isabella</li>\\n<li><a href=\\\"/wiki/Pam_Grier\\\" title=\\\"Pam Grier\\\">Pam Grier</a> as Charlotte</li>\\n<li><a href=\\\"/wiki/Kathleen_Beller\\\" title=\\\"Kathleen Beller\\\">Kathleen Beller</a> as Theresa</li>\\n<li><a href=\\\"/wiki/Tito_Goya\\\" title=\\\"Tito Goya\\\">Tito Goya</a> as Jumper / Detective</li>\\n<li><a href=\\\"/wiki/Miguel_Pi%C3%B1ero\\\" title=\\\"Miguel Piñero\\\">Miguel Piñero</a> as Hernando</li>\\n<li>Jaime Tirelli as Jose</li>\\n<li>Lance Guecia as Track star</li>\\n<li>Rony Clanton as agent for hookers</li>\\n<li><a href=\\\"/wiki/Clifford_David\\\" title=\\\"Clifford David\\\">Clifford David</a> as Dacey</li>\\n<li><a href=\\\"/wiki/Sully_Boyar\\\" title=\\\"Sully Boyar\\\">Sully Boyar</a> as Dugan</li>\\n<li><a href=\\\"/wiki/Michael_Higgins_(actor)\\\" title=\\\"Michael Higgins (actor)\\\">Michael Higgins</a> as Heffernan</li>\\n<li>Rik C
 olitti as Pantuzzi</li>\\n<li>Irving Metzman as Applebaum</li>\\n<li>Frank Adu as Clendennon</li>\\n<li>John Aquino as Finley</li>\\n<li>Norman Matlock as Lincoln</li>\\n<li>John Ring as Donohue</li>\\n<li>Tony DiBenedetto as Moran</li>\\n<li>Terence Brady as Cop at bar</li>\\n<li>Randy Jurgensen as Cop at bar</li>\\n<li>Marvin Cohen as Cop at bar</li>\\n<li><a href=\\\"/wiki/Paul_Gleason\\\" title=\\\"Paul Gleason\\\">Paul Gleason</a> as Detective</li>\\n<li>Reynaldo Medina as Detective</li>\\n<li>Daryl Edwards as Black rookie</li>\\n<li><a href=\\\"/wiki/Donald_Petrie\\\" title=\\\"Donald Petrie\\\">Donald Petrie</a> as White rookie</li>\\n<li>Thomas A. Carlin as Man with flat tire</li>\\n<li>Frederick Allen as Corelli's brother</li>\\n<li><a href=\\\"/wiki/Dominic_Chianese\\\" title=\\\"Dominic Chianese\\\">Dominic Chianese</a> as Corelli's father</li>\\n<li>Mike Cicchetti as Wild-eyed man</li>\\n<li>Apu Guecia as Stabbed boy</li>\\n<li>Kim Delgado as Suspect #1</li>\\n<li>Reyno 
 as Suspect #2</li>\\n<li>Dadi Pinero as Suspect #3</li>\\n<li><a href=\\\"/wiki/Cleavant_Derricks_(actor)\\\" title=\\\"Cleavant Derricks (actor)\\\">Cleavant Derricks</a> as Suspect #4</li>\\n<li>Dolores Hernández as Pregnant girl</li>\\n<li>Santos Morales as Girl's father</li>\\n<li>Ruth Last as Girl's mother</li>\\n<li>José Rabelo as Girl's uncle</li>\\n<li><a href=\\\"/wiki/Gilbert_Lewis_(actor)\\\" title=\\\"Gilbert Lewis (actor)\\\">Gilbert Lewis</a> as Mob leader</li>\\n<li><a href=\\\"/wiki/Lisa_Loomer\\\" title=\\\"Lisa Loomer\\\">Lisa Loomer</a> as Hooker #1</li>\\n<li>Sandi Franklin as Hooker #2</li>\\n<li>Eric Mourino as Boy on roof</li>\\n<li>Jessica Costello as Girl on roof</li>\\n<li>Gloria Irizarry as Drug dealer</li>\\n<li>Manuel E. Santiago as Intern</li>\\n<li>Joaquin La Habana as Transvestite</li>\\n<li>Fred Strothers as Hospital buyer</li>\\n<li>Sylvia Kuumba Williams as Bartender</li>\\n<li>Patricia Dratel as Hostage</li>\\n<li>Thomas Fiorello as Fence</li>\\
 n<li>M.J. Quinn as Cop</li>\\n<li>Bernie Rachelle as Wedgie Patrol</li>\\n</ul>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"Reception\\\">Reception</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=3\\\" title=\\\"Edit section: Reception\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<p>The film was successful, grossing over $65 million worldwide at its time of release in 1981. Paul Newman was largely praised for his performance, but the movie itself received more negative reviews.</p>\\n<ul>\\n<li><a href=\\\"/wiki/Richard_Schickel\\\" title=\\\"Richard Schickel\\\">Richard Schickel</a>, in <i><a href=\\\"/wiki/Time_(magazine)\\\" title=\\\"Time (magazine)\\\">TIME</a></i>, called it: \\\"more like a made-for-TV movie\\\". He also added: \\\"The film is not quite up to its star\\\".; \\\"...somewhere between <a href=\\\"/wiki/Ba
 rney_Miller\\\" title=\\\"Barney Miller\\\">Barney Miller</a> and the works of <a href=\\\"/wiki/Joseph_Wambaugh\\\" title=\\\"Joseph Wambaugh\\\">Joseph Wambaugh</a>\\\".; and: \\\"But mainly it is Newman, now 56, who gives Fort Apache its modest distinction\\\".<sup id=\\\"cite_ref-2\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-2\\\"><span>[</span>2<span>]</span></a></sup></li>\\n<li><a href=\\\"/wiki/Roger_Ebert\\\" title=\\\"Roger Ebert\\\">Roger Ebert</a>, <i><a href=\\\"/wiki/Chicago_Sun_Times\\\" title=\\\"Chicago Sun Times\\\" class=\\\"mw-redirect\\\">Chicago Sun Times</a></i>, said: \\\"...the most complete collection of cop-movie clichés since John Wayne played a Chicago cop in <i>McQ</i>\\\". (Ebert got this incorrect, in <i><a href=\\\"/wiki/McQ\\\" title=\\\"McQ\\\">McQ</a></i> Wayne played a Seattle policeman, he played a Chicago policeman in <a href=\\\"/wiki/Brannigan_(film)\\\" title=\\\"Brannigan (film)\\\"><i>Brannigan</i></a>.) \\\"There are too many scen
 es that are necessary to the plot but not to the movie, scenes where the life of the movie stops so story details can be filled in\\\". \\\"The movie has several story threads that lead nowhere\\\". But, says about Newman, \\\"He's good in his role,...\\\" But, also calls this more of a TV show.<sup id=\\\"cite_ref-3\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-3\\\"><span>[</span>3<span>]</span></a></sup></li>\\n<li><a href=\\\"/wiki/Variety_(magazine)\\\" title=\\\"Variety (magazine)\\\"><i>Variety</i></a> labeled the film: \\\"... a very patchy picture, strong on dialog and acting and exceedingly weak on story\\\", and criticizes it for its lack of depth.<sup id=\\\"cite_ref-Variety-Review-FATB_4-0\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-Variety-Review-FATB-4\\\"><span>[</span>4<span>]</span></a></sup></li>\\n<li>Nick Sambides, Jr. at <a href=\\\"/wiki/Allmovie\\\" title=\\\"Allmovie\\\">Allmovie</a> calls it \\\"...flinty but otherwise forgettable character stud
 y\\\".<sup id=\\\"cite_ref-5\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-5\\\"><span>[</span>5<span>]</span></a></sup></li>\\n</ul>\\n<ul>\\n<li>The <i><a href=\\\"/wiki/New_York_Post\\\" title=\\\"New York Post\\\">New York Post</a></i> published a photo of Newman on the set with a caption that he stated was inaccurate<sup class=\\\"noprint Inline-Template\\\" style=\\\"white-space:nowrap;\\\">[<i><a href=\\\"/wiki/Wikipedia:Please_clarify\\\" title=\\\"Wikipedia:Please clarify\\\"><span title=\\\"The text near this tag may need clarification or removal of jargon. (December 2011)\\\">clarification needed</span></a></i>]</sup>, calling the paper \\\"a garbage can\\\". Because of the dispute the <i>Post</i> banned him from its pages, even removing his name from movies in the TV listings.<sup id=\\\"cite_ref-digiacomo200412_6-0\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-digiacomo200412-6\\\"><span>[</span>6<span>]</span></a></sup></li>\\n</ul>\\n<h2><span class=\\\"mw-h
 eadline\\\" id=\\\"Legal_issues\\\">Legal issues</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=4\\\" title=\\\"Edit section: Legal issues\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li>Local community groups threatened to file suit against the producers because of the way it depicted their neighborhood in the Bronx and for the depiction of ethnic minorities (Blacks and Puerto Ricans). Because of this pressure some changes were made to the script and a note was added to the title card at the beginning of the film.<sup id=\\\"cite_ref-Variety-Review-FATB_4-1\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-Variety-Review-FATB-4\\\"><span>[</span>4<span>]</span></a></sup><sup id=\\\"cite_ref-7\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-7\\\"><span>[</span>7<span>]</span></a></sup></li>\\n</ul>\\n<ul>\\n<li><i
 >Walker v. Time Life Films, Inc.</i>, 784 F.2d 44 (<a href=\\\"/wiki/United_States_Court_of_Appeals_for_the_Second_Circuit\\\" title=\\\"United States Court of Appeals for the Second Circuit\\\">2d Cir</a>. 1986)</li>\\n</ul>\\n<dl>\\n<dd>\\n<dl>\\n<dd>After the release of the film, an author, Tom Walker, filed a lawsuit against one of the production companies, Time-Life Television Films (legal owner of the script), claiming that the producers infringed on his book <i>Fort Apache</i> (New York: Crowell, 1976. <a href=\\\"/wiki/Special:BookSources/0690010478\\\" class=\\\"internal mw-magiclink-isbn\\\">ISBN 0-690-01047-8</a>). Among other things, Walker, the plaintiff, argued that: \\\"both the book and the film begin with the murder of a black and a white policeman with a handgun at close range; both depict cockfights, drunks, stripped cars, prostitutes and rats; both feature as central characters third- or fourth-generation Irish policemen who live in Queens and frequently drink; b
 oth show disgruntled, demoralized police officers and unsuccessful foot chases of fleeing criminals\\\". But the <a href=\\\"/wiki/United_States_Court_of_Appeals_for_the_Second_Circuit\\\" title=\\\"United States Court of Appeals for the Second Circuit\\\">United States Court of Appeals for the Second Circuit</a> ruled that these are stereo-typical ideas, so called <i>\\\"<a href=\\\"/wiki/Scenes_%C3%A0_faire\\\" title=\\\"Scenes à faire\\\" class=\\\"mw-redirect\\\">scènes à faire</a>\\\"</i> (French for \\\"scenes that must be done\\\"), and that the <a href=\\\"/wiki/United_States_copyright_law\\\" title=\\\"United States copyright law\\\" class=\\\"mw-redirect\\\">United States copyright law</a> does not protect concepts or ideas. The court ruling stated: \\\"the book <i>Fort Apache</i> and the film <i>Fort Apache: The Bronx</i> were not substantially similar beyond [the] level of generalized or otherwise nonprotectible ideas, and thus [the] latter did not infringe copyright 
 of [the] former\\\".<sup id=\\\"cite_ref-MargolickD-NYT_8-0\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-MargolickD-NYT-8\\\"><span>[</span>8<span>]</span></a></sup><sup id=\\\"cite_ref-9\\\" class=\\\"reference\\\"><a href=\\\"#cite_note-9\\\"><span>[</span>9<span>]</span></a></sup></dd>\\n</dl>\\n</dd>\\n</dl>\\n<p><br /></p>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"See_also\\\">See also</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=5\\\" title=\\\"Edit section: See also\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li><a href=\\\"/wiki/List_of_American_films_of_1981\\\" title=\\\"List of American films of 1981\\\">List of American films of 1981</a></li>\\n<li><a href=\\\"/wiki/Fort_Apache_(hostile_place)\\\" title=\\\"Fort Apache (hostile place)\\\">Fort Apache</a></li>\\n<li><a href=\\\"/wiki/Fort_Apache
 _(film)\\\" title=\\\"Fort Apache (film)\\\"><i>Fort Apache</i> (film)</a></li>\\n</ul>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"References\\\">References</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=6\\\" title=\\\"Edit section: References\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<div class=\\\"reflist\\\" style=\\\"list-style-type: decimal;\\\">\\n<ol class=\\\"references\\\">\\n<li id=\\\"cite_note-1\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-1\\\">^</a></b></span> <span class=\\\"reference-text\\\"><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.the-numbers.com/movies/1981/0FABR.php\\\"><i>Fort Apache, The Bronx</i></a>. – The Numbers</span></li>\\n<li id=\\\"cite_note-2\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-2\\\">^</a></b></span> <span
  class=\\\"reference-text\\\"><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.time.com/time/printout/0,8816,954681,00.html#\\\">\\\"Conscience in a Rough Precinct\\\"</a>. – <i><a href=\\\"/wiki/Time_(magazine)\\\" title=\\\"Time (magazine)\\\">TIME</a></i>. – February 16, 1981. – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-3\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-3\\\">^</a></b></span> <span class=\\\"reference-text\\\">Ebert, Roger. – <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://rogerebert.suntimes.com/apps/pbcs.dll/article?AID=/19810101/REVIEWS/101010327/1023\\\">\\\"Fort Apache, The Bronx\\\"</a>. – <i><a href=\\\"/wiki/Chicago_Sun_Times\\\" title=\\\"Chicago Sun Times\\\" class=\\\"mw-redirect\\\">Chicago Sun Times</a></i>. – January 1, 1981 – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-Variety-Review-FATB-4\\\"><span class=\\\"mw-cite-backlink\\\">^ <a href=\\\"#ci
 te_ref-Variety-Review-FATB_4-0\\\"><sup><i><b>a</b></i></sup></a> <a href=\\\"#cite_ref-Variety-Review-FATB_4-1\\\"><sup><i><b>b</b></i></sup></a></span> <span class=\\\"reference-text\\\">Film: <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.variety.com/index.asp?layout=print_review&amp;reviewid=VE1117791034&amp;categoryid=31\\\">\\\"Fort Apache, The Bronx\\\"</a>. – <a href=\\\"/wiki/Variety_(magazine)\\\" title=\\\"Variety (magazine)\\\"><i>Variety</i></a>. – January 1, 1981. – Retrieved: 2008-06-10</span></li>\\n<li id=\\\"cite_note-5\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-5\\\">^</a></b></span> <span class=\\\"reference-text\\\">Sambides, Nick, Jr. – Review: <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.allmovie.com/cg/avg.dll?p=avg&amp;sql=1:18269~T1\\\"><i>Fort Apache, the Bronx\\\"</i></a>. – <a href=\\\"/wiki/Allmovie\\\" title=\\\"Allmovie\\\">Allmovie</a>. – Retrieved: 2008-06-10</spa
 n></li>\\n<li id=\\\"cite_note-digiacomo200412-6\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-digiacomo200412_6-0\\\">^</a></b></span> <span class=\\\"reference-text\\\"><span class=\\\"citation news\\\">DiGiaomo, Frank (December 2004). <a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.vanityfair.com/culture/features/2004/12/pagesix200412.print\\\">\\\"The Gossip Behind the Gossip\\\"</a>. <i>Vanity Fair</i><span class=\\\"reference-accessdate\\\">. Retrieved September 13, 2011</span>.</span><span title=\\\"ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AFort+Apache%2C+The+Bronx&amp;rft.atitle=The+Gossip+Behind+the+Gossip&amp;rft.au=DiGiaomo%2C+Frank&amp;rft.aulast=DiGiaomo%2C+Frank&amp;rft.date=December+2004&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.vanityfair.com%2Fculture%2Ffeatures%2F2004%2F12%2Fpagesix200412.print&amp;rft.jtitle=Vanity+Fair&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal\\\" class=\\\"Z398
 8\\\"><span style=\\\"display:none;\\\">&#160;</span></span></span></li>\\n<li id=\\\"cite_note-7\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-7\\\">^</a></b></span> <span class=\\\"reference-text\\\">Cultural Desk: \\\"'Apache' Film's Debut Protested\\\". – <i><a href=\\\"/wiki/New_York_Times\\\" title=\\\"New York Times\\\" class=\\\"mw-redirect\\\">New York Times</a></i>. – February 7, 1981</span></li>\\n<li id=\\\"cite_note-MargolickD-NYT-8\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-MargolickD-NYT_8-0\\\">^</a></b></span> <span class=\\\"reference-text\\\">Margolick, David. – Legal Notes: \\\"Writer Told 'Ft. Apache' isn't Just His\\\". – <i><a href=\\\"/wiki/New_York_Times\\\" title=\\\"New York Times\\\" class=\\\"mw-redirect\\\">New York Times</a></i>. – August 25, 1985</span></li>\\n<li id=\\\"cite_note-9\\\"><span class=\\\"mw-cite-backlink\\\"><b><a href=\\\"#cite_ref-9\\\">^</a></b></span> <span class=\\\"reference-tex
 t\\\">Beeber, Jessie, and Maura Wogan. – \\\"Is Scènes à Faire Really 'Necessary'?\\\". – <i>Entertainment, Arts and Sports Law Journal</i>. – Spring 2004. – Vol. 15, No. 1</span></li>\\n</ol>\\n</div>\\n<h2><span class=\\\"mw-headline\\\" id=\\\"External_links\\\">External links</span><span class=\\\"mw-editsection\\\"><span class=\\\"mw-editsection-bracket\\\">[</span><a href=\\\"/w/index.php?title=Fort_Apache,_The_Bronx&amp;action=edit&amp;section=7\\\" title=\\\"Edit section: External links\\\">edit</a><span class=\\\"mw-editsection-bracket\\\">]</span></span></h2>\\n<ul>\\n<li><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.imdb.com/title/tt0082402/\\\"><i>Fort Apache, The Bronx</i></a> at the <a href=\\\"/wiki/Internet_Movie_Database\\\" title=\\\"Internet Movie Database\\\">Internet Movie Database</a></li>\\n<li><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.allmovie.com/movie/v18269\\\"><i>Fort Apache, The Bronx</i><
 /a> at <a href=\\\"/wiki/Allmovie\\\" title=\\\"Allmovie\\\">allmovie</a></li>\\n<li><a rel=\\\"nofollow\\\" class=\\\"external text\\\" href=\\\"http://www.rottentomatoes.com/m/fort_apache_the_bronx/\\\"><i>Fort Apache, The Bronx</i></a> at <a href=\\\"/wiki/Rotten_Tomatoes\\\" title=\\\"Rotten Tomatoes\\\">Rotten Tomatoes</a></li>\\n</ul>\\n<table cellspacing=\\\"0\\\" class=\\\"navbox\\\" style=\\\"border-spacing:0;\\\">\\n<tr>\\n<td style=\\\"padding:2px;\\\">\\n<table cellspacing=\\\"0\\\" class=\\\"nowraplinks collapsible autocollapse navbox-inner\\\" style=\\\"border-spacing:0;background:transparent;color:inherit;\\\">\\n<tr>\\n<th scope=\\\"col\\\" class=\\\"navbox-title\\\" colspan=\\\"2\\\">\\n<div class=\\\"plainlinks hlist navbar mini\\\">\\n<ul>\\n<li class=\\\"nv-view\\\"><a href=\\\"/wiki/Template:Daniel_Petrie\\\" title=\\\"Template:Daniel Petrie\\\"><span title=\\\"View this template\\\" style=\\\";;background:none transparent;border:none;;\\\">v</span></a></li>\\n<
 li class=\\\"nv-talk\\\"><a href=\\\"/wiki/Template_talk:Daniel_Petrie\\\" title=\\\"Template talk:Daniel Petrie\\\"><span title=\\\"Discuss this template\\\" style=\\\";;background:none transparent;border:none;;\\\">t</span></a></li>\\n<li class=\\\"nv-edit\\\"><a class=\\\"external text\\\" href=\\\"//en.wikipedia.org/w/index.php?title=Template:Daniel_Petrie&amp;action=edit\\\"><span title=\\\"Edit this template\\\" style=\\\";;background:none transparent;border:none;;\\\">e</span></a></li>\\n</ul>\\n</div>\\n<div style=\\\"font-size:110%;\\\">Films directed by <a href=\\\"/wiki/Daniel_Petrie\\\" title=\\\"Daniel Petrie\\\">Daniel Petrie</a></div>\\n</th>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1960s</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25
 em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/The_Bramble_Bush\\\" title=\\\"The Bramble Bush\\\">The Bramble Bush</a></i> (1960)</li>\\n<li><i><a href=\\\"/wiki/A_Raisin_in_the_Sun_(1961_film)\\\" title=\\\"A Raisin in the Sun (1961 film)\\\">A Raisin in the Sun</a></i> (1961)</li>\\n<li><i><a href=\\\"/wiki/The_Main_Attraction_(film)\\\" title=\\\"The Main Attraction (film)\\\">The Main Attraction</a></i> (1962)</li>\\n<li><i><a href=\\\"/wiki/Stolen_Hours\\\" title=\\\"Stolen Hours\\\">Stolen Hours</a></i> (1963)</li>\\n<li><i><a href=\\\"/wiki/The_Idol_(film)\\\" title=\\\"The Idol (film)\\\">The Idol</a></i> (1966)</li>\\n<li><i><a href=\\\"/wiki/The_Spy_with_a_Cold_Nose\\\" title=\\\"The Spy with a Cold Nose\\\">The Spy with a Cold Nose</a></i> (1966)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1970s</th>\\n<td class=\\\"navbox-list navbox-even hlist\\\" styl
 e=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Moon_of_the_Wolf\\\" title=\\\"Moon of the Wolf\\\">Moon of the Wolf</a></i> (1973)</li>\\n<li><i><a href=\\\"/wiki/The_Neptune_Factor\\\" title=\\\"The Neptune Factor\\\">The Neptune Factor</a></i> (1973)</li>\\n<li><i><a href=\\\"/wiki/The_Gun_and_the_Pulpit\\\" title=\\\"The Gun and the Pulpit\\\">The Gun and the Pulpit</a></i> (1974)</li>\\n<li><i><a href=\\\"/wiki/Buster_and_Billie\\\" title=\\\"Buster and Billie\\\">Buster and Billie</a></i> (1974)</li>\\n<li><i><a href=\\\"/wiki/Eleanor_and_Franklin\\\" title=\\\"Eleanor and Franklin\\\">Eleanor and Franklin</a></i> (1976)</li>\\n<li><i><a href=\\\"/wiki/Lifeguard_(film)\\\" title=\\\"Lifeguard (film)\\\">Lifeguard</a></i> (1976)</li>\\n<li><i><a href=\\\"/wiki/Sybil_(1976_film)\\\" title=\\\"Sybil (1976 film)\\\">Sybil</a></i> (1976)</li>\\n<li><i><a href
 =\\\"/wiki/Eleanor_and_Franklin:_The_White_House_Years\\\" title=\\\"Eleanor and Franklin: The White House Years\\\">Eleanor and Franklin: The White House Years</a></i> (1977)</li>\\n<li><i><a href=\\\"/wiki/The_Betsy\\\" title=\\\"The Betsy\\\">The Betsy</a></i> (1978)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1980s</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Resurrection_(1980_film)\\\" title=\\\"Resurrection (1980 film)\\\">Resurrection</a></i> (1980)</li>\\n<li><i><strong class=\\\"selflink\\\">Fort Apache, The Bronx</strong></i> (1981)</li>\\n<li><i><a href=\\\"/wiki/Six_Pack_(film)\\\" title=\\\"Six Pack (film)\\\">Six Pack</a></i> (1982)</li>\\n<li><i><a href=\\\"/wiki/
 The_Dollmaker\\\" title=\\\"The Dollmaker\\\">The Dollmaker</a></i> (1984)</li>\\n<li><i><a href=\\\"/wiki/The_Bay_Boy\\\" title=\\\"The Bay Boy\\\">The Bay Boy</a></i> (1984)</li>\\n<li><i><a href=\\\"/wiki/Square_Dance_(film)\\\" title=\\\"Square Dance (film)\\\">Square Dance</a></i> (1987)</li>\\n<li><i><a href=\\\"/wiki/Rocket_Gibraltar\\\" title=\\\"Rocket Gibraltar\\\">Rocket Gibraltar</a></i> (1988)</li>\\n<li><i><a href=\\\"/wiki/Cocoon:_The_Return\\\" title=\\\"Cocoon: The Return\\\">Cocoon: The Return</a></i> (1988)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">1990s</th>\\n<td class=\\\"navbox-list navbox-even hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Lassie_(1994_film)\\\" title=\\\"Lassie (1994 film)\\\">Lass
 ie</a></i> (1994)</li>\\n<li><i><a href=\\\"/wiki/The_Assistant_(1998_film)\\\" title=\\\"The Assistant (1998 film)\\\">The Assistant</a></i> (1998)</li>\\n<li><i><a href=\\\"/wiki/Inherit_the_Wind_(1999_film)\\\" title=\\\"Inherit the Wind (1999 film)\\\">Inherit the Wind</a></i> (1999)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">2000s</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Wild_Iris_(film)\\\" title=\\\"Wild Iris (film)\\\">Wild Iris</a></i> (2001)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n</table>\\n</td>\\n</tr>\\n</table>\\n<table cellspacing=\\\"0\\\" class=\\\"navbox\\\" style=\\\"border-spacing:0;\\\">\\n<tr>\\n<td style=\\\"padding:2px;\\\">\\n<table cellspacing=\\\"
 0\\\" class=\\\"nowraplinks collapsible autocollapse navbox-inner\\\" style=\\\"border-spacing:0;background:transparent;color:inherit;\\\">\\n<tr>\\n<th scope=\\\"col\\\" class=\\\"navbox-title\\\" colspan=\\\"2\\\">\\n<div class=\\\"plainlinks hlist navbar mini\\\">\\n<ul>\\n<li class=\\\"nv-view\\\"><a href=\\\"/wiki/Template:Heywood_Gould\\\" title=\\\"Template:Heywood Gould\\\"><span title=\\\"View this template\\\" style=\\\";;background:none transparent;border:none;;\\\">v</span></a></li>\\n<li class=\\\"nv-talk\\\"><a href=\\\"/wiki/Template_talk:Heywood_Gould\\\" title=\\\"Template talk:Heywood Gould\\\"><span title=\\\"Discuss this template\\\" style=\\\";;background:none transparent;border:none;;\\\">t</span></a></li>\\n<li class=\\\"nv-edit\\\"><a class=\\\"external text\\\" href=\\\"//en.wikipedia.org/w/index.php?title=Template:Heywood_Gould&amp;action=edit\\\"><span title=\\\"Edit this template\\\" style=\\\";;background:none transparent;border:none;;\\\">e</span></a></
 li>\\n</ul>\\n</div>\\n<div style=\\\"font-size:110%;\\\"><a href=\\\"/wiki/Heywood_Gould\\\" title=\\\"Heywood Gould\\\">Heywood Gould</a></div>\\n</th>\\n</tr>\\n<tr style=\\\"height:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">Films</th>\\n<td class=\\\"navbox-list navbox-odd hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/One_Good_Cop\\\" title=\\\"One Good Cop\\\">One Good Cop</a></i> (1991)</li>\\n<li><i><a href=\\\"/wiki/Trial_by_Jury_(film)\\\" title=\\\"Trial by Jury (film)\\\">Trial by Jury</a></i> (1994)</li>\\n<li><i><a href=\\\"/wiki/Mistrial_(1996_film)\\\" title=\\\"Mistrial (1996 film)\\\">Mistrial</a></i> (1996)</li>\\n<li><i><a href=\\\"/wiki/Double_Bang\\\" title=\\\"Double Bang\\\">Double Bang</a></i> (2001)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n<tr style=\\\"heigh
 t:2px;\\\">\\n<td colspan=\\\"2\\\"></td>\\n</tr>\\n<tr>\\n<th scope=\\\"row\\\" class=\\\"navbox-group\\\">Screenplays</th>\\n<td class=\\\"navbox-list navbox-even hlist\\\" style=\\\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;\\\">\\n<div style=\\\"padding:0em 0.25em;\\\">\\n<ul>\\n<li><i><a href=\\\"/wiki/Rolling_Thunder_(film)\\\" title=\\\"Rolling Thunder (film)\\\">Rolling Thunder</a></i> (1977)</li>\\n<li><i><a href=\\\"/wiki/The_Boys_from_Brazil_(film)\\\" title=\\\"The Boys from Brazil (film)\\\">The Boys from Brazil</a></i> (1978)</li>\\n<li><i><strong class=\\\"selflink\\\">Fort Apache, The Bronx</strong></i> (1981)</li>\\n<li><i><a href=\\\"/wiki/Streets_of_Gold_(film)\\\" title=\\\"Streets of Gold (film)\\\">Streets of Gold</a></i> (1986)</li>\\n<li><i><a href=\\\"/wiki/Cocktail_(1988_film)\\\" title=\\\"Cocktail (1988 film)\\\">Cocktail</a></i> (1988)</li>\\n</ul>\\n</div>\\n</td>\\n</tr>\\n</table>\\n</td>\\n</tr>\\n</table>\\
 n\\n\\n<!-- \\nNewPP limit report\\nParsed by mw1206\\nCPU time usage: 0.536 seconds\\nReal time usage: 0.615 seconds\\nPreprocessor visited node count: 873/1000000\\nPreprocessor generated node count: 4510/1500000\\nPost‐expand include size: 28730/2048000 bytes\\nTemplate argument size: 1418/2048000 bytes\\nHighest expansion depth: 11/40\\nExpensive parser function count: 5/500\\nLua time usage: 0.068/10.000 seconds\\nLua memory usage: 1.57 MB/50 MB\\n-->\\n\\n<!-- Saved in parser cache with key enwiki:pcache:idhash:8009696-0!*!0!!en!4!* and timestamp 20140323010622\\n -->\\n\",\"categories\":[\"Wikipedia_articles_needing_clarification_from_December_2011\",\"1981_films\",\"1980s_drama_films\",\"Docudramas\",\"American_films\",\"English-language_films\",\"Fictional_portrayals_of_the_New_York_City_Police_Department\",\"Films_set_in_the-Bronx\",\"Films_directed_by_Daniel_Petrie\",\"20th_Century_Fox_films\"],\"created_at\":\"Sun, 23 Mar 2014 01:06:21 +0000\",\"diff\":{\"changes\":{\"
 added\":[\"[[Category:Fictional portrayals of the New York City Police Department]]\"],\"removed\":[]},\"from\":\"591208870\",\"htmldiff\":\"<tr>\\n  <td colspan=\\\"2\\\" class=\\\"diff-lineno\\\">Line 130:</td>\\n  <td colspan=\\\"2\\\" class=\\\"diff-line

<TRUNCATED>

[40/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
index ae40315..204e7ed 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/board_datasift_json.txt
@@ -1,4160 +1,4160 @@
-"{\"board\":{\"anchor\":\"post8881971\",\"author\":{\"avatar\":\"http://www.gstatic.com/psa/static/1.gif\",\"link\":\"http://forums.techguy.org/members/496500-phantom010.html\",\"location\":\"Cyberspace\",\"name\":\"Phantom010\",\"registered\":\"Sun, 01 Mar 2009 00:00:00 +0000\",\"username\":\"Phantom010\"},\"boardname\":\"Tech Support Guy - Free help for Windows 7, Vista, XP, and more!\",\"categories\":\"Software\",\"content\":\"<div class=\\\"KonaBody\\\"><div style=\\\"margin:20px; margin-top:5px; \\\"> <div class=\\\"smallfont\\\" style=\\\"margin-bottom:2px\\\">Quote:</div> <table cellpadding=\\\"6\\\" cellspacing=\\\"0\\\" border=\\\"0\\\" width=\\\"100%\\\"> <tr> <td class=\\\"alt2\\\" style=\\\"border:1px inset\\\"> <div>\\n\\t\\t\\t\\t\\tOriginally Posted by <strong>donsor</strong> <a href=\\\"http://forums.techguy.org/all-other-software/1122437-apache-open-office.html#post8881771\\\" rel=\\\"nofollow\\\"><img class=\\\"inlineimg sprite-viewpost\\\" pagespeed_lazy_src=\\\"h
 ttp://attach.tsgstatic.com/tsg/styles/common/blank.png\\\" width=\\\"12\\\" height=\\\"12\\\" alt=\\\"View Post\\\" src=\\\"http://www.gstatic.com/psa/static/1.gif\\\" onload=\\\"pagespeed.lazyLoadImages.loadIfVisible(this);\\\"/></a> </div> <div style=\\\"font-style:italic\\\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.</div> </td> </tr> </table> </div>What kind of problem?</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sun, 23 Mar 2014 09:18:13 +0000\",\"created_at\":\"Sat, 22 Mar 2014 16:03:00 -0500\",\"domain\":\"www.techguy.org\",\"forumid\":\"469bbbf115a\",\"forumname\":\"All Other Software\",\"forumurl\":\"http://forums.techguy.org/18-all-other-software/\",\"gmt\":\"-5\",\"id\":\"1e3b20559a7daa00e072105aaa3de61e\",\"language\":\"English\",\"link\":\"http://forums.techguy.org/all-other-software/1122437-apache-open-office.html#post8881971\",\"siteid\":\"3cbc7f773\",\"thread\":\"http://forums.techguy.
 org/all-other-software/1122437-apache-open-office.html\",\"threadid\":\"1122437\",\"title\":\"Apache Open Office\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"http://www.gstatic.com/psa/static/1.gif\",\"link\":\"http://forums.techguy.org/members/496500-phantom010.html\",\"location\":\"Cyberspace\",\"name\":\"Phantom010\",\"registered\":\"Sun, 01 Mar 2009 00:00:00 +0000\",\"username\":\"Phantom010\"},\"content\":\"<div class=\\\"KonaBody\\\"><div style=\\\"margin:20px; margin-top:5px; \\\"> <div class=\\\"smallfont\\\" style=\\\"margin-bottom:2px\\\">Quote:</div> <table cellpadding=\\\"6\\\" cellspacing=\\\"0\\\" border=\\\"0\\\" width=\\\"100%\\\"> <tr> <td class=\\\"alt2\\\" style=\\\"border:1px inset\\\"> <div>\\n\\t\\t\\t\\t\\tOriginally Posted by <strong>donsor</strong> <a href=\\\"http://forums.techguy.org/all-other-software/1122437-apache-open-office.html#post8881771\\\" rel=\\\"nofollow\\\"><img class=\\\"inlineimg sprite-viewpost\\\"
  pagespeed_lazy_src=\\\"http://attach.tsgstatic.com/tsg/styles/common/blank.png\\\" width=\\\"12\\\" height=\\\"12\\\" alt=\\\"View Post\\\" src=\\\"http://www.gstatic.com/psa/static/1.gif\\\" onload=\\\"pagespeed.lazyLoadImages.loadIfVisible(this);\\\"/></a> </div> <div style=\\\"font-style:italic\\\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.</div> </td> </tr> </table> </div>What kind of problem?</div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 16:03:00 -0500\",\"id\":\"1e3b20559a7daa00e072105aaa3de61e\",\"link\":\"http://forums.techguy.org/all-other-software/1122437-apache-open-office.html#post8881971\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache Open Office\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-4},\"title\":{\"sentiment\":0}}}"
-"{\"board\":{\"anchor\":\"post11387078\",\"author\":{\"link\":\"http://forum.zwame.pt/member.php?u=74541\",\"name\":\"kevinmichael\",\"registered\":\"Thu, 27 Sep 2007 00:00:00 +0000\",\"username\":\"kevinmichael\"},\"boardname\":\"ZWAME Fórum\",\"categories\":\"Hardware\",\"content\":\"<div class=\\\"postrow\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\n\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t<div class=\\\"content\\\">\\n\\t\\t\\t\\t\\t<div id=\\\"post_message_11387078\\\">\\n\\t\\t\\t\\t\\t\\t<blockquote class=\\\"postcontent restore \\\">\\n\\t\\t\\t\\t\\t\\t\\tEstou com um dilema.<br />\\n<br />\\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300€ com características semelhantes ao MSI GE70 2PE APACHE PRO (~1150€) exceto a gráfica que é a r9 (4gb) enquanto que a do msi é a gtx860 (2Gb). Acham que compensa? <br />\\n<br />\\nAqui ficam as características de cada um<br />\\n<br />\\n<br />\\n<div class=\\\"cms_table\\\"><table class=\\\"cms_table\\\"
 ><tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\"><b><i>P170SM<br />\\n<br />\\n</i></b>Processador:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Intel i7 4700MQ<br />\\n<br />\\nGráfica:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">AMD Radeon R9 M290X 4GB DDR5</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Memória RAM:<br />\\n8GB Vengence<br />\\n<br />\\nDisco hdd:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Scorpio Black 750 GB<br />\\n<br />\\nLeitor ótico:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">SAMSUNG DVD<br />\\n<br />\\nWireless:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Intel N-2230 300 Mbps</TD>\\n</tr>\\n</table></div>\\n<br />\
 \n<br />\\n<br />\\n<b><i>MSI</i></b><br />\\n<br />\\nProcessador:<br />\\nIntel® Core™ i7 4700MQ<br />\\n<br />\\nChipset<br />\\nIntel® HM87<br />\\n<br />\\nMemória<br />\\n8GB DDR3L 1600 MHz, (8Gb*1)<br />\\n<br />\\nEcrã<br />\\n17\\\" HD (1920X1080) , Anti-glare<br />\\n<br />\\nPlaca gráfica <br />\\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br />\\n<br />\\nHDD (GB)<br />\\n1x 1 TB 7200rpm HDD<br />\\n<br />\\nLeitor / Gravador DVDs<br />\\nDVD Super Multi<br />\\n<br />\\nAudio<br />\\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br />\\n<br />\\nWebcam<br />\\nHD type (30fps@720p)<br />\\n<br />\\nLeitor cartões<br />\\nSD (XC/HC)<br />\\n<br />\\nLAN<br />\\nKiller™ E2200<br />\\n<br />\\nWireless LAN<br />\\n802.11 ac<br />\\nBluetooth 4.0\\n\\t\\t\\t\\t\\t\\t</blockquote>\\n\\t\\t\\t\\t\\t</div>\\n\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t</div>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"cleardiv\\\"></div>\",\"contenttype\":\"html\",\"countrycode\":\"PT
 \",\"crawled\":\"Sun, 23 Mar 2014 19:41:39 +0000\",\"created_at\":\"Sat, 22 Mar 2014 22:11:00 +0100\",\"domain\":\"www.zwame.pt\",\"forumid\":\"4e9be0585b\",\"forumname\":\"Portáteis\",\"forumurl\":\"http://forum.zwame.pt/forumdisplay.php?f=136\",\"gmt\":\"+1\",\"id\":\"1e3b20677c20aa00e072a04d81597bd0\",\"language\":\"Portuguese\",\"link\":\"http://forum.zwame.pt/showthread.php?t=852065&page=2#post11387078\",\"siteid\":\"4e9bdf6356\",\"thread\":\"http://forum.zwame.pt/showthread.php?t=852065&page=2\",\"threadid\":\"852065\",\"title\":\"Portátil - MSI GE60 2PE APACHE PRO\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"http://forum.zwame.pt/member.php?u=74541\",\"name\":\"kevinmichael\",\"registered\":\"Thu, 27 Sep 2007 00:00:00 +0000\",\"username\":\"kevinmichael\"},\"content\":\"<div class=\\\"postrow\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\n\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t<div class=\\\"content\\\">\\n\\t\\t\\t\\t\\t<
 div id=\\\"post_message_11387078\\\">\\n\\t\\t\\t\\t\\t\\t<blockquote class=\\\"postcontent restore \\\">\\n\\t\\t\\t\\t\\t\\t\\tEstou com um dilema.<br />\\n<br />\\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300€ com características semelhantes ao MSI GE70 2PE APACHE PRO (~1150€) exceto a gráfica que é a r9 (4gb) enquanto que a do msi é a gtx860 (2Gb). Acham que compensa? <br />\\n<br />\\nAqui ficam as características de cada um<br />\\n<br />\\n<br />\\n<div class=\\\"cms_table\\\"><table class=\\\"cms_table\\\"><tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\"><b><i>P170SM<br />\\n<br />\\n</i></b>Processador:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Intel i7 4700MQ<br />\\n<br />\\nGráfica:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">AMD Radeon R9 M290X 4GB DDR5</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table
 _tr\\\"><TD class=\\\"cms_table_td\\\">Memória RAM:<br />\\n8GB Vengence<br />\\n<br />\\nDisco hdd:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Scorpio Black 750 GB<br />\\n<br />\\nLeitor ótico:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">SAMSUNG DVD<br />\\n<br />\\nWireless:</TD>\\n</tr>\\n<tr valign=\\\"top\\\" class=\\\"cms_table_tr\\\"><TD class=\\\"cms_table_td\\\">Intel N-2230 300 Mbps</TD>\\n</tr>\\n</table></div>\\n<br />\\n<br />\\n<br />\\n<b><i>MSI</i></b><br />\\n<br />\\nProcessador:<br />\\nIntel® Core™ i7 4700MQ<br />\\n<br />\\nChipset<br />\\nIntel® HM87<br />\\n<br />\\nMemória<br />\\n8GB DDR3L 1600 MHz, (8Gb*1)<br />\\n<br />\\nEcrã<br />\\n17\\\" HD (1920X1080) , Anti-glare<br />\\n<br />\\nPlaca gráfica <br />\\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br />\\n<br />\\nHDD (GB)<br />\\n1x 1 TB 7200rpm HDD<br />\\n<br />\\nLeitor / Gravador DVDs<br />
 \\nDVD Super Multi<br />\\n<br />\\nAudio<br />\\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br />\\n<br />\\nWebcam<br />\\nHD type (30fps@720p)<br />\\n<br />\\nLeitor cartões<br />\\nSD (XC/HC)<br />\\n<br />\\nLAN<br />\\nKiller™ E2200<br />\\n<br />\\nWireless LAN<br />\\n802.11 ac<br />\\nBluetooth 4.0\\n\\t\\t\\t\\t\\t\\t</blockquote>\\n\\t\\t\\t\\t\\t</div>\\n\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t</div>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"cleardiv\\\"></div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 22:11:00 +0100\",\"id\":\"1e3b20677c20aa00e072a04d81597bd0\",\"link\":\"http://forum.zwame.pt/showthread.php?t=852065&page=2#post11387078\",\"received_at\":4743640457867795261,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Portátil - MSI GE60 2PE APACHE PRO\",\"type\":\"board\"},\"language\":{\"confidence\":66,\"tag\":\"es\",\"tag_extended\":\"es\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"MSI\",\"sentiment\":0
 ,\"confident\":1,\"label\":\"city\",\"evidence\":1,\"type\":\"Place\",\"about\":1,\"themes\":[\"com características\"]},{\"name\":\"GE70 2PE\",\"sentiment\":0,\"confident\":1,\"label\":\"postcode\",\"evidence\":1,\"type\":\"Place\",\"about\":1,\"themes\":[\"com características\"]}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"MSI\",\"sentiment\":0,\"confident\":1,\"label\":\"city\",\"evidence\":4,\"type\":\"Place\",\"about\":1},{\"name\":\"GE60 2PE\",\"sentiment\":0,\"confident\":1,\"label\":\"postcode\",\"evidence\":4,\"type\":\"Place\",\"about\":1}],\"sentiment\":0}}}"
-"{\"board\":{\"author\":{\"avatar\":\"https://www.gravatar.com/avatar/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1\",\"link\":\"http://serverfault.com/users/213684/user3450728\",\"name\":\"user3450728\",\"username\":\"user3450728\"},\"boardname\":\"Questions - Server Fault\",\"categories\":\"Hardware\",\"content\":\"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:</p>\\n\\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\\nINFO: Pausing Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\\nSEVERE: Protocol handler pause failed\\njava.net.UnknownHostException: hostname: hostname: Name or service not known\\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\\n    at org.apache.jk.common.Chan
 nelSocket.pause(ChannelSocket.java:284)\\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\\n    at java.lang.reflect.Method.invoke(Method.java:606)\\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\\n    at org.apache.catalina.startup.Bootstrap.main(Bootstra
 p.java:414)\\nCaused by: java.net.UnknownHostException: hostname: Name or service not known\\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\\n    ... 15 more\\n\\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\\nINFO: Stopping service Catalina\\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\\nINFO: Stopping Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib\\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\\nINFO: Ini
 tializing Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\\nINFO: Initialization processed in 309 ms\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\\nINFO: Starting service Catalina\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\\nINFO: Starting Servlet Engine: Apache Tomcat/6.0.24\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\\nINFO: Deploying configuration descriptor solr.xml\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\\nWARNING: A docBase /usr/share/tomcat6/webapps/solr.war inside the host appBase has been specified, and will be ignored\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\\nSEVERE: Error filterStart\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\\nSEVERE: Context [/solr] startup failed due to previous errors\\nMar 22, 2014 4:25:31 PM org.apache.co
 yote.http11.Http11Protocol start\\nINFO: Starting Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\\nINFO: JK: ajp13 listening on /0.0.0.0:8009\\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\\nINFO: Jk running ID=0 time=0/11  config=null\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\\nINFO: Server startup in 340 ms\\n</code></pre>\\n\\n<p>I'm running this configuration locally on the server (localhost).</p>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Mon, 24 Mar 2014 08:30:47 +0000\",\"created_at\":\"Sat, 22 Mar 2014 21:48:00 +0000\",\"domain\":\"serverfault.com\",\"forumid\":\"4c8963bd4\",\"forumname\":\"Forum\",\"forumurl\":\"http://serverfault.com/questions?sort=newest\",\"id\":\"1e3b20ba2fb2a800e072aadb0d45650a\",\"language\":\"English\",\"link\":\"http://serverfault.com/q/583910#\",\"siteid\":\"4c8963bc2\",\"thread\":\"http://serverfault.com/q/583910\",\"threadid\":\"583910\",\
 "threadstarter\":1,\"title\":\"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: hostname: hostname: Name or service not known\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"avatar\":\"https://www.gravatar.com/avatar/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1\",\"link\":\"http://serverfault.com/users/213684/user3450728\",\"name\":\"user3450728\",\"username\":\"user3450728\"},\"content\":\"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:</p>\\n\\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\\nINFO: Pausing Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\\nSEVERE: Protocol handler pause failed\\njava.net.UnknownHostException: hostname: hostname: Name or service not known\\n    at java.net.InetAddress.getLocalHost(Ine
 tAddress.java:1473)\\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\\n    at org.apache.jk.common.ChannelSocket.pause(ChannelSocket.java:284)\\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\\n    at java.lang.reflect.Method.invoke(Method.java:606
 )\\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\\nCaused by: java.net.UnknownHostException: hostname: Name or service not known\\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\\n    ... 15 more\\n\\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\\nINFO: Stopping service Catalina\\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\\nINFO: Stopping Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/jav
 a/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib\\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\\nINFO: Initializing Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\\nINFO: Initialization processed in 309 ms\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\\nINFO: Starting service Catalina\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\\nINFO: Starting Servlet Engine: Apache Tomcat/6.0.24\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\\nINFO: Deploying configuration descriptor solr.xml\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\\nWARNING: A docBase /usr/share/tomcat6/webapps/solr.war inside the host appBase has been specified, and will be ignored\\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\\nSEVERE: Error filterStart\\nMar 22, 2014 4:25:31 PM org.apache.cata
 lina.core.StandardContext start\\nSEVERE: Context [/solr] startup failed due to previous errors\\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol start\\nINFO: Starting Coyote HTTP/1.1 on http-8080\\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\\nINFO: JK: ajp13 listening on /0.0.0.0:8009\\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\\nINFO: Jk running ID=0 time=0/11  config=null\\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\\nINFO: Server startup in 340 ms\\n</code></pre>\\n\\n<p>I'm running this configuration locally on the server (localhost).</p>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 21:48:00 +0000\",\"id\":\"1e3b20ba2fb2a800e072aadb0d45650a\",\"link\":\"http://serverfault.com/q/583910#\",\"received_at\":4743640653856312918,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: hostname: hostname: Name o
 r service not known\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Mar 22, 2014\",\"sentiment\":-5,\"confident\":1,\"label\":\"Date\",\"evidence\":6,\"type\":\"Pattern\",\"about\":1,\"themes\":[\"previous errors\",\"init INFO\",\"ajp13 listening\",\"tomcat6 service configured\",\"pause INFO\",\"optimal performance\",\"production environments\"]},{\"name\":\"INFO\",\"sentiment\":-7,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"previous errors\",\"init INFO\",\"ajp13 listening\",\"pause INFO\",\"optimal performance\",\"production environments\"]},{\"name\":\"8080 Mar 22\",\"sentiment\":-19,\"confident\":1,\"label\":\"Date\",\"evidence\":7,\"type\":\"Pattern\",\"about\":1,\"themes\":[\"previous errors\",\"init INFO\",\"ajp13 listening\",\"pause INFO\",\"optimal performance\",\"production environments\"]},{\"name\":\"6.0.24 Mar 22\",\"
 sentiment\":-17,\"confident\":1,\"label\":\"Date\",\"evidence\":3,\"type\":\"Pattern\",\"about\":1,\"themes\":[\"optimal performance\",\"production environments\",\"previous errors\",\"init INFO\",\"ajp13 listening\"]},{\"name\":\"8009 Mar 22\",\"sentiment\":-7,\"confident\":1,\"label\":\"Date\",\"evidence\":5,\"type\":\"Pattern\",\"about\":0,\"themes\":[\"previous errors\",\"init INFO\",\"ajp13 listening\"]}],\"sentiment\":-2},\"title\":{\"sentiment\":-5}}}"
-"{\"board\":{\"anchor\":\"117232\",\"author\":{\"avatar\":\"http://www.moteroscolombia.com/images/comprofiler/tn13165_530e826f22d7c.jpg\",\"link\":\"http://www.moteroscolombia.com/component/comprofiler/userprofile/KrOnK89.html\",\"name\":\"KrOnK89\",\"username\":\"KrOnK89\"},\"boardname\":\"Categorías - Moteros Colombia\",\"categories\":\"Modern Street\",\"content\":\"<div class=\\\"kmsgtext\\\">\\n\\t\\tmuchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella.\\t</div>\",\"contenttype
 \":\"html\",\"countrycode\":\"CO\",\"crawled\":\"Sun, 23 Mar 2014 04:35:09 +0000\",\"created_at\":\"Sat, 22 Mar 2014 21:53:00 +0000\",\"domain\":\"www.moteroscolombia.com\",\"forumid\":\"50f63fdc3d\",\"forumname\":\"TVS\",\"forumurl\":\"http://www.moteroscolombia.com/foro/22-tvs.html\",\"id\":\"1e3b20c55cb8a600e0722dd61ff7876a\",\"language\":\"Spanish\",\"link\":\"http://www.moteroscolombia.com/foro/22-tvs/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232\",\"siteid\":\"50f63fd93a2\",\"thread\":\"http://www.moteroscolombia.com/foro/22-tvs/112105-tvs-apache-rtr-beast-160180-2014.html?start=80\",\"threadid\":\"112105-tvs-apache-rtr-beast-160180-2014\",\"title\":\"TVS Apache RTR Beast 160/180 (2014)\",\"topics\":\"Motorcycle\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"http://www.moteroscolombia.com/images/comprofiler/tn13165_530e826f22d7c.jpg\",\"link\":\"http://www.moteroscolombia.com/component/comprofiler/userprofile/KrOnK89.html\",\"name\":\"KrOnK89\",\
 "username\":\"KrOnK89\"},\"content\":\"<div class=\\\"kmsgtext\\\">\\n\\t\\tmuchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella.\\t</div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 21:53:00 +0000\",\"id\":\"1e3b20c55cb8a600e0722dd61ff7876a\",\"link\":\"http://www.moteroscolombia.com/foro/22-tvs/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TVS Apache RTR Beast 160/180 (2014)\",\"type\":\"
 board\"},\"language\":{\"confidence\":99,\"tag\":\"es\",\"tag_extended\":\"es\"},\"salience\":{\"content\":{\"sentiment\":-3,\"topics\":[{\"name\":\"Alimentos\",\"score\":0.58399718999863,\"additional\":\"muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella.\",\"hits\":0},{\"name\":\"Automotriz\",\"score\":0.57611888647079,\"additional\":\"muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo
  raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella.\",\"hits\":0},{\"name\":\"Energía natural\",\"score\":0.4619414806366,\"additional\":\"muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de mu
 chos y la llevare a PDA, hay les seguiré comentando como me va con ella.\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"board\":{\"anchor\":\"117233\",\"author\":{\"avatar\":\"http://www.moteroscolombia.com/images/comprofiler/tn11438_53053e07eabfe.jpg\",\"link\":\"http://www.moteroscolombia.com/component/comprofiler/userprofile/MORRIS333.html\",\"name\":\"MORRIS333\",\"username\":\"MORRIS333\"},\"boardname\":\"Categorías - Moteros Colombia\",\"categories\":\"Modern Street\",\"content\":\"<div class=\\\"kmsgtext\\\">\\n\\t\\t<b>KrOnK89 escribió:</b>\\n<div class=\\\"kmsgtext-quote\\\">muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay l
 es seguiré comentando como me va con ella.</div><i><br />\\nGracias por la información amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un daño peor, pero igual no te preocupes que si esta en garantía te lo tienen que solucionar, lo único malo es quedarse sin moto por esos malos mecánicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.</i>  <img src=\\\"/components/com_kunena/template/default/images/emoticons/wink.png\\\" width=\\\"20\\\" height=\\\"20\\\" alt=\\\";)\\\" title=\\\";)\\\" class=\\\"bbcode_smiley\\\" />\\t</div>\",\"contenttype\":\"html\",\"countrycode\":\"CO\",\"crawled\":\"Sun, 23 Mar 2
 014 04:35:10 +0000\",\"created_at\":\"Sat, 22 Mar 2014 22:10:00 +0000\",\"domain\":\"www.moteroscolombia.com\",\"forumid\":\"50f63fdc3d\",\"forumname\":\"TVS\",\"forumurl\":\"http://www.moteroscolombia.com/foro/22-tvs.html\",\"id\":\"1e3b20eb5c32ac00e072bf86636ba614\",\"language\":\"Spanish\",\"link\":\"http://www.moteroscolombia.com/foro/22-tvs/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233\",\"siteid\":\"50f63fd93a2\",\"thread\":\"http://www.moteroscolombia.com/foro/22-tvs/112105-tvs-apache-rtr-beast-160180-2014.html?start=80\",\"threadid\":\"112105-tvs-apache-rtr-beast-160180-2014\",\"title\":\"TVS Apache RTR Beast 160/180 (2014)\",\"topics\":\"Motorcycle\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"http://www.moteroscolombia.com/images/comprofiler/tn11438_53053e07eabfe.jpg\",\"link\":\"http://www.moteroscolombia.com/component/comprofiler/userprofile/MORRIS333.html\",\"name\":\"MORRIS333\",\"username\":\"MORRIS333\"},\"content\":\"<div class=\\\"km
 sgtext\\\">\\n\\t\\t<b>KrOnK89 escribió:</b>\\n<div class=\\\"kmsgtext-quote\\\">muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella.</div><i><br />\\nGracias por la información amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro 
 taller ya que eso no es normal y que no vaya a ser un daño peor, pero igual no te preocupes que si esta en garantía te lo tienen que solucionar, lo único malo es quedarse sin moto por esos malos mecánicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.</i>  <img src=\\\"/components/com_kunena/template/default/images/emoticons/wink.png\\\" width=\\\"20\\\" height=\\\"20\\\" alt=\\\";)\\\" title=\\\";)\\\" class=\\\"bbcode_smiley\\\" />\\t</div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 22:10:00 +0000\",\"id\":\"1e3b20eb5c32ac00e072bf86636ba614\",\"link\":\"http://www.moteroscolombia.com/foro/22-tvs/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"TVS Apache RTR Beast 160/180 (2014)\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"es\",\"tag_extended\":\"es\"},\"salience\":{\"content\":{\"sentiment\":-3
 ,\"topics\":[{\"name\":\"Alimentos\",\"score\":0.54232031106949,\"additional\":\"KrOnK89 escribió: muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella. Gracias por la información amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro
  taller ya que eso no es normal y que no vaya a ser un daño peor, pero igual no te preocupes que si esta en garantía te lo tienen que solucionar, lo único malo es quedarse sin moto por esos malos mecánicos y mal CST ...\",\"hits\":0},{\"name\":\"Automotriz\",\"score\":0.52735489606857,\"additional\":\"KrOnK89 escribió: muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella. con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no 
 vaya a ser un daño peor, pero igual no te preocupes que si esta en garantía te lo tienen que solucionar, lo único malo es quedarse sin moto por esos malos mecánicos y mal CST ... por que veo que te quedas sin moto hasta que te la arreglen.\",\"hits\":0},{\"name\":\"Ciencia\",\"score\":0.52646517753601,\"additional\":\"KrOnK89 escribió: muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella. Gracias por la información amigo KRONK lo del carenaje es tema infinito nadie a dado con 
 el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un daño peor, pero igual no te preocupes que si esta en garantía te lo tienen que solucionar, lo único malo es quedarse sin moto por esos malos mecánicos y mal CST ...\",\"hits\":0},{\"name\":\"Inmobiliaria\",\"score\":0.49977034330368,\"additional\":\"KrOnK89 escribió: muchachos les cuento que hoy le senti un ruido muy extraño a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, también note que el motor por los lados de la bujía esta lleno de aceite, según un amigo que es mecánico automotriz es fuga de aceite por el empaque tapa válvulas, estoy muy aburrido con el taller al que he
  llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguiré comentando como me va con ella. Gracias por la información amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un daño peor, pero igual no te preocupes que si esta en garantía te lo tienen que solucionar, lo único malo es quedarse sin moto por esos malos mecánicos y mal CST ...\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"board\":{\"author\":{\"link\":\"http://www.baidu.com/p/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao\",\"name\":\"林袖花伦\",\"username\":\"林袖花伦\"},\"boardname\":\"百度知道 - 全球最大中文互动问答平台\",\"categories\":\"General Talk\",\"content\":\"<span class=\\\"ask-title\\\"><a href=\\\"http://zhidao.baidu.com/s/zhima.html\\\" class=\\\"g-zhima-tag\\\" target=\\\"_blank\\\">#芝麻开门#</a>WAMP中 apache和php目录下的php.ini有什么区别</span>\\n为什么有时候修改配置的时候更改php目录下的php.ini没有效果,改apache/bin目录下的时候才有用。<br /><br />这两个有什么区别,分别有什么用?<br /><br />请高手解释下!谢谢!</pre>\",\"contenttype\":\"html\",\"countrycode\":\"CN\",\"crawled\":\"Sun, 23 Mar 2014 09:26:43 +0000\",\"created_at\":\"Sat, 22 Mar 2014 14:23:00 -0800\",\"domain\":\"zhidao.baidu.com\",\"forumid\":\"52c374722\",\"forumname\":\"服务器软件\",\"forumurl\":\"http://zhidao.baidu.com
 /browse/1245\",\"gmt\":\"-8\",\"id\":\"1e3b21086adbaa00e0726da0291633ce\",\"language\":\"Chinese - Simplified\",\"link\":\"http://zhidao.baidu.com/question/2074162451508708028.html#\",\"siteid\":\"52bca2440\",\"thread\":\"http://zhidao.baidu.com/question/2074162451508708028.html\",\"threadid\":\"2074162451508708028\",\"threadstarter\":1,\"title\":\"WAMP中 apache和php目录下的php.ini有什么区别\",\"topics\":\"Social\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"http://www.baidu.com/p/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao\",\"name\":\"林袖花伦\",\"username\":\"林袖花伦\"},\"content\":\"<span class=\\\"ask-title\\\"><a href=\\\"http://zhidao.baidu.com/s/zhima.html\\\" class=\\\"g-zhima-tag\\\" target=\\\"_blank\\\">#芝麻开门#</a>WAMP中 apache和php目录下的php.ini有什么区别</span>\\n为什么有时候修改配置的时候更改php目录下的php.ini没有效果,改apache/bin目录下的时候才有用。<br /><br />这两个有什么区�
 �,分别有什么用?<br /><br />请高手解释下!谢谢!</pre>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 14:23:00 -0800\",\"id\":\"1e3b21086adbaa00e0726da0291633ce\",\"link\":\"http://zhidao.baidu.com/question/2074162451508708028.html#\",\"received_at\":4743640302542788965,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"WAMP中 apache和php目录下的php.ini有什么区别\",\"type\":\"board\"},\"language\":{\"confidence\":79,\"tag\":\"zh\",\"tag_extended\":\"zh-cn\"}}"
-"{\"board\":{\"anchor\":\"entry746084\",\"author\":{\"link\":\"http://forums.pcworld.com/index.php?/user/549576-goforit/\",\"name\":\"GOFORIT\",\"registered\":\"Sat, 22 Mar 2014 00:00:00 +0000\",\"username\":\"GOFORIT\"},\"boardname\":\"PC World\",\"categories\":\"Hardware\",\"content\":\"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<br />\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Mon, 24 Mar 2014 04:14:57 +0000\",\"created_at\":\"Sat, 22 Mar 2014 14:24:00 -0800\",\"domain\":\"www.pcworld.com\",\"forumid\":\"4b4147791c6\",\"forumname\":\"Laptops\",\"forumurl\":\"http://forums.pcworld.com/index.php?/forum/2005-laptops/\",\"gmt\":\"-8\",\"id\":\"1e3b210aa710a000e072ee89b1bdcb58\",\"language\":\"Engl
 ish\",\"link\":\"http://forums.pcworld.com/index.php?/topic/169738-msi-ge60-apache-033-vs-asus-g750jw-nh71/#entry746084\",\"siteid\":\"450b0aed0\",\"thread\":\"http://forums.pcworld.com/index.php?/topic/169738-msi-ge60-apache-033-vs-asus-g750jw-nh71/\",\"threadid\":\"169738\",\"threadstarter\":1,\"title\":\"Msi Ge60 Apache-033 Vs Asus G750jw-nh71\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"http://forums.pcworld.com/index.php?/user/549576-goforit/\",\"name\":\"GOFORIT\",\"registered\":\"Sat, 22 Mar 2014 00:00:00 +0000\",\"username\":\"GOFORIT\"},\"content\":\"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<br />\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 14:24:
 00 -0800\",\"id\":\"1e3b210aa710a000e072ee89b1bdcb58\",\"link\":\"http://forums.pcworld.com/index.php?/topic/169738-msi-ge60-apache-033-vs-asus-g750jw-nh71/#entry746084\",\"received_at\":4743640586005838089,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Msi Ge60 Apache-033 Vs Asus G750jw-nh71\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"MSI\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":2,\"type\":\"Company\",\"about\":1,\"themes\":[\"gaming laptop\"]}],\"sentiment\":2,\"topics\":[{\"name\":\"Video Games\",\"score\":0.57882922887802,\"additional\":\"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\",\"hits\":0},{\"name\":\"Mob
 ile Devices\",\"score\":0.55213981866837,\"additional\":\"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card.\",\"hits\":0},{\"name\":\"Hardware\",\"score\":0.48072889447211997,\"additional\":\"I am about to purchase a new gaming laptop and was wondering which one you guys would recommend between the MSI GE60 Apache-033 vs Asus G750JW-NH71. I realize the Asus is a 17 inch and that the MSI has the newer Nvidia graphics card. Any help will be greatly appreciated!!\",\"hits\":0}]},\"title\":{\"sentiment\":0}}}"
-"{\"board\":{\"anchor\":\"answer-1623235828\",\"author\":{\"name\":\"Anonymous\",\"username\":\"Anonymous\"},\"boardname\":\"百度知道 - 全球最大中文互动问答平台\",\"categories\":\"General Talk\",\"content\":\"<pre id=\\\"answer-content-1623235828\\\" accuse=\\\"aContent\\\" class=\\\"answer-text mb-10\\\">真实<img src=\\\"http://img.iknow.bdimg.com/question/word/de.png\\\" class=\\\"word-replace\\\">错误<img src=\\\"http://img.iknow.bdimg.com/question/word/comma.png\\\" class=\\\"word-replace\\\">却<img src=\\\"http://img.iknow.bdimg.com/question/word/shi.png\\\" class=\\\"word-replace\\\">第2幅图<img src=\\\"http://img.iknow.bdimg.com/question/word/de.png\\\" class=\\\"word-replace\\\">JDBC连接MYSQL错<img src=\\\"http://img.iknow.bdimg.com/question/word/sigh.png\\\" class=\\\"word-replace\\\">MYSQL<img src=\\\"http://img.iknow.bdimg.com/question/word/bu.png\\\" class=\\\"word-replace\\\">允许网络访问</pre>\",\"contenttype\":\"html\",\"countrycode\":
 \"CN\",\"crawled\":\"Wed, 26 Mar 2014 04:29:29 +0000\",\"created_at\":\"Sat, 22 Mar 2014 14:49:00 -0800\",\"domain\":\"zhidao.baidu.com\",\"forumid\":\"52c3747313\",\"forumname\":\"JAVA相关\",\"forumurl\":\"http://zhidao.baidu.com/browse/870\",\"gmt\":\"-8\",\"id\":\"1e3b2142882da600e0728adaf869aa08\",\"language\":\"Chinese - Simplified\",\"link\":\"http://zhidao.baidu.com/question/710806556482464405.html#answer-1623235828\",\"siteid\":\"52bca2440\",\"thread\":\"http://zhidao.baidu.com/question/710806556482464405.html\",\"threadid\":\"710806556482464405\",\"title\":\"org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 7\",\"topics\":\"Social\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"Anonymous\",\"username\":\"Anonymous\"},\"content\":\"<pre id=\\\"answer-content-1623235828\\\" accuse=\\\"aContent\\\" class=\\\"answer-text mb-10\\\">真实<img src=\\\"http://img.iknow.bdimg.com/question/word/de.png\\\" class=\\\"word-re
 place\\\">错误<img src=\\\"http://img.iknow.bdimg.com/question/word/comma.png\\\" class=\\\"word-replace\\\">却<img src=\\\"http://img.iknow.bdimg.com/question/word/shi.png\\\" class=\\\"word-replace\\\">第2幅图<img src=\\\"http://img.iknow.bdimg.com/question/word/de.png\\\" class=\\\"word-replace\\\">JDBC连接MYSQL错<img src=\\\"http://img.iknow.bdimg.com/question/word/sigh.png\\\" class=\\\"word-replace\\\">MYSQL<img src=\\\"http://img.iknow.bdimg.com/question/word/bu.png\\\" class=\\\"word-replace\\\">允许网络访问</pre>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 14:49:00 -0800\",\"id\":\"1e3b2142882da600e0728adaf869aa08\",\"link\":\"http://zhidao.baidu.com/question/710806556482464405.html#answer-1623235828\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 7\",\"type\":\"board\"},\"language\":{\"confidence\":68,\"tag\":\"zh\",\"tag_extended\":
 \"zh-cn\"}}"
-"{\"board\":{\"anchor\":\"post9602941\",\"author\":{\"avatar\":\"http://forum.notebookreview.com/image.php?u=57204&dateline=1311870329\",\"link\":\"http://forum.notebookreview.com/member.php?u=57204\",\"location\":\"Miami Beach\",\"name\":\"adyghost\",\"registered\":\"Thu, 01 Mar 2007 00:00:00 +0000\",\"username\":\"adyghost\"},\"boardname\":\"Laptop Forums and Notebook Computer Discussion\",\"categories\":\"Hardware\",\"content\":\"<div class=\\\"postrow has_after_content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\n\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t<div class=\\\"content\\\">\\n\\t\\t\\t\\t\\t<div id=\\\"post_message_9602941\\\">\\n\\t\\t\\t\\t\\t\\t<blockquote class=\\\"postcontent restore \\\">\\n\\t\\t\\t\\t\\t\\t\\tIt's strange to me that the GE70 Apache has Windows 7 driver support but not the GE60... Most drivers seem to be the same in any case, with a few differences.\\n\\t\\t\\t\\t\\t\\t</blockquote>\\n\\t\\t\\t\\t\\t</div>\\
 n\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t</div>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"after_content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t<div class=\\\"vbseo_buttons\\\" id=\\\"lkbtn_1.748085.9602941\\\">\\n\\n    </ul>\\n    </li>\\n    \\n    \\n    \\n    </ul>\\n    \\n    \\n\\n\\n</div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sun, 23 Mar 2014 06:54:08 +0000\",\"created_at\":\"Sat, 22 Mar 2014 17:54:00 -0500\",\"domain\":\"www.notebookreview.com\",\"forumid\":\"4d810a673a7\",\"forumname\":\"MSI\",\"forumurl\":\"http://forum.notebookreview.com/msi/\",\"gmt\":\"-5\",\"id\":\"1e3b214db533a400e0728c679fd74da0\",\"language\":\"English\",\"link\":\"http://forum.notebookreview.com/msi/748085-ge60-apache-pro-questions.html#post9602941\",\"siteid\":\"42ed25c80\",\"thread\":\"http://forum.notebookreview.com/msi/748085-ge60-apache-pro-questions.html\",\"threadid\":\"748085\",\"title\":\"GE60 Apache Pro Questions\",\"topics\":\"Computers\",\"type\":\"post\"}
 ,\"interaction\":{\"author\":{\"avatar\":\"http://forum.notebookreview.com/image.php?u=57204&dateline=1311870329\",\"link\":\"http://forum.notebookreview.com/member.php?u=57204\",\"location\":\"Miami Beach\",\"name\":\"adyghost\",\"registered\":\"Thu, 01 Mar 2007 00:00:00 +0000\",\"username\":\"adyghost\"},\"content\":\"<div class=\\\"postrow has_after_content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\n\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t<div class=\\\"content\\\">\\n\\t\\t\\t\\t\\t<div id=\\\"post_message_9602941\\\">\\n\\t\\t\\t\\t\\t\\t<blockquote class=\\\"postcontent restore \\\">\\n\\t\\t\\t\\t\\t\\t\\tIt's strange to me that the GE70 Apache has Windows 7 driver support but not the GE60... Most drivers seem to be the same in any case, with a few differences.\\n\\t\\t\\t\\t\\t\\t</blockquote>\\n\\t\\t\\t\\t\\t</div>\\n\\n\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t</div>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"after_content\\\">
 \\n\\t\\t\\t\\t\\n\\t\\t\\t\\t<div class=\\\"vbseo_buttons\\\" id=\\\"lkbtn_1.748085.9602941\\\">\\n\\n    </ul>\\n    </li>\\n    \\n    \\n    \\n    </ul>\\n    \\n    \\n\\n\\n</div>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 17:54:00 -0500\",\"id\":\"1e3b214db533a400e0728c679fd74da0\",\"link\":\"http://forum.notebookreview.com/msi/748085-ge60-apache-pro-questions.html#post9602941\",\"received_at\":4743640264593543004,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"GE60 Apache Pro Questions\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-3},\"title\":{\"sentiment\":0}}}"
-"{\"board\":{\"author\":{\"avatar\":\"https://www.gravatar.com/avatar/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1\",\"link\":\"http://stackoverflow.com/users/3447812/user3447812\",\"name\":\"user3447812\",\"username\":\"user3447812\"},\"boardname\":\"Questions - Stack Overflow\",\"categories\":\"Software\",\"content\":\"<blockquote>\\n  <p>String processFiles= \\\"file://somedirectory?readLock=rename&preMove=inprogress/&move=../processed/&moveFailed=../error/\\\"</p>\\n  \\n  <p>String postProcessor = \\\"file://somedirectory/inprogress\\\";  </p>\\n  \\n  <p>from(processFiles)\\n      .threads(10)\\n      .routeId(\\\"someId\\\")<br>\\n      .to(\\\"bean:somebean\\\");</p>\\n  \\n  <p>from(postProcessor)\\n      .routeId(\\\"postProcress\\\")\\n      .to(\\\"bean:postProcessorBean\\\");</p>\\n</blockquote>\\n\\n<p>Reading files from certain location using multiple threads. Then processing is done in \\\"somebean\\\".</p>\\n\\n<p>Now, i want to do some post processing
  once all the threads completes first route.\\ni dont understand when exactly to call postprocessor.\\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \\\"Somebean\\\" is completed by all the threads.\\nI want to know how do i call postProcess once all the threads finish \\\"somebean\\\"</p>\\n\\n<p>Just to give a problem statement : \\n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \\n2. Once done update status in other table. </p>\\n\\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \\nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )</p>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Mon, 24 Mar 2014 08:40:38 +0000\",\"created_at\":\"Sat, 22 Mar 2014 22:55:00 +0000\",\"domai
 n\":\"stackoverflow.com\",\"forumid\":\"4e72d61036\",\"forumname\":\"Active Forum\",\"forumurl\":\"http://stackoverflow.com/questions?sort=active\",\"id\":\"1e3b214ff167aa00e0722e47b361eb38\",\"language\":\"English\",\"link\":\"http://stackoverflow.com/q/22567844#\",\"siteid\":\"4b70e7b27\",\"thread\":\"http://stackoverflow.com/q/22567844\",\"threadid\":\"22567844\",\"title\":\"Apache camel : Multithreading in route\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"https://www.gravatar.com/avatar/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1\",\"link\":\"http://stackoverflow.com/users/3447812/user3447812\",\"name\":\"user3447812\",\"username\":\"user3447812\"},\"content\":\"<blockquote>\\n  <p>String processFiles= \\\"file://somedirectory?readLock=rename&preMove=inprogress/&move=../processed/&moveFailed=../error/\\\"</p>\\n  \\n  <p>String postProcessor = \\\"file://somedirectory/inprogress\\\";  </p>\\n  \\n  <p>from(processFiles)\
 \n      .threads(10)\\n      .routeId(\\\"someId\\\")<br>\\n      .to(\\\"bean:somebean\\\");</p>\\n  \\n  <p>from(postProcessor)\\n      .routeId(\\\"postProcress\\\")\\n      .to(\\\"bean:postProcessorBean\\\");</p>\\n</blockquote>\\n\\n<p>Reading files from certain location using multiple threads. Then processing is done in \\\"somebean\\\".</p>\\n\\n<p>Now, i want to do some post processing once all the threads completes first route.\\ni dont understand when exactly to call postprocessor.\\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \\\"Somebean\\\" is completed by all the threads.\\nI want to know how do i call postProcess once all the threads finish \\\"somebean\\\"</p>\\n\\n<p>Just to give a problem statement : \\n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \\n2. Once done update status in other table. </p>\\n\\n<p>Solution is already in place
 . But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \\nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )</p>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 22:55:00 +0000\",\"id\":\"1e3b214ff167aa00e0722e47b361eb38\",\"link\":\"http://stackoverflow.com/q/22567844#\",\"received_at\":4743640655020782990,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache camel : Multithreading in route\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"\\\"file://somedirectory?readLock=rename&preMove=inprogress/&move=../processed/&moveFailed=../error/\\\" String postProcessor = \\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"someId\\\"\",\"sentiment\":0,\"confident\":1,\"label
 \":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"bean:somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"postProcress\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"bean:postProcessorBean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"certain location\",\"multiple threads\"]},{\"name\":\"\\\"somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"certain location\",\"multiple threads\"]},{\"name\":\"\\\"Somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"incorrect results\",\"problem statement\"]},{\"name\":\"\\\"somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1
 ,\"type\":\"Quote\",\"about\":0,\"themes\":[\"problem statement\"]}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"board\":{\"author\":{\"avatar\":\"https://www.gravatar.com/avatar/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1\",\"link\":\"http://stackoverflow.com/users/3447812/user3447812\",\"name\":\"user3447812\",\"username\":\"user3447812\"},\"boardname\":\"Questions - Stack Overflow\",\"categories\":\"Software\",\"content\":\"<blockquote>\\n  <p>String processFiles= \\\"file://somedirectory?readLock=rename&preMove=inprogress/&move=../processed/&moveFailed=../error/\\\"</p>\\n  \\n  <p>String postProcessor = \\\"file://somedirectory/inprogress\\\";  </p>\\n  \\n  <p>from(processFiles)\\n      .threads(10)\\n      .routeId(\\\"someId\\\")<br>\\n      .to(\\\"bean:somebean\\\");</p>\\n  \\n  <p>from(postProcessor)\\n      .routeId(\\\"postProcress\\\")\\n      .to(\\\"bean:postProcessorBean\\\");</p>\\n</blockquote>\\n\\n<p>Reading files from certain location using multiple threads. Then processing is done in \\\"somebean\\\".</p>\\n\\n<p>Now, i want to do some post processing
  once all the threads completes first route.\\ni dont understand when exactly to call postprocessor.\\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \\\"Somebean\\\" is completed by all the threads.\\nI want to know how do i call postProcess once all the threads finish \\\"somebean\\\"</p>\\n\\n<p>Just to give a problem statement : \\n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \\n2. Once done update status in other table. </p>\\n\\n<p>Solution is already in place. But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \\nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )</p>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sun, 06 Apr 2014 19:49:39 +0000\",\"created_at\":\"Sat, 22 Mar 2014 22:55:00 +0000\",\"domai
 n\":\"stackoverflow.com\",\"forumid\":\"4e72d61036\",\"forumname\":\"Active Forum\",\"forumurl\":\"http://stackoverflow.com/questions?sort=active\",\"id\":\"1e3b214ff167aa00e072ccc892a03c12\",\"language\":\"English\",\"link\":\"http://stackoverflow.com/q/22567844#\",\"siteid\":\"4b70e7b27\",\"thread\":\"http://stackoverflow.com/q/22567844\",\"threadid\":\"22567844\",\"title\":\"Apache camel : Multithreading in route\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"https://www.gravatar.com/avatar/0402c0c7f7eaa84033e37c7db8ea6841?s=64&d=identicon&r=PG&f=1\",\"link\":\"http://stackoverflow.com/users/3447812/user3447812\",\"name\":\"user3447812\",\"username\":\"user3447812\"},\"content\":\"<blockquote>\\n  <p>String processFiles= \\\"file://somedirectory?readLock=rename&preMove=inprogress/&move=../processed/&moveFailed=../error/\\\"</p>\\n  \\n  <p>String postProcessor = \\\"file://somedirectory/inprogress\\\";  </p>\\n  \\n  <p>from(processFiles)\
 \n      .threads(10)\\n      .routeId(\\\"someId\\\")<br>\\n      .to(\\\"bean:somebean\\\");</p>\\n  \\n  <p>from(postProcessor)\\n      .routeId(\\\"postProcress\\\")\\n      .to(\\\"bean:postProcessorBean\\\");</p>\\n</blockquote>\\n\\n<p>Reading files from certain location using multiple threads. Then processing is done in \\\"somebean\\\".</p>\\n\\n<p>Now, i want to do some post processing once all the threads completes first route.\\ni dont understand when exactly to call postprocessor.\\nThe way i have done above is giving incorrect results. PostProcessor is getting called before \\\"Somebean\\\" is completed by all the threads.\\nI want to know how do i call postProcess once all the threads finish \\\"somebean\\\"</p>\\n\\n<p>Just to give a problem statement : \\n1. We have number of files each with millions of records at one location.We need to read those files and save data in database. \\n2. Once done update status in other table. </p>\\n\\n<p>Solution is already in place
 . But currently its taking more time. Hence we tried to use thread at camel route level so multiple files can be processed simultaneously. \\nNow with this we are able to minimize the time but not able to do postprocessing (i.e step 2 )</p>\",\"contenttype\":\"html\",\"created_at\":\"Sat, 22 Mar 2014 22:55:00 +0000\",\"id\":\"1e3b214ff167aa00e072ccc892a03c12\",\"link\":\"http://stackoverflow.com/q/22567844#\",\"received_at\":4743645545817667587,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache camel : Multithreading in route\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"\\\"file://somedirectory?readLock=rename&preMove=inprogress/&move=../processed/&moveFailed=../error/\\\" String postProcessor = \\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":2,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"someId\\\"\",\"sentiment\":0,\"confident\":1,\"label
 \":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"bean:somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"postProcress\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0},{\"name\":\"\\\"bean:postProcessorBean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"certain location\",\"multiple threads\"]},{\"name\":\"\\\"somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"certain location\",\"multiple threads\"]},{\"name\":\"\\\"Somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1,\"type\":\"Quote\",\"about\":0,\"themes\":[\"incorrect results\",\"problem statement\"]},{\"name\":\"\\\"somebean\\\"\",\"sentiment\":0,\"confident\":1,\"label\":\"Quote\",\"evidence\":1
 ,\"type\":\"Quote\",\"about\":0,\"themes\":[\"problem statement\"]}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}}}"
-"{\"board\":{\"anchor\":\"p16374741\",\"author\":{\"avatar\":\"http://forum.ubuntu-fr.org/img/avatars/151067.png?m=1392158364\",\"name\":\"nolem\",\"username\":\"nolem\"},\"boardname\":\"Forum Ubuntu-fr.org\",\"categories\":\"Software\",\"content\":\"<p>Comme je t&#039;ai dit, pourquoi veux tu redémarrer apache ?</p><p>Est ce que tu as paramétré quelque chose dans Apache ? Si oui, c&#039;est la manip que tu as faite qui doit planter ton système.</p>\",\"contenttype\":\"html\",\"countrycode\":\"FR\",\"crawled\":\"Mon, 24 Mar 2014 02:11:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"domain\":\"www.ubuntu-fr.org\",\"forumid\":\"44cd9a2333\",\"forumname\":\"Serveurs\",\"forumurl\":\"http://forum.ubuntu-fr.org/viewforum.php?id=28\",\"gmt\":\"+1\",\"id\":\"1e3b215b1e6da800e07217a3ca61bff8\",\"language\":\"French\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16374741\",\"siteid\":\"44cd99800\",\"thread\":\"http://forum.ubuntu-fr.org/viewtopic.php?id
 =1528771\",\"threadid\":\"1528771\",\"title\":\"Non reconnaissance d'Apache\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"http://forum.ubuntu-fr.org/img/avatars/151067.png?m=1392158364\",\"name\":\"nolem\",\"username\":\"nolem\"},\"content\":\"<p>Comme je t&#039;ai dit, pourquoi veux tu redémarrer apache ?</p><p>Est ce que tu as paramétré quelque chose dans Apache ? Si oui, c&#039;est la manip que tu as faite qui doit planter ton système.</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"id\":\"1e3b215b1e6da800e07217a3ca61bff8\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16374741\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Non reconnaissance d'Apache\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"fr\",\"tag_extended\":\"fr\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidenc
 e\":2,\"type\":\"Company\",\"about\":1,\"themes\":[\"chose dans Apache\",\"ton système\"]}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-3,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"reconnaissance d'Apache\"]}],\"sentiment\":-3}}}"
-"{\"board\":{\"anchor\":\"p16373871\",\"author\":{\"name\":\"machim\",\"username\":\"machim\"},\"boardname\":\"Forum Ubuntu-fr.org\",\"categories\":\"Software\",\"content\":\"<p>ça ve dire!!!</p>\",\"contenttype\":\"html\",\"countrycode\":\"FR\",\"crawled\":\"Mon, 24 Mar 2014 02:11:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"domain\":\"www.ubuntu-fr.org\",\"forumid\":\"44cd9a2333\",\"forumname\":\"Serveurs\",\"forumurl\":\"http://forum.ubuntu-fr.org/viewforum.php?id=28\",\"gmt\":\"+1\",\"id\":\"1e3b215b1e6da800e07235753fc71602\",\"language\":\"Unknown\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16373871\",\"siteid\":\"44cd99800\",\"thread\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771\",\"threadid\":\"1528771\",\"title\":\"Non reconnaissance d'Apache\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"machim\",\"username\":\"machim\"},\"content\":\"<p>ça ve dire!!!</p>\",\"contenttype\":\"html\",\
 "created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"id\":\"1e3b215b1e6da800e07235753fc71602\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16373871\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Non reconnaissance d'Apache\",\"type\":\"board\"},\"language\":{\"confidence\":92,\"tag\":\"fr\",\"tag_extended\":\"fr\"},\"salience\":{\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-3,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"reconnaissance d'Apache\"]}],\"sentiment\":-3}}}"
-"{\"board\":{\"anchor\":\"p16373841\",\"author\":{\"avatar\":\"http://forum.ubuntu-fr.org/img/avatars/151067.png?m=1392158364\",\"name\":\"nolem\",\"username\":\"nolem\"},\"boardname\":\"Forum Ubuntu-fr.org\",\"categories\":\"Software\",\"content\":\"dans un  premier temps :\\n\\nsudo /etc/...\\n\\nSinon, j'ai bien l'impression qu'Apache n'est pas sur ta machine. (Les fichiers sont là ?)\\n\\nDernière modification par nolem (Hier à 12:15)\",\"contenttype\":\"html\",\"countrycode\":\"FR\",\"crawled\":\"Mon, 24 Mar 2014 02:11:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"domain\":\"www.ubuntu-fr.org\",\"forumid\":\"44cd9a2333\",\"forumname\":\"Serveurs\",\"forumurl\":\"http://forum.ubuntu-fr.org/viewforum.php?id=28\",\"gmt\":\"+1\",\"id\":\"1e3b215b1e6da800e072412679e481b8\",\"language\":\"French\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16373841\",\"siteid\":\"44cd99800\",\"thread\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771\",\
 "threadid\":\"1528771\",\"title\":\"Non reconnaissance d'Apache\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"http://forum.ubuntu-fr.org/img/avatars/151067.png?m=1392158364\",\"name\":\"nolem\",\"username\":\"nolem\"},\"content\":\"dans un  premier temps :\\n\\nsudo /etc/...\\n\\nSinon, j'ai bien l'impression qu'Apache n'est pas sur ta machine. (Les fichiers sont là ?)\\n\\nDernière modification par nolem (Hier à 12:15)\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"id\":\"1e3b215b1e6da800e072412679e481b8\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16373841\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Non reconnaissance d'Apache\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"fr\",\"tag_extended\":\"fr\"},\"salience\":{\"content\":{\"sentiment\":3},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-3,\"confident\":1,\"label\":\"Company\",\"ev
 idence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"reconnaissance d'Apache\"]}],\"sentiment\":-3}}}"
-"{\"board\":{\"anchor\":\"p16378041\",\"author\":{\"avatar\":\"http://forum.ubuntu-fr.org/img/avatars/151067.png?m=1392158364\",\"name\":\"nolem\",\"username\":\"nolem\"},\"boardname\":\"Forum Ubuntu-fr.org\",\"categories\":\"Software\",\"content\":\"<p>Si tu veux désinstaller complètement, il faut purger. Je pense que tu devras passer par cette étape.</p>\",\"contenttype\":\"html\",\"countrycode\":\"FR\",\"crawled\":\"Mon, 24 Mar 2014 02:11:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"domain\":\"www.ubuntu-fr.org\",\"forumid\":\"44cd9a2333\",\"forumname\":\"Serveurs\",\"forumurl\":\"http://forum.ubuntu-fr.org/viewforum.php?id=28\",\"gmt\":\"+1\",\"id\":\"1e3b215b1e6da800e0724979ede06068\",\"language\":\"French\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16378041\",\"siteid\":\"44cd99800\",\"thread\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771\",\"threadid\":\"1528771\",\"title\":\"Non reconnaissance d'Apache\",\"topics\":\"Compu
 ters\",\"type\":\"post\"},\"interaction\":{\"author\":{\"avatar\":\"http://forum.ubuntu-fr.org/img/avatars/151067.png?m=1392158364\",\"name\":\"nolem\",\"username\":\"nolem\"},\"content\":\"<p>Si tu veux désinstaller complètement, il faut purger. Je pense que tu devras passer par cette étape.</p>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"id\":\"1e3b215b1e6da800e0724979ede06068\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16378041\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Non reconnaissance d'Apache\",\"type\":\"board\"},\"language\":{\"confidence\":99,\"tag\":\"fr\",\"tag_extended\":\"fr\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-3,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1,\"themes\":[\"reconnaissance d'Apache\"]}],\"sentiment\":-3}}}"
-"{\"board\":{\"anchor\":\"p16374901\",\"author\":{\"name\":\"machim\",\"username\":\"machim\"},\"boardname\":\"Forum Ubuntu-fr.org\",\"categories\":\"Software\",\"content\":\"Oui j'essayais d'installer les paquets ssmtp pour les mails. Puis j'ai fait certaine manipulations. je sais que j'ai fais des mauvaises manipulation mais je ne me rappelle plus. J'ai essayé de desinstaller les paquets apache2, phpmyadmin, mysql, php5... pour reinstaller mais rien ne vas. Voila mon fichier /etc/apache2/apache2.conf:\\n\\n# Répertoire Racine du serveur\\nServerRoot \\\"/etc/apache2\\\"\\n\\n# Fichier de vérrouillage (lock) du serveur\\n# IL DOIT SE TROUVER SUR LE DISQUE LOCAL\\n#<IfModule !mpm_winnt.c>\\n#<IfModule !mpm_netware.c>\\nLockFile /var/lock/apache2/accept.lock\\n#</IfModule>\\n#</IfModule>\\n\\n# Fichier du PID: endroit où, à son démarrage, apache doit stocker\\n# son numéro d'identification de processus\\nPidFile /var/run/apache2.pid\\n\\n# Delai d'attente dépassé : nombre de
  secondes avant de recevoir et d'envoyer\\n# un message de \\\"Délai d'attente dépassé\\\" (timeout)\\nTimeout 300\\n\\n# Connexion persistante: Alloue ou non les requêtes persistantes\\n# (plus d'une requête par connexion ).\\n# Mettre à \\\"Off\\\" pour désactiver.\\nKeepAlive On\\n\\n# Nombre Maximum de requêtes allouées durant une connexion persistante.\\n# 0 = non limité\\n# Il est recommandé de garder ce nombre assez haut pour des performances maximales\\nMaxKeepAliveRequests 100\\n\\n# Nombre de secondes d'attente pour la prochaine requête\\n# d'un même client sur une même connexion avant un timeout\\nKeepAliveTimeout 15\\n\\n# Configuration du mpm chargé\\n<IfModule mpm_prefork_module>\\n# Nombre de processus serveurs fils à créer au démarrage.\\n   StartServers          5\\n# Nombre minimum de processus en attente d'intercepter des requêtes\\n   MinSpareServers       5\\n# Nombre maximum de processus en attente\\n   MaxSpareServers      15\\n# Nombre maxi
 mum processus fils créés\\n# pour intercepter les requêtes simultanément\\n   MaxClients          150\\n# Limite le nombre de requête qu'un processus fils intercepte\\n# durant son temps de vie. Si 0 alors le processus n'expirera jamais.\\n    MaxRequestsPerChild   0\\n</IfModule>\\n\\n<IfModule mpm_worker_module>\\n    StartServers          2\\n    MaxClients          150\\n# Nombre minimum de processus en attente d'intercepter les piques de requêtes\\n    MinSpareThreads      25\\n# Nombre maximum de processus en attente\\n    MaxSpareThreads      75\\n    ThreadsPerChild      25\\n    MaxRequestsPerChild   0\\n</IfModule>\\n\\n# Utilisateur et Group sous lesquels les processus du serveur seront lancés\\nUser machim\\nGroup machim\\n\\n# Fichier de restriction des accès\\n# non conseillé, préferer les directives internes au fichier de configuration\\n# voir [[http://httpd.apache.org/docs/2.2/howto/htaccess.html]]\\nAccessFileName .htaccess\\n\\n# Les lignes suivantes emp
 êchent les fichiers .htaccess et .htpasswd d'être vus\\n# par les clients Web (i.e. les navigateurs) .\\n<Files ~ \\\"^\\\\.ht\\\">\\n    Order allow,deny\\n    Deny from all\\n    Satisfy All\\n</Files>\\n\\n# Restriction de la racine du serveur\\n<Directory />\\n  Order Deny,Allow\\n  Deny from all\\n  Options None\\n  AllowOverride None\\n</Directory>\\n\\n# Fichier contenant la liste des conversions des extensions de fichiers vers le type de contenu.\\n# par défaut ce fichier est relié au contenu enregistré à l'IANA. http://www.iana.org/assignments/media-types/index.html.\\nTypesConfig /etc/mime.types\\n\\n# définit le type par défaut des fichiers dont le type ne peut être déterminé\\n# par le serveur.\\n# Il convient de le mettre à \\\"none\\\" afin de ne pas fournir d'informations erronées.\\nDefaultType none\\n\\n# Active la résolution DNS pour les noms d'hôtes\\nHostnameLookups Off\\n\\n# chemin du fichier de log des erreurs du serveur.\\nErrorLog /var/log/apa
 che2/error.log\\n\\n# niveau de log du serveur\\n# emerg      Messages Urgents - Le système est inutilisable.\\n# alert     Messages d'actions qui doivent être effectuées immédiatement.\\n# crit             Messages critiques.\\n# error     Messages d'erreurs.\\n# warn             Messages d'avertissement.\\n# notice     Messages normales mais significatives.\\n# info             Messages d'informations.\\n# debug     Messages de débogage\\nLogLevel warn\\n\\n# format des lignes contenues dans les logs\\n# %a             Adresse ip distante.\\n# %A             Adresse ip local.\\n# %B             Taille de la réponse en octets, excluant l'entête HTTP.\\n# %b             Taille de la réponse en octets, excluant l'entête HTTP au format CLF.\\n# %{Foobar}C     Contenu du cookie \\\"Foobar\\\" de la requête envoyée au serveur.\\n# %D             Le temps mis à servir la requête .\\n# %{FOOBAR}e     Contenue de la variable d'environnement \\\"FOOBAR\\\".\\n# %f             N
 om du fichier.\\n# %h             Hôte distant.\\n# %H             Le protocole demandé.\\n# %{Foobar}i     Le contenu de \\\"Foobar\\\": Ligne(s) d'en-tête de la requête envoyée au serveur.\\n# %l             nom du fichier de log distant (de identd, si il est fournit).\\n# cela retournera un tiret tant que //mod_ident// n'est pas présent\\n# et //IdentityCheck// n'est pas mis à ON.\\n# %m             Méthode de la requête.\\n# %{Foobar}n     Contenu de la note \\\"Foobar\\\" provenant d'un autre module.\\n# %{Foobar}o     Le contenu de \\\"Foobar\\\": Ligne(s) d'entête dans la réponse.\\n# %p             Port canonique du serveur qui sert la réponse.\\n# %P             Id du processus fils qui a servi la requête.\\n# %{format}P     Id du processus ou du thread fils qui a servi la requête.\\n# Les formats valides sont pid, tid, et hextid.\\n# hextid nécessite APR 1.2.0 ou supérieur.\\n# %q             Chaînes de la requête (Commençant avec un ? si une chaine de r
 equête existe, sinon une chaîne vide)\\n# %r             Première ligne de la requête.\\n# %s             Statut. Pour les requête redirigées en interne, ceci est la requête originale --- %>s pour la dernière.\\n# %t             Heure à laquelle la requête a été reçue (format standard anglais mois jour année )\\n# %{format}t     L'heure, au format précisé, qui doit être dans les formats de strftime(3). (potentiellement localisé).\\n# %T             Le temps mis pour répondre à la requête.\\n# %u             Utilisateur distant (de l'authentification; peut être faux si le  code de retour de statut (%s) est 401)\\n# %U             Url demandée, n'inclue aucune chaîne de requête.\\n# %v             Nom canonique de ServerName du serveur qui répond à la requête.\\n# %V             Nom du serveur en fonction du paramètre UseCanonicalName.\\n# %X             Statut de la connexion une fois la réponse envoyée.\\n#               X = connexion annulée avant la
  réponse complète.\\n#               + = la connexion peut être maintenue après l'envoi de la réponse.\\n#               - = la connexion sera fermée après l'envoi de la réponse.\\n# %I             Octets reçus, incluant l'entête et la requête, ne peut être nul. Vous devez activer //mod_logio// pour l'utiliser.\\n# %O             Octets envoyés, incluant l'entête, ne peut être nul. Vous devez activer //mod_logio// pour l'utiliser.\\n\\nLogFormat \\\"%h %l %u %t \\\\\\\"%r\\\\\\\" %>s %b \\\\\\\"%{Referer}i\\\\\\\" \\\\\\\"%{User-Agent}i\\\\\\\"\\\" combined\\nLogFormat \\\"%h %l %u %t \\\\\\\"%r\\\\\\\" %>s %b\\\" common\\nLogFormat \\\"%{Referer}i -> %U\\\" referer\\nLogFormat \\\"%{User-agent}i\\\" agent\\n\\n# entête envoyée au client à propos du serveur\\n# Prod                    Server: Apache\\n# Major                   Server: Apache/2\\n# Minor                   Server: Apache/2.0\\n# Min                     Server: Apache/2.0.41\\n# OS                    
   Server: Apache/2.0.41 (Unix)\\n# Full (ou non spécifié)  Server: Apache/2.0.41 (Unix) PHP/4.2.2 MyMod/1.2\\nServerTokens Prod\\n\\n# Pied de page renvoyé par le serveur\\n# utile afin de déterminer quelle est le serveur\\n# qui dans une chaîne (proxy) qui génère une erreur\\nServerSignature Off\\n\\n# Inclusion des fichiers, contenus dans le dossier des mods, qui sont activés\\nInclude /etc/apache2/mods-enabled/*.load\\nInclude /etc/apache2/mods-enabled/*.conf\\n\\n# Inclusion de l'ancien fichier de configuration de apache\\n# à des fins de compatibilités ascendantes.\\nInclude /etc/apache2/httpd.conf\\n\\n# Inclusion du fichier de configuration des adresses et ports\\n# sur lesquels le serveur sera à l'écoute\\nInclude /etc/apache2/ports.conf\\n\\n# Inclusion d'autres fichiers de configuration\\nInclude /etc/apache2/conf.d/\\n\\n# inclusion des configurations des sites actifs\\nInclude /etc/apache2/sites-enabled/\\n\\n# Directive des alias\\n<IfModule alias_module>\\n
 # alias des icones d'apache\\n# nom de l'alias , répertoire vers lequel pointe l'alias\\n    Alias /icons \\\"/usr/share/apache2/icons/\\\"\\n    <Directory \\\"/usr/share/apache2/icons\\\">\\n        Options None\\n        AllowOverride None\\n        Order allow,deny\\n        Allow from all\\n    </Directory>\\n\\n# alias pour awstats\\n    Alias /awstats-icon \\\"/usr/share/awstats/icon\\\"\\n    ScriptAlias /awstats \\\"/usr/lib/cgi-bin/\\\"\\n    <Directory \\\"/usr/share/awstats/icon\\\">\\n            Options None\\n#Indexes MultiViews\\n        AllowOverride None\\n        Order allow,deny\\n        Allow from all\\n    </Directory>\\n</IfModule>\\n\\n# Types images d'icône\\n<IfModule mod_autoindex.c>\\n\\n    IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*\\n\\n    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip\\n\\n    AddIconByType (TXT,/icons/text.gif) text/*\\n    AddIconByType (IMG,/icons/image2.gif) image/*\\n    AddIconByType (SND,/i
 cons/sound2.gif) audio/*\\n    AddIconByType (VID,/icons/movie.gif) video/*\\n\\n    AddIcon /icons/binary.gif .bin .exe\\n    AddIcon /icons/binhex.gif .hqx\\n    AddIcon /icons/tar.gif .tar\\n    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv\\n    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip\\n    AddIcon /icons/a.gif .ps .ai .eps\\n    AddIcon /icons/layout.gif .html .shtml .htm .pdf\\n    AddIcon /icons/text.gif .txt\\n    AddIcon /icons/c.gif .c\\n    AddIcon /icons/p.gif .pl .py\\n    AddIcon /icons/f.gif .for\\n    AddIcon /icons/dvi.gif .dvi\\n    AddIcon /icons/uuencoded.gif .uu\\n    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl\\n    AddIcon /icons/tex.gif .tex\\n    AddIcon /icons/bomb.gif core\\n\\n    AddIcon /icons/back.gif ..\\n    AddIcon /icons/hand.right.gif README\\n    AddIcon /icons/folder.gif ^^DIRECTORY^^\\n    AddIcon /icons/blank.gif ^^BLANKICON^^\\n\\n\\n    DefaultIcon /icons/unknown.gif\\n\\n    ReadmeName README.html\\n    Header
 Name HEADER.html\\n\\n    IndexIgnore .??* *~ *# RCS CVS *,v *,t\\n</IfModule>\\n\\n# Type langages\\n<IfModule mod_mime.c>\\n    AddType application/x-compress .Z\\n    AddType application/x-gzip .gz .tgz\\n\\n    AddLanguage ca .ca\\n    AddLanguage cs .cz .cs\\n    AddLanguage da .dk\\n    AddLanguage de .de\\n    AddLanguage el .el\\n    AddLanguage en .en\\n    AddLanguage eo .eo\\n    AddLanguage es .es\\n    AddLanguage et .et\\n    AddLanguage fr .fr\\n    AddLanguage he .he\\n    AddLanguage hr .hr\\n    AddLanguage it .it\\n    AddLanguage ja .ja\\n    AddLanguage ko .ko\\n    AddLanguage ltz .ltz\\n    AddLanguage nl .nl\\n    AddLanguage nn .nn\\n    AddLanguage no .no\\n    AddLanguage pl .po\\n    AddLanguage pt .pt\\n    AddLanguage pt-BR .pt-br\\n    AddLanguage ru .ru\\n    AddLanguage sv .sv\\n    AddLanguage zh-CN .zh-cn\\n    AddLanguage zh-TW .zh-tw\\n</IfModule>\\n\\n# Langue prioritaire pour les pages de réponses (choisir l'ordre des langues des pages)\\n<IfM
 odule mod_negotiation.c>\\n\\n    LanguagePriority fr ca cs da de el eo es et en he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW\\n\\n    ForceLanguagePriority Prefer Fallback\\n\\n</IfModule>\\n\\n# Type d'encodage de caractères\\n<IfModule mod_mime.c>\\n    AddCharset us-ascii    .ascii .us-ascii\\n    AddCharset ISO-8859-1  .iso8859-1  .latin1\\n    AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen\\n    AddCharset ISO-8859-3  .iso8859-3  .latin3\\n    AddCharset ISO-8859-4  .iso8859-4  .latin4\\n    AddCharset ISO-8859-5  .iso8859-5  .cyr .iso-ru\\n    AddCharset ISO-8859-6  .iso8859-6  .arb .arabic\\n    AddCharset ISO-8859-7  .iso8859-7  .grk .greek\\n    AddCharset ISO-8859-8  .iso8859-8  .heb .hebrew\\n    AddCharset ISO-8859-9  .iso8859-9  .latin5 .trk\\n    AddCharset ISO-8859-10  .iso8859-10  .latin6\\n    AddCharset ISO-8859-13  .iso8859-13\\n    AddCharset ISO-8859-14  .iso8859-14  .latin8\\n    AddCharset ISO-8859-15  .iso8859-15  .latin9\\n    AddCharset ISO-
 8859-16  .iso8859-16  .latin10\\n    AddCharset ISO-2022-JP .iso2022-jp .jis\\n    AddCharset ISO-2022-KR .iso2022-kr .kis\\n    AddCharset ISO-2022-CN .iso2022-cn .cis\\n    AddCharset Big5        .Big5       .big5 .b5\\n    AddCharset cn-Big5     .cn-big5\\n    # For russian, more than one charset is used (depends on client, mostly):\\n    AddCharset WINDOWS-1251 .cp-1251   .win-1251\\n    AddCharset CP866       .cp866\\n    AddCharset KOI8      .koi8\\n    AddCharset KOI8-E      .koi8-e\\n    AddCharset KOI8-r      .koi8-r .koi8-ru\\n    AddCharset KOI8-U      .koi8-u\\n    AddCharset KOI8-ru     .koi8-uk .ua\\n    AddCharset ISO-10646-UCS-2 .ucs2\\n    AddCharset ISO-10646-UCS-4 .ucs4\\n    AddCharset UTF-7       .utf7\\n    AddCharset UTF-8       .utf8\\n    AddCharset UTF-16      .utf16\\n    AddCharset UTF-16BE    .utf16be\\n    AddCharset UTF-16LE    .utf16le\\n    AddCharset UTF-32      .utf32\\n    AddCharset UTF-32BE    .utf32be\\n    AddCharset UTF-32LE    .utf32le\\n   
  AddCharset euc-cn      .euc-cn\\n    AddCharset euc-gb      .euc-gb\\n    AddCharset euc-jp      .euc-jp\\n    AddCharset euc-kr      .euc-kr\\n    #Not sure how euc-tw got in - IANA doesn't list it???\\n    AddCharset EUC-TW      .euc-tw\\n    AddCharset gb2312      .gb2312 .gb\\n    AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2\\n    AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4\\n    AddCharset shift_jis   .shift_jis .sjis\\n\\n    AddHandler type-map var\\n\\n    AddType text/html .shtml\\n    AddOutputFilter INCLUDES .shtml\\n</IfModule>\\n\\n<IfModule mod_setenvif.c>   \\n    BrowserMatch \\\"Mozilla/2\\\" nokeepalive\\n    BrowserMatch \\\"MSIE 4\\\\.0b2;\\\" nokeepalive downgrade-1.0 force-response-1.0\\n    BrowserMatch \\\"RealPlayer 4\\\\.0\\\" force-response-1.0\\n    BrowserMatch \\\"Java/1\\\\.0\\\" force-response-1.0\\n    BrowserMatch \\\"JDK/1\\\\.0\\\" force-response-1.0\\n\\n    BrowserMatch \\\"Microsoft Data Access Internet Publishing Provider\\\" red
 irect-carefully\\n    BrowserMatch \\\"MS FrontPage\\\" redirect-carefully\\n    BrowserMatch \\\"^WebDrive\\\" redirect-carefully\\n    BrowserMatch \\\"^WebDAVFS/1.[012]\\\" redirect-carefully\\n    BrowserMatch \\\"^gnome-vfs/1.0\\\" redirect-carefully\\n    BrowserMatch \\\"^XML Spy\\\" redirect-carefully\\n    BrowserMatch \\\"^Dreamweaver-WebDAV-SCM1\\\" redirect-carefully\\n</IfModule>\\n\\n# module d'information sur le statut du serveur\\n<IfModule mod_status.c>\\n    <Location /server-status>\\n        SetHandler server-status\\n        Order deny,allow\\n        Deny from all\\n        Allow from 127.0.0.1\\n    </Location>\\n</IfModule>\\n\\n# module des informations du serveur\\n<IfModule mod_info.c>\\n    <Location /server-info>\\n        SetHandler server-info\\n        Order deny,allow\\n        Deny from all\\n        Allow from 127.0.0.1\\n    </Location>\\n</IfModule>\\n\\n/etc/apache2/sites-available:\\n\\n<VirtualHost *:80>\\n    # The ServerName directive sets t
 he request scheme, hostname and port that\\n    # the server uses to identify itself. This is used when creating\\n    # redirection URLs. In the context of virtual hosts, the ServerName\\n    # specifies what hostname must appear in the request's Host: header to\\n    # match this virtual host. For the default virtual host (this file) this\\n    # value is not decisive as it is used as a last resort host regardless.\\n    # However, you must set it for any further virtual host explicitly.\\n    #ServerName www.example.com\\n\\n    ServerAdmin webmaster@localhost\\n    DocumentRoot /var/www\\n\\n    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,\\n    # error, crit, alert, emerg.\\n    # It is also possible to configure the loglevel for particular\\n    # modules, e.g.\\n    #LogLevel info ssl:warn\\n\\n    ErrorLog ${APACHE_LOG_DIR}/error.log\\n    CustomLog ${APACHE_LOG_DIR}/access.log combined\\n\\n    # For most configuration files from conf-available/, w
 hich are\\n    # enabled or disabled at a global level, it is possible to\\n    # include a line for only one particular virtual host. For example the\\n    # following line enables the CGI configuration for this host only\\n    # after it has been globally disabled with \\\"a2disconf\\\".\\n    #Include conf-available/serve-cgi-bin.conf\\n</VirtualHost>\\n\\n# vim: syntax=apache ts=4 sw=4 sts=4 sr noet\",\"contenttype\":\"html\",\"countrycode\":\"FR\",\"crawled\":\"Mon, 24 Mar 2014 02:11:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 00:00:00 +0100\",\"domain\":\"www.ubuntu-fr.org\",\"forumid\":\"44cd9a2333\",\"forumname\":\"Serveurs\",\"forumurl\":\"http://forum.ubuntu-fr.org/viewforum.php?id=28\",\"gmt\":\"+1\",\"id\":\"1e3b215b1e6da800e0725913d5034b84\",\"language\":\"French\",\"link\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771#p16374901\",\"links\":[\"http://httpd.apache.org/docs/2.2/howto/htaccess.html\",\"http://www.iana.org/assignments/media-types/index.html\",\"www
 .example.com\"],\"siteid\":\"44cd99800\",\"thread\":\"http://forum.ubuntu-fr.org/viewtopic.php?id=1528771\",\"threadid\":\"1528771\",\"title\":\"Non reconnaissance d'Apache\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"name\":\"machim\",\"username\":\"machim\"},\"content\":\"Oui j'essayais d'installer les paquets ssmtp pour les mails. Puis j'ai fait certaine manipulations. je sais que j'ai fais des mauvaises manipulation mais je ne me rappelle plus. J'ai essayé de desinstaller les paquets apache2, phpmyadmin, mysql, php5... pour reinstaller mais rien ne vas. Voila mon fichier /etc/apache2/apache2.conf:\\n\\n# Répertoire Racine du serveur\\nServerRoo

<TRUNCATED>

[15/45] git commit: Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
Fixed bugs in datasift provider and improved datasift conversion to activity objects


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/5516471e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/5516471e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/5516471e

Branch: refs/heads/master
Commit: 5516471e1b95ec42c8cd582af6111bdaf7c6778c
Parents: 981343a
Author: rebanks <re...@w2odigital.com>
Authored: Tue Jun 3 14:25:16 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Tue Jun 3 14:25:16 2014 -0500

----------------------------------------------------------------------
 .../DatasiftTypeConverterProcessor.java         |   60 +-
 .../serializer/DatasiftActivitySerializer.java  |   18 +
 .../DatasiftTweetActivitySerializer.java        |   26 +-
 .../com/datasift/test/DatasiftSerDeTest.java    |    2 +-
 .../DatasiftActivitySerializerTest.java         |   14 +
 .../src/test/resources/amazon_datasift_json.txt |   10 +
 .../src/test/resources/blog_datasift_json.txt   |  719 ++
 .../src/test/resources/board_datasift_json.txt  | 4136 +++++++++++
 .../test/resources/facebook_datasift_json.txt   | 1843 +++++
 .../src/test/resources/part-r-big.json          | 6998 ------------------
 .../resources/rand_sample_datasift_json.txt     | 1547 ++++
 .../resources/random_sample_datasift_json.txt   | 1547 ++++
 .../src/test/resources/reddit_datasift_json.txt |   33 +
 .../test/resources/twitter_datasift_json.txt    | 1000 +++
 .../test/resources/wikipedia_datasift_json.txt  |  243 +
 .../test/resources/youtube_datasift_json.txt    |    7 +
 .../local/tasks/StreamsProviderTask.java        |    4 +-
 17 files changed, 11199 insertions(+), 7008 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
index a842786..2e44b80 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
@@ -19,8 +19,8 @@ under the License.
 package org.apache.streams.datasift.provider;
 
 import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
-import org.apache.commons.lang.NotImplementedException;
 import org.apache.streams.core.StreamsDatum;
 import org.apache.streams.core.StreamsProcessor;
 import org.apache.streams.datasift.Datasift;
@@ -74,7 +74,8 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
         } else if (this.outClass.equals(String.class)) {
             this.converter = new StringConverter();
         } else {
-            throw new NotImplementedException("No converter implemented for class : "+this.outClass.getName());
+            LOGGER.warn("Using defaulting datasift converter");
+            this.converter = new DefaultConverter(this.outClass);
         }
     }
 
@@ -108,10 +109,38 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
         public Object convert(Object toConvert, ObjectMapper mapper) {
             try {
                 if(toConvert instanceof String){
-                    LOGGER.debug(mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class)));
+//                    LOGGER.debug(mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class)));
                     return mapper.writeValueAsString(mapper.readValue((String) toConvert, Datasift.class));
+                } else {
+                    if(toConvert.getClass().equals(Activity.class)) { //hack to remove additional properties
+                        ObjectNode node = mapper.convertValue(toConvert, ObjectNode.class);
+                        if(node.has("additionalProperties")) {
+                            ObjectNode additionalProperties = (ObjectNode) node.get("additionalProperties");
+//                            node.put("keywords", additionalProperties.get("keywords"));
+//                            node.put("location", additionalProperties.get("location"));
+//                            node.put("hashtags", additionalProperties.get("hashtags"));
+//                            node.put("datasift", additionalProperties.get("datasift"));
+//                            node.put("user_mentions", additionalProperties.get("user_mentions"));
+                            node.putAll(additionalProperties);
+                            node.remove("additionalProperties");
+                        }
+                        if(node.has("actor")) {
+                            ObjectNode actor = (ObjectNode) node.get("actor");
+                            if(actor.has("additionalProperties")) {
+                                ObjectNode additionalProperties = (ObjectNode) actor.get("additionalProperties");
+//                                actor.put("followers", additionalProperties.get("followers"));
+//                                actor.put("location", additionalProperties.get("location"));
+//                                actor.put("screenName", additionalProperties.get("screenName"));
+//                                actor.put("posts", additionalProperties.get("posts"));
+//                                actor.put("favorites", additionalProperties.get("favorties"));
+                                actor.putAll(additionalProperties);
+                                actor.remove("additionalProperties");
+                            }
+                        }
+                        return mapper.writeValueAsString(node);
+                    } else
+                        return mapper.writeValueAsString(toConvert);
                 }
-                return mapper.writeValueAsString(toConvert);
             } catch (Exception e) {
                 LOGGER.error("Exception while trying to write {} as a String.", toConvert.getClass());
                 LOGGER.error("Exception : {}", e);
@@ -121,4 +150,27 @@ public class DatasiftTypeConverterProcessor implements StreamsProcessor {
 
 
     }
+
+    private class DefaultConverter implements DatasiftConverter {
+
+        private Class clazz;
+
+        public DefaultConverter(Class clazz) {
+            this.clazz = clazz;
+        }
+
+        @Override
+        public Object convert(Object toConvert, ObjectMapper mapper) {
+            try {
+                if(toConvert instanceof String) {
+                    return mapper.readValue((String) toConvert, this.clazz);
+                } else {
+                    return mapper.convertValue(toConvert, this.clazz);
+                }
+
+            } catch (Exception e) {
+                throw new RuntimeException("Failed converting +"+ toConvert.getClass().getName()+" to "+ this.clazz.getName());
+            }
+        }
+    }
 };

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
index a9b7db1..c6ff221 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
@@ -1,3 +1,21 @@
+/*
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+*/
 package org.apache.streams.datasift.serializer;
 
 import com.fasterxml.jackson.databind.ObjectMapper;

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
index 4931da6..ef48fa6 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
@@ -1,3 +1,21 @@
+/*
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+*/
 package org.apache.streams.datasift.serializer;
 
 
@@ -95,7 +113,8 @@ public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySeri
 
         Image profileImage = new Image();
         String profileUrl = null;
-        if(user.getAdditionalProperties() != null) {
+        profileUrl = event.getInteraction().getAuthor().getAvatar();
+        if(profileUrl == null && user.getAdditionalProperties() != null) {
             Object url = user.getAdditionalProperties().get("profile_image_url_https");
             if(url instanceof String)
                 profileUrl = (String) url;
@@ -140,12 +159,12 @@ public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySeri
 
         Image profileImage = new Image();
         String profileUrl = null;
-        if(user.getAdditionalProperties() != null) {
+        if(actor.getImage() == null && user.getAdditionalProperties() != null) {
             Object url = user.getAdditionalProperties().get("profile_image_url_https");
             if(url instanceof String)
                 profileUrl = (String) url;
         }
-        if(profileUrl == null) {
+        if(actor.getImage() == null && profileUrl == null) {
             profileUrl = user.getProfileImageUrl();
         }
         profileImage.setUrl(profileUrl);
@@ -189,6 +208,7 @@ public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySeri
             Map<String, Object> rebroadcasts = Maps.newHashMap();
             rebroadcasts.put("perspectival", true);
             rebroadcasts.put("count", retweet.getCount());
+            extensions.put("rebroadcasts", rebroadcasts);
         }
 
         if(interaction.getAdditionalProperties() != null) {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
index 785ec8f..084e604 100644
--- a/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
@@ -37,7 +37,7 @@ public class DatasiftSerDeTest {
         mapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, Boolean.TRUE);
         mapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, Boolean.TRUE);
 
-        InputStream is = DatasiftSerDeTest.class.getResourceAsStream("/part-r-big.json");
+        InputStream is = DatasiftSerDeTest.class.getResourceAsStream("/part-r-00000.json");
         InputStreamReader isr = new InputStreamReader(is);
         BufferedReader br = new BufferedReader(isr);
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
index 0ffee7b..e003435 100644
--- a/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/org/apache/streams/datasift/serializer/DatasiftActivitySerializerTest.java
@@ -1,5 +1,6 @@
 package org.apache.streams.datasift.serializer;
 
+import com.fasterxml.jackson.databind.JsonNode;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import org.apache.streams.jackson.StreamsJacksonMapper;
 import org.apache.streams.pojo.json.Activity;
@@ -29,6 +30,19 @@ public class DatasiftActivitySerializerTest {
         }
     }
 
+    @Test
+    public void testTwitterConversion() throws Exception {
+        Scanner scanner = new Scanner(DatasiftActivitySerializerTest.class.getResourceAsStream("/twitter_datasift_json.txt"));
+        String line = null;
+        while(scanner.hasNextLine()) {
+            line = scanner.nextLine();
+            testGeneralConversion(line);
+            System.out.println("ORIGINAL -> "+line);
+            System.out.println("ACTIVITY -> "+MAPPER.writeValueAsString(SERIALIZER.deserialize(line)));
+            System.out.println("NODE     -> "+MAPPER.convertValue(SERIALIZER.deserialize(line), JsonNode.class));
+        }
+    }
+
 
 
     /**

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
new file mode 100644
index 0000000..cfa7b8a
--- /dev/null
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
@@ -0,0 +1,10 @@
+{"amazon":{"anchor":"531918","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests in my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US
 ","crawled":"Wed, 26 Mar 2014 03:04:38 +0000","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b3ae08871aa00e072922735bfd03a","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#531918","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25","threadid":"148679","threadstarter":1,"title":"Apache is under DOS attack","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests i
 n my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","id":"1e3b3ae08871aa00e072922735bfd03a","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#531918","schema":{"version":3},"subtype":"thread","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evid
 ence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"531918","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests in my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US
 ","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b3ae08871aa00e072ec7f008f23d8","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#531918","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","threadstarter":1,"title":"Apache is under DOS attack","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests
  in my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","id":"1e3b3ae08871aa00e072ec7f008f23d8","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#531918","received_at":4743642501859712487,"schema":{"version":3},"subtype":"thread","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,
 "confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532139","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b45ca802ea600e07231b5509f040a","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532139","siteid":"4fb31966d4","thread":"https:\/
 \/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","id":"1e3b45ca802ea600e07231b5509f040a","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532139","schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Apache","sentiment":-6,"c
 onfident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532139","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Wed, 26 Mar 2014 03:04:38 +0000","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b45ca802ea600e0724270bd005ab0","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#532139","siteid":"4fb31966d4","thread":"https:\/\
 /forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","id":"1e3b45ca802ea600e0724270bd005ab0","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#532139","received_at":4743641321202510935,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"n
 ame":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532169","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Will somepne from amazon respond to this...???<br \/>\n<br \/>\nDo they have something at their end to prevent these half opened http requests...???\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Wed, 26 Mar 2014 01:13:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b483c5977a600e072fa2485801888","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532169","siteid":"4fb3
 1966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Will somepne from amazon respond to this...???<br \/>\n<br \/>\nDo they have something at their end to prevent these half opened http requests...???\n                <\/div>","contenttype":"html","created_at":"Wed, 26 Mar 2014 01:13:00 +0000","id":"1e3b483c5977a600e072fa2485801888","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532169","received_at":4743642502084954161,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salienc
 e":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532280","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293234","name":"hardeepb","username":"hardeepb"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hey,<br \/>\n<br \/>\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br \/>\nQuick search provide couple of useful link to being.<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html\">http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html<\/a><br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount\">http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount<\/a><br \/>\n<br \/>\nOR<br \/>\n<br \/>\nYou
  can search in marketplace for AMIs, however this might require topology change, for example check links below.<br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5\">https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5<\/a><br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf\">https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf<\/a><br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Wed, 26 Mar 2014 04:38:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b4a068f68a400e072b065ee85dcba","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532280","li
 nks":["http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html","http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount","https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5","https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293234","name":"hardeepb","username":"hardeepb"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hey,<br \/>\n<br \/>\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br \/>\nQuick search provide couple of useful link to being.<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/sy
 sextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html\">http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html<\/a><br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount\">http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount<\/a><br \/>\n<br \/>\nOR<br \/>\n<br \/>\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5\">https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5<\/a><br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf\">https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf<\/a><br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Wed, 26 Mar 2014 04:38:00 +0000"
 ,"id":"1e3b4a068f68a400e072b065ee85dcba","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532280","received_at":4743642502085381141,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200,200],"created_at":["Sat, 29 Mar 2014 15:17:47 +0000","Sat, 29 Mar 2014 15:17:47 +0000","Sat, 29 Mar 2014 15:17:48 +0000","Sat, 29 Mar 2014 15:17:48 +0000"],"hops":[["http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html"],[],[],[]],"meta":{"charset":["UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text\/html","text\/html","text\/html","text\/html"],"description":["","(1 reply) Hello, up to CentOS 5.3 it was possible, to control new ip connections by \"recent\", \"seconds\" and \"hitcount\" -A INPUT -m state --state NEW -m recent --set -p tcp --dport 80 -A INPUT -m state --state NEW -m recent --update --seconds
  60 --hitcount 1000 -p tcp --dport 80 -j LOG --log-prefix \"FW DROP IP Flood: \" -A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT so that -","aiProtect identifies and mitigates DDoS attacks, while tracking the source and method of the attack. aiProtect works like a reverse proxy server and is placed in between your origin server and the web.","Complementing traditional network security solutions, DenyAll's Protect family of Web Application Firewalls (WAF) and Web Services Firewalls (WSF) rely on a HTTP\/HTTPS reverse proxy architecture and provide"],"keywords":[[],[],["aiProtect Denial of Service Protection","Security","Network Infrastructure","DOS DDOS Firewall SYN flood Free Trial","Monitoring","Server Software","AWS","EC2"],["DenyAll Protect - Web Application & Service Firewalls","Security","Network Infrastructure","security waf reverse proxy","Monitoring
 ","Server Software","AWS","EC2"]],"lang":["unknown","unknown","unknown","unknown"]},"normalized_url":["http:\/\/sysextra.blogspot.co.uk\/2010\/11\/using-mighty-iptables-to-prevent-https.html","http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount","https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5","https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf"],"retweet_count":[0,0,0,0],"title":["The Sysadmin Extravaganza: Using the Mighty IPTables to Prevent an HTTP(s) DoS Attack","[CentOS] iptables: hitcount - Grokbase","aiProtect Denial of Service Protection on AWS Marketplace","DenyAll Protect - Web Application & Service Firewalls on AWS Marketplace"],"url":["http:\/\/sysextra.blogspot.co.uk\/2010\/11\/using-mighty-iptables-to-prevent-https.html","http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount","https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5","https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_r
 f"]},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
+{"amazon":{"anchor":"532553","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=157781","name":"ashokkumarkashnia","username":"ashokkumarkashnia"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Team,<br \/>\n<br \/>\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br \/>\n<br \/>\nI want to use s3 bucket for it.<br \/>\n<br \/>\nPlease help<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:35:16 +0000","created_at":"Thu, 27 Mar 2014 03:54:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b5636dd03ac00e0720ed85ed96cc0","language":"English","link
 ":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148890&tstart=75#532553","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148890&tstart=75","threadid":"148890","threadstarter":1,"title":"Centerlized apache logs manage","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=157781","name":"ashokkumarkashnia","username":"ashokkumarkashnia"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Team,<br \/>\n<br \/>\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br \/>\n<br \/>\nI want to use s3 bucket for it.<br \/>\n<br \/>\nPlease help<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Thu, 27 Mar 2014 03:54:00 +0000","id":"1e3b5636dd03ac00e0720ed85ed96cc0","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148890
 &tstart=75#532553","received_at":4743642503378266122,"schema":{"version":3},"subtype":"thread","title":"Centerlized apache logs manage","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
+{"amazon":{"anchor":"532637","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=151961","name":"soundstrue-phil","username":"soundstrue-phil"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer\/cluster)<br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/shop\/\">http:\/\/example.com\/shop\/<\/a><br \/>\n  ProxyPass \/shop <a class=\"jive-link-external\" href=\"http:\/\/app01.example-util.com\">http:\/\/app01.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/blog\/\">http:\/\/example.com\/blog\/<\/a><br \/>\n  ProxyPass \
 /blog <a class=\"jive-link-external\" href=\"http:\/\/app02.example-util.com\">http:\/\/app02.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/store\/\">http:\/\/example.com\/store\/<\/a><br \/>\n   ProxyPass \/store  storeapp-env.elasticbeanstalk.com<br \/>\n<br \/>\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br \/>\n<br \/>\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Thu, 27 Mar 2014 13:54:12 +0000","created_at":"Thu, 27 Mar 201
 4 10:10:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=86","id":"1e3b597f49f0ac00e072700816848226","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148928&tstart=0#532637","links":["http:\/\/example.com\/shop\/","http:\/\/app01.example-util.com","http:\/\/example.com\/blog\/","http:\/\/app02.example-util.com","http:\/\/example.com\/store\/"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148928&tstart=0","threadid":"148928","threadstarter":1,"title":"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?","topics":"Computers","type":"thread"},"demographic":{"gender":"male"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=151961","name":"soundstrue-phil","username":"soundstrue-phil"},"content":"<div style=\"line-height:1.5; padding-left: 25px
 ;padding-right: 10px;\">\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer\/cluster)<br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/shop\/\">http:\/\/example.com\/shop\/<\/a><br \/>\n  ProxyPass \/shop <a class=\"jive-link-external\" href=\"http:\/\/app01.example-util.com\">http:\/\/app01.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/blog\/\">http:\/\/example.com\/blog\/<\/a><br \/>\n  ProxyPass \/blog <a class=\"jive-link-external\" href=\"http:\/\/app02.example-util.com\">http:\/\/app02.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/store\/\">http:\/\/example.com\/store\/<\/a><br \/>\n   ProxyPass \/store  storeapp-env.elasticbeanstalk.c
 om<br \/>\n<br \/>\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br \/>\n<br \/>\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\n                <\/div>","contenttype":"html","created_at":"Thu, 27 Mar 2014 10:10:00 +0000","id":"1e3b597f49f0ac00e072700816848226","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148928&tstart=0#532637","received_at":4743641818705321945,"schema":{"version":3},"subtype":"thread","title":"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_e
 xtended":"en"},"links":{"code":[404,500,404,500,404],"created_at":["Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000"],"hops":[["http:\/\/example.com\/shop\/"],["http:\/\/app01.example-util.com"],["http:\/\/example.com\/blog\/"],["http:\/\/app02.example-util.com"],["http:\/\/example.com\/store\/"]],"normalized_url":[null,null,null,null,null],"retweet_count":[0,0,0,0,0],"title":["null","null","null","null","null"],"url":["http:\/\/example.com\/shop\/","http:\/\/app01.example-util.com","http:\/\/example.com\/blog\/","http:\/\/app02.example-util.com","http:\/\/example.com\/store\/"]},"salience":{"content":{"entities":[{"name":"Amazon.com","sentiment":-1,"confident":1,"label":"Company","evidence":5,"type":"Company","about":1,"themes":["elastic beanstalk load balancer","single apache host","dns name","complicated configuration","perhaps elasticbeanstalk"]},{"name":"VPC",
 "sentiment":-1,"confident":1,"label":"Company","evidence":5,"type":"Company","about":1,"themes":["elastic beanstalk load balancer","single apache host","dns name","complicated configuration","perhaps elasticbeanstalk"]}],"sentiment":0},"title":{"sentiment":0}}}
+{"amazon":{"anchor":"533193","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/
 SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy s
 etup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"darkgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 0
 2:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","links":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwo
 wski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<
 br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy setup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"dar
 kgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL
  (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text\/html","text\/html","text\/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined
  configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,
 "confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+{"amazon":{"anchor":"533271","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.c
 om\/forum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the
  SSLRequireSSL directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}


[29/45] git commit: Fixed RFCUtils so all tests pass

Posted by mf...@apache.org.
Fixed RFCUtils so all tests pass


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/ad595b4e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/ad595b4e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/ad595b4e

Branch: refs/heads/master
Commit: ad595b4eecd6c90cc715eea8e40e0d25e17ab6f1
Parents: 906a68e
Author: rebanks <re...@w2odigital.com>
Authored: Mon Jun 16 15:30:56 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Mon Jun 16 15:30:56 2014 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/streams/data/util/RFC3339Utils.java | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/ad595b4e/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java b/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
index 218b9ba..bd32668 100644
--- a/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
+++ b/streams-pojo/src/main/java/org/apache/streams/data/util/RFC3339Utils.java
@@ -44,6 +44,7 @@ public class RFC3339Utils {
     private static final String SUB_SECOND = "\\.([0-9]*)";
     private static final String UTC = "Z$";
 
+
     private static final Pattern MILLIS = Pattern.compile("^[0-9]*$");
     private static final Pattern UTC_STANDARD = Pattern.compile(BASE + UTC);
     private static final Pattern UTC_SUB_SECOND = Pattern.compile(BASE + SUB_SECOND + UTC);
@@ -159,6 +160,9 @@ public class RFC3339Utils {
      * @return {@link org.joda.time.DateTime} representation of the dateString
      */
     public static DateTime parseToUTC(String dateString) {
+        if(MILLIS.matcher(dateString).find()) {
+            return new DateTime(Long.parseLong(dateString));
+        }
         try {
             return DEFAULT_FORMATTER.parseDateTime(dateString);
         } catch (Exception e) {


[28/45] git commit: Removed klout information fromd datasift test files

Posted by mf...@apache.org.
Removed klout information fromd datasift test files


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/906a68ee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/906a68ee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/906a68ee

Branch: refs/heads/master
Commit: 906a68eeb8248a5e17cd31f89978ac8e46d800b2
Parents: 7337b09
Author: rebanks <re...@w2odigital.com>
Authored: Mon Jun 16 14:46:32 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Mon Jun 16 14:46:32 2014 -0500

----------------------------------------------------------------------
 .../src/test/resources/amazon_datasift_json.txt |   20 +-
 .../src/test/resources/blog_datasift_json.txt   | 1438 +--
 .../src/test/resources/board_datasift_json.txt  | 8296 +++++++++---------
 .../test/resources/facebook_datasift_json.txt   | 3686 ++++----
 .../src/test/resources/part-r-00000.json        | 1724 ++--
 .../resources/rand_sample_datasift_json.txt     | 3094 +++----
 .../resources/random_sample_datasift_json.txt   | 3094 +++----
 .../src/test/resources/reddit_datasift_json.txt |   66 +-
 .../test/resources/twitter_datasift_json.txt    | 2000 ++---
 .../test/resources/wikipedia_datasift_json.txt  |  495 +-
 .../test/resources/youtube_datasift_json.txt    |   14 +-
 11 files changed, 11980 insertions(+), 11947 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
index cfa7b8a..0a66560 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/amazon_datasift_json.txt
@@ -1,10 +1,10 @@
-{"amazon":{"anchor":"531918","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests in my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US
 ","crawled":"Wed, 26 Mar 2014 03:04:38 +0000","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b3ae08871aa00e072922735bfd03a","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#531918","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25","threadid":"148679","threadstarter":1,"title":"Apache is under DOS attack","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests i
 n my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","id":"1e3b3ae08871aa00e072922735bfd03a","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#531918","schema":{"version":3},"subtype":"thread","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evid
 ence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
-{"amazon":{"anchor":"531918","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests in my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US
 ","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b3ae08871aa00e072ec7f008f23d8","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#531918","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","threadstarter":1,"title":"Apache is under DOS attack","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi,<br \/>\nI have a apache webserver running infront of tomcat...<br \/>\nI see millions of requests
  in my apache access log..<br \/>\nFrom some IP's there are more than 1 lakhs of requests daily...<br \/>\n<br \/>\nI am not a security expert...But after googling <br \/>\n<br \/>\nI have installed mod_security and mod_evasive...<br \/>\n<br \/>\nPlease help me if this is the only thing I can do...<br \/>\n<br \/>\nOr is there anything else provided by Amazon...<br \/>\n<br \/>\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Mon, 24 Mar 2014 23:43:00 +0000","id":"1e3b3ae08871aa00e072ec7f008f23d8","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#531918","received_at":4743642501859712487,"schema":{"version":3},"subtype":"thread","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,
 "confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
-{"amazon":{"anchor":"532139","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b45ca802ea600e07231b5509f040a","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532139","siteid":"4fb31966d4","thread":"https:\/
 \/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","id":"1e3b45ca802ea600e07231b5509f040a","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532139","schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Apache","sentiment":-6,"c
 onfident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
-{"amazon":{"anchor":"532139","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Wed, 26 Mar 2014 03:04:38 +0000","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b45ca802ea600e0724270bd005ab0","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#532139","siteid":"4fb31966d4","thread":"https:\/\
 /forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Can anyone help me with this...<br \/>\n<br \/>\nIt looks like it's type of syn flood attack...<br \/>\n<br \/>\nthanks...\n                <\/div>","contenttype":"html","created_at":"Tue, 25 Mar 2014 20:33:00 +0000","id":"1e3b45ca802ea600e0724270bd005ab0","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=25#532139","received_at":4743641321202510935,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"n
 ame":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
-{"amazon":{"anchor":"532169","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Will somepne from amazon respond to this...???<br \/>\n<br \/>\nDo they have something at their end to prevent these half opened http requests...???\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Wed, 26 Mar 2014 01:13:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b483c5977a600e072fa2485801888","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532169","siteid":"4fb3
 1966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=292012","name":"kunal_agarwal","username":"kunal_agarwal"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Will somepne from amazon respond to this...???<br \/>\n<br \/>\nDo they have something at their end to prevent these half opened http requests...???\n                <\/div>","contenttype":"html","created_at":"Wed, 26 Mar 2014 01:13:00 +0000","id":"1e3b483c5977a600e072fa2485801888","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532169","received_at":4743642502084954161,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salienc
 e":{"content":{"sentiment":0},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
-{"amazon":{"anchor":"532280","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293234","name":"hardeepb","username":"hardeepb"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hey,<br \/>\n<br \/>\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br \/>\nQuick search provide couple of useful link to being.<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html\">http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html<\/a><br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount\">http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount<\/a><br \/>\n<br \/>\nOR<br \/>\n<br \/>\nYou
  can search in marketplace for AMIs, however this might require topology change, for example check links below.<br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5\">https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5<\/a><br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf\">https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf<\/a><br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:48:38 +0000","created_at":"Wed, 26 Mar 2014 04:38:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b4a068f68a400e072b065ee85dcba","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532280","li
 nks":["http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html","http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount","https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5","https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100","threadid":"148679","title":"Apache is under DOS attack","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293234","name":"hardeepb","username":"hardeepb"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hey,<br \/>\n<br \/>\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br \/>\nQuick search provide couple of useful link to being.<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/sy
 sextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html\">http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html<\/a><br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount\">http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount<\/a><br \/>\n<br \/>\nOR<br \/>\n<br \/>\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5\">https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5<\/a><br \/>\n<a class=\"jive-link-external\" href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf\">https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf<\/a><br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Wed, 26 Mar 2014 04:38:00 +0000"
 ,"id":"1e3b4a068f68a400e072b065ee85dcba","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148679&tstart=100#532280","received_at":4743642502085381141,"schema":{"version":3},"subtype":"post","title":"Apache is under DOS attack","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200,200],"created_at":["Sat, 29 Mar 2014 15:17:47 +0000","Sat, 29 Mar 2014 15:17:47 +0000","Sat, 29 Mar 2014 15:17:48 +0000","Sat, 29 Mar 2014 15:17:48 +0000"],"hops":[["http:\/\/sysextra.blogspot.com\/2010\/11\/using-mighty-iptables-to-prevent-https.html"],[],[],[]],"meta":{"charset":["UTF-8","UTF-8","UTF-8","UTF-8"],"content_type":["text\/html","text\/html","text\/html","text\/html"],"description":["","(1 reply) Hello, up to CentOS 5.3 it was possible, to control new ip connections by \"recent\", \"seconds\" and \"hitcount\" -A INPUT -m state --state NEW -m recent --set -p tcp --dport 80 -A INPUT -m state --state NEW -m recent --update --seconds
  60 --hitcount 1000 -p tcp --dport 80 -j LOG --log-prefix \"FW DROP IP Flood: \" -A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT so that -","aiProtect identifies and mitigates DDoS attacks, while tracking the source and method of the attack. aiProtect works like a reverse proxy server and is placed in between your origin server and the web.","Complementing traditional network security solutions, DenyAll's Protect family of Web Application Firewalls (WAF) and Web Services Firewalls (WSF) rely on a HTTP\/HTTPS reverse proxy architecture and provide"],"keywords":[[],[],["aiProtect Denial of Service Protection","Security","Network Infrastructure","DOS DDOS Firewall SYN flood Free Trial","Monitoring","Server Software","AWS","EC2"],["DenyAll Protect - Web Application & Service Firewalls","Security","Network Infrastructure","security waf reverse proxy","Monitoring
 ","Server Software","AWS","EC2"]],"lang":["unknown","unknown","unknown","unknown"]},"normalized_url":["http:\/\/sysextra.blogspot.co.uk\/2010\/11\/using-mighty-iptables-to-prevent-https.html","http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount","https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5","https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_rf"],"retweet_count":[0,0,0,0],"title":["The Sysadmin Extravaganza: Using the Mighty IPTables to Prevent an HTTP(s) DoS Attack","[CentOS] iptables: hitcount - Grokbase","aiProtect Denial of Service Protection on AWS Marketplace","DenyAll Protect - Web Application & Service Firewalls on AWS Marketplace"],"url":["http:\/\/sysextra.blogspot.co.uk\/2010\/11\/using-mighty-iptables-to-prevent-https.html","http:\/\/grokbase.com\/t\/centos\/centos\/126b2fb8j7\/iptables-hitcount","https:\/\/aws.amazon.com\/marketplace\/pp\/B007OOKAZ0?sr=0-5","https:\/\/aws.amazon.com\/marketplace\/pp\/B00FGCUM7S\/ref=vdr_r
 f"]},"salience":{"content":{"sentiment":2},"title":{"entities":[{"name":"Apache","sentiment":-6,"confident":1,"label":"Company","evidence":7,"type":"Company","about":1}],"sentiment":-6,"topics":[{"name":"War","score":0.53363662958145,"additional":"Apache is under DOS attack","hits":0}]}}}
-{"amazon":{"anchor":"532553","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=157781","name":"ashokkumarkashnia","username":"ashokkumarkashnia"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Team,<br \/>\n<br \/>\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br \/>\n<br \/>\nI want to use s3 bucket for it.<br \/>\n<br \/>\nPlease help<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Sat, 29 Mar 2014 10:35:16 +0000","created_at":"Thu, 27 Mar 2014 03:54:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a32","forumname":"Category: Amazon Web Services Amazon Elastic Compute Cloud","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=30","id":"1e3b5636dd03ac00e0720ed85ed96cc0","language":"English","link
 ":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148890&tstart=75#532553","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148890&tstart=75","threadid":"148890","threadstarter":1,"title":"Centerlized apache logs manage","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=157781","name":"ashokkumarkashnia","username":"ashokkumarkashnia"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Team,<br \/>\n<br \/>\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br \/>\n<br \/>\nI want to use s3 bucket for it.<br \/>\n<br \/>\nPlease help<br \/>\n<br \/>\nThanks\n                <\/div>","contenttype":"html","created_at":"Thu, 27 Mar 2014 03:54:00 +0000","id":"1e3b5636dd03ac00e0720ed85ed96cc0","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148890
 &tstart=75#532553","received_at":4743642503378266122,"schema":{"version":3},"subtype":"thread","title":"Centerlized apache logs manage","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"amazon":{"anchor":"532637","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=151961","name":"soundstrue-phil","username":"soundstrue-phil"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer\/cluster)<br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/shop\/\">http:\/\/example.com\/shop\/<\/a><br \/>\n  ProxyPass \/shop <a class=\"jive-link-external\" href=\"http:\/\/app01.example-util.com\">http:\/\/app01.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/blog\/\">http:\/\/example.com\/blog\/<\/a><br \/>\n  ProxyPass \
 /blog <a class=\"jive-link-external\" href=\"http:\/\/app02.example-util.com\">http:\/\/app02.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/store\/\">http:\/\/example.com\/store\/<\/a><br \/>\n   ProxyPass \/store  storeapp-env.elasticbeanstalk.com<br \/>\n<br \/>\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br \/>\n<br \/>\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Thu, 27 Mar 2014 13:54:12 +0000","created_at":"Thu, 27 Mar 201
 4 10:10:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=86","id":"1e3b597f49f0ac00e072700816848226","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148928&tstart=0#532637","links":["http:\/\/example.com\/shop\/","http:\/\/app01.example-util.com","http:\/\/example.com\/blog\/","http:\/\/app02.example-util.com","http:\/\/example.com\/store\/"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148928&tstart=0","threadid":"148928","threadstarter":1,"title":"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?","topics":"Computers","type":"thread"},"demographic":{"gender":"male"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=151961","name":"soundstrue-phil","username":"soundstrue-phil"},"content":"<div style=\"line-height:1.5; padding-left: 25px
 ;padding-right: 10px;\">\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer\/cluster)<br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/shop\/\">http:\/\/example.com\/shop\/<\/a><br \/>\n  ProxyPass \/shop <a class=\"jive-link-external\" href=\"http:\/\/app01.example-util.com\">http:\/\/app01.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/blog\/\">http:\/\/example.com\/blog\/<\/a><br \/>\n  ProxyPass \/blog <a class=\"jive-link-external\" href=\"http:\/\/app02.example-util.com\">http:\/\/app02.example-util.com<\/a><br \/>\n<br \/>\n<a class=\"jive-link-external\" href=\"http:\/\/example.com\/store\/\">http:\/\/example.com\/store\/<\/a><br \/>\n   ProxyPass \/store  storeapp-env.elasticbeanstalk.c
 om<br \/>\n<br \/>\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br \/>\n<br \/>\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\n                <\/div>","contenttype":"html","created_at":"Thu, 27 Mar 2014 10:10:00 +0000","id":"1e3b597f49f0ac00e072700816848226","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=148928&tstart=0#532637","received_at":4743641818705321945,"schema":{"version":3},"subtype":"thread","title":"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_e
 xtended":"en"},"links":{"code":[404,500,404,500,404],"created_at":["Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000","Thu, 27 Mar 2014 18:02:20 +0000"],"hops":[["http:\/\/example.com\/shop\/"],["http:\/\/app01.example-util.com"],["http:\/\/example.com\/blog\/"],["http:\/\/app02.example-util.com"],["http:\/\/example.com\/store\/"]],"normalized_url":[null,null,null,null,null],"retweet_count":[0,0,0,0,0],"title":["null","null","null","null","null"],"url":["http:\/\/example.com\/shop\/","http:\/\/app01.example-util.com","http:\/\/example.com\/blog\/","http:\/\/app02.example-util.com","http:\/\/example.com\/store\/"]},"salience":{"content":{"entities":[{"name":"Amazon.com","sentiment":-1,"confident":1,"label":"Company","evidence":5,"type":"Company","about":1,"themes":["elastic beanstalk load balancer","single apache host","dns name","complicated configuration","perhaps elasticbeanstalk"]},{"name":"VPC",
 "sentiment":-1,"confident":1,"label":"Company","evidence":5,"type":"Company","about":1,"themes":["elastic beanstalk load balancer","single apache host","dns name","complicated configuration","perhaps elasticbeanstalk"]}],"sentiment":0},"title":{"sentiment":0}}}
-{"amazon":{"anchor":"533193","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/
 SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy s
 etup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"darkgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 0
 2:56:53 +0000","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.com\/forum.jspa?forumID=86","id":"1e3b7b6d2cfaa000e072b2fe78019acc","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","links":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"],"siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","threadstarter":1,"title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"thread"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwo
 wski","username":"zwowski"},"content":"<div style=\"line-height:1.5; padding-left: 25px;padding-right: 10px;\">\n                Hi there,<br \/>\n<br \/>\nI have some troubles applying the Apache SSLRequireSSL directive..<br \/>\nI'm running a single instance PHP 5.5 environment.<br \/>\n<br \/>\nI have set up SSL as described here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html<\/a><br \/>\n<br \/>\nI used the ssl.conf snippet as given for PHP:<a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html<\/a><br \/>\n<br \/>\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<
 br \/>\n<br \/>\nI want to protect my app\/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including<\/b> the HTTP authentication.<br \/>\n<br \/>\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br \/>\n<br \/>\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br \/>\n(SSLRequireSSL takes precedence over Auth.)<br \/>\n<br \/>\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\"jive-link-external\" href=\"https:\/\/\">https:\/\/<\/a> domain.<br \/>\n<br \/>\nI guess it has to do with the proxy setup?:<br \/>\n<pre class=\"jive-pre\"><code class=\"jive-code jive-java\">ProxyPass \/ http:<font color=\"darkgreen\">\/\/localhost:80\/ retry=0<\/font>\nProxyPassReverse \/ http:<font color=\"dar
 kgreen\">\/\/localhost:80\/<\/font>\nProxyPreserveHost on\n<\/code><\/pre><br \/>\nIs there anyway I can get this to work?<br \/>\n<br \/>\nThanks!<br \/>\n<br \/>\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\"jive-link-external\" href=\"http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP\">http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP<\/a> should have Apache 2.2 installed\/configured?<br \/>\nThis is <b>not<\/b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br \/>\n<br \/>\n\n                <\/div>","contenttype":"html","created_at":"Sun, 30 Mar 2014 02:56:00 +0000","id":"1e3b7b6d2cfaa000e072b2fe78019acc","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533193","schema":{"version":3},"subtype":"thread","title":"Apache: SSLRequireSSL
  (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200,200,200],"created_at":["Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:11 +0000","Tue, 01 Apr 2014 07:44:12 +0000"],"hops":[[],[],["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html#concepts.platforms.PHP"]],"meta":{"charset":["CP1252","CP1252","CP1252"],"content_type":["text\/html","text\/html","text\/html"],"description":["Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.","Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.","AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, and Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined
  configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy."],"lang":["unknown","unknown","unknown"]},"normalized_url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"],"retweet_count":[0,0,0],"title":["Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk","SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk","Supported Platforms - AWS Elastic Beanstalk"],"url":["http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSL.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/SSLPHP.SingleInstance.html","http:\/\/docs.aws.amazon.com\/elasticbeanstalk\/latest\/dg\/concepts.platforms.html"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,
 "confident":1,"label":"Company","evidence":1,"type":"Company","about":0}],"sentiment":-2},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
-{"amazon":{"anchor":"533271","author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"boardname":"AWS Developer Forums: Discussion Forums","categories":"Software","content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.","contenttype":"html","countrycode":"US","crawled":"Tue, 01 Apr 2014 02:56:53 +0000","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","domain":"aws.amazon.com","forumid":"4fb3198a5d","forumname":"AWS Elastic Beanstalk (Beta)","forumurl":"https:\/\/forums.aws.amazon.c
 om\/forum.jspa?forumID=86","id":"1e3b81d80759aa00e072ad336a2bab92","language":"English","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","siteid":"4fb31966d4","thread":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0","threadid":"149131","title":"Apache: SSLRequireSSL (single instance)","topics":"Computers","type":"post"},"interaction":{"author":{"link":"https:\/\/forums.aws.amazon.com\/profile.jspa?userID=293511","name":"zwowski","username":"zwowski"},"content":"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\n\nAuthUserFile ...\n...\nRequire valid-user\n \nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\n\n\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\n\nI do keep this question open, since I'm still wondering about the
  SSLRequireSSL directive.","contenttype":"html","created_at":"Sun, 30 Mar 2014 15:11:00 +0000","id":"1e3b81d80759aa00e072ad336a2bab92","link":"https:\/\/forums.aws.amazon.com\/thread.jspa?threadID=149131&tstart=0#533271","schema":{"version":3},"subtype":"post","title":"Apache: SSLRequireSSL (single instance)","type":"amazon"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":1},"title":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["single instance"]}],"sentiment":0}}}
+"{\"amazon\":{\"anchor\":\"531918\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"c
 ontenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 26 Mar 2014 03:04:38 +0000\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b3ae08871aa00e072922735bfd03a\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#531918\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25\",\"threadid\":\"148679\",\"threadstarter\":1,\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n  
               Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"id\":\"1e3b3ae08871aa00e072922735bfd03a\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#531918\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\
 "en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
+"{\"amazon\":{\"anchor\":\"531918\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"c
 ontenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b3ae08871aa00e072ec7f008f23d8\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#531918\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"threadstarter\":1,\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n
                 Hi,<br />\\nI have a apache webserver running infront of tomcat...<br />\\nI see millions of requests in my apache access log..<br />\\nFrom some IP's there are more than 1 lakhs of requests daily...<br />\\n<br />\\nI am not a security expert...But after googling <br />\\n<br />\\nI have installed mod_security and mod_evasive...<br />\\n<br />\\nPlease help me if this is the only thing I can do...<br />\\n<br />\\nOr is there anything else provided by Amazon...<br />\\n<br />\\nI though of using iptables to block IPs...But the Ips are changing on a daily basis...<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Mon, 24 Mar 2014 23:43:00 +0000\",\"id\":\"1e3b3ae08871aa00e072ec7f008f23d8\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#531918\",\"received_at\":4743642501859712487,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"
 language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
+"{\"amazon\":{\"anchor\":\"532139\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b45ca802ea600e07231b5509f040a\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=148679&tstart=100#532139\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"id\":\"1e3b45ca802ea600e07231b5509f040a\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532139\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"languag
 e\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-6},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
+"{\"amazon\":{\"anchor\":\"532139\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Wed, 26 Mar 2014 03:04:38 +0000\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b45ca802ea600e0724270bd005ab0\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=148679&tstart=25#532139\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Can anyone help me with this...<br />\\n<br />\\nIt looks like it's type of syn flood attack...<br />\\n<br />\\nthanks...\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 20:33:00 +0000\",\"id\":\"1e3b45ca802ea600e0724270bd005ab0\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=25#532139\",\"received_at\":4743641321202510935,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache is under DOS attack
 \",\"type\":\"amazon\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":-6},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
+"{\"amazon\":{\"anchor\":\"532169\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Will somepne from amazon respond to this...???<br />\\n<br />\\nDo they have something at their end to prevent these half opened http requests...???\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Wed, 26 Mar 2014 01:13:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b483c5977a600e072fa2485801888\",\"language\":\"English\",\"link\":\"https://forums.aws.
 amazon.com/thread.jspa?threadID=148679&tstart=100#532169\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=292012\",\"name\":\"kunal_agarwal\",\"username\":\"kunal_agarwal\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Will somepne from amazon respond to this...???<br />\\n<br />\\nDo they have something at their end to prevent these half opened http requests...???\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 01:13:00 +0000\",\"id\":\"1e3b483c5977a600e072fa2485801888\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532169\",\"received_at\":4743642502084954161,\"schema\":{\"version\":3},\"su
 btype\":\"post\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
+"{\"amazon\":{\"anchor\":\"532280\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293234\",\"name\":\"hardeepb\",\"username\":\"hardeepb\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hey,<br />\\n<br />\\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br />\\nQuick search provide couple of useful link to being.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\\\">http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\\\">http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount</a><br />\\n<br />\\
 nOR<br />\\n<br />\\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\\\">https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\\\">https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf</a><br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:48:38 +0000\",\"created_at\":\"Wed, 26 Mar 2014 04:38:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"id\":\"1e3b4a068f68a400e072b065ee85dcba\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.
 com/thread.jspa?threadID=148679&tstart=100#532280\",\"links\":[\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\",\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\",\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\",\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100\",\"threadid\":\"148679\",\"title\":\"Apache is under DOS attack\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293234\",\"name\":\"hardeepb\",\"username\":\"hardeepb\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hey,<br />\\n<br />\\nSince you talked about IP tables, one of the way you can limit the connection is by using 'hitcount' option in IP Tables.<br />\\nQuick search provide couple
  of useful link to being.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\\\">http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\\\">http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount</a><br />\\n<br />\\nOR<br />\\n<br />\\nYou can search in marketplace for AMIs, however this might require topology change, for example check links below.<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\\\">https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5</a><br />\\n<a class=\\\"jive-link-external\\\" href=\\\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\\\">https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf</a><br />\\n<br />\\nThanks\\n                </div>\",
 \"contenttype\":\"html\",\"created_at\":\"Wed, 26 Mar 2014 04:38:00 +0000\",\"id\":\"1e3b4a068f68a400e072b065ee85dcba\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148679&tstart=100#532280\",\"received_at\":4743642502085381141,\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache is under DOS attack\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200,200,200,200],\"created_at\":[\"Sat, 29 Mar 2014 15:17:47 +0000\",\"Sat, 29 Mar 2014 15:17:47 +0000\",\"Sat, 29 Mar 2014 15:17:48 +0000\",\"Sat, 29 Mar 2014 15:17:48 +0000\"],\"hops\":[[\"http://sysextra.blogspot.com/2010/11/using-mighty-iptables-to-prevent-https.html\"],[],[],[]],\"meta\":{\"charset\":[\"UTF-8\",\"UTF-8\",\"UTF-8\",\"UTF-8\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"\",\"(1 reply) Hello, up to CentOS 5.3 it was possible, to control new ip connections by \\\"recent\\\", \
 \\"seconds\\\" and \\\"hitcount\\\" -A INPUT -m state --state NEW -m recent --set -p tcp --dport 80 -A INPUT -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -p tcp --dport 80 -j LOG --log-prefix \\\"FW DROP IP Flood: \\\" -A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -m recent --update --seconds 60 --hitcount 1000 -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT so that -\",\"aiProtect identifies and mitigates DDoS attacks, while tracking the source and method of the attack. aiProtect works like a reverse proxy server and is placed in between your origin server and the web.\",\"Complementing traditional network security solutions, DenyAll's Protect family of Web Application Firewalls (WAF) and Web Services Firewalls (WSF) rely on a HTTP/HTTPS reverse proxy architecture and provide\"],\"keywords\":[[],[],[\"aiProtect Denial of Service Protection\",\"Security\",\"Network Infrastructure\",\"DOS DDOS Firewall SYN flood Free Trial\",\
 "Monitoring\",\"Server Software\",\"AWS\",\"EC2\"],[\"DenyAll Protect - Web Application & Service Firewalls\",\"Security\",\"Network Infrastructure\",\"security waf reverse proxy\",\"Monitoring\",\"Server Software\",\"AWS\",\"EC2\"]],\"lang\":[\"unknown\",\"unknown\",\"unknown\",\"unknown\"]},\"normalized_url\":[\"http://sysextra.blogspot.co.uk/2010/11/using-mighty-iptables-to-prevent-https.html\",\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\",\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\",\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\"],\"retweet_count\":[0,0,0,0],\"title\":[\"The Sysadmin Extravaganza: Using the Mighty IPTables to Prevent an HTTP(s) DoS Attack\",\"[CentOS] iptables: hitcount - Grokbase\",\"aiProtect Denial of Service Protection on AWS Marketplace\",\"DenyAll Protect - Web Application & Service Firewalls on AWS Marketplace\"],\"url\":[\"http://sysextra.blogspot.co.uk/2010/11/using-mighty-iptables-to-prevent-https.h
 tml\",\"http://grokbase.com/t/centos/centos/126b2fb8j7/iptables-hitcount\",\"https://aws.amazon.com/marketplace/pp/B007OOKAZ0?sr=0-5\",\"https://aws.amazon.com/marketplace/pp/B00FGCUM7S/ref=vdr_rf\"]},\"salience\":{\"content\":{\"sentiment\":2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":-6,\"confident\":1,\"label\":\"Company\",\"evidence\":7,\"type\":\"Company\",\"about\":1}],\"sentiment\":-6,\"topics\":[{\"name\":\"War\",\"score\":0.53363662958145,\"additional\":\"Apache is under DOS attack\",\"hits\":0}]}}}"
+"{\"amazon\":{\"anchor\":\"532553\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=157781\",\"name\":\"ashokkumarkashnia\",\"username\":\"ashokkumarkashnia\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Team,<br />\\n<br />\\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br />\\n<br />\\nI want to use s3 bucket for it.<br />\\n<br />\\nPlease help<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Sat, 29 Mar 2014 10:35:16 +0000\",\"created_at\":\"Thu, 27 Mar 2014 03:54:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a32\",\"forumname\":\"Category: Amazon Web Services Amazon Elastic Compute Cloud\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=30\",\"
 id\":\"1e3b5636dd03ac00e0720ed85ed96cc0\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75#532553\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75\",\"threadid\":\"148890\",\"threadstarter\":1,\"title\":\"Centerlized apache logs manage\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=157781\",\"name\":\"ashokkumarkashnia\",\"username\":\"ashokkumarkashnia\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Team,<br />\\n<br />\\nWe are using auto scaling with multiple sever, Please let us know how can we manage apache logs in centralized. <br />\\n<br />\\nI want to use s3 bucket for it.<br />\\n<br />\\nPlease help<br />\\n<br />\\nThanks\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014
  03:54:00 +0000\",\"id\":\"1e3b5636dd03ac00e0720ed85ed96cc0\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148890&tstart=75#532553\",\"received_at\":4743642503378266122,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Centerlized apache logs manage\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
+"{\"amazon\":{\"anchor\":\"532637\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=151961\",\"name\":\"soundstrue-phil\",\"username\":\"soundstrue-phil\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer/cluster)<br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/shop/\\\">http://example.com/shop/</a><br />\\n  ProxyPass /shop <a class=\\\"jive-link-external\\\" href=\\\"http://app01.example-util.com\\\">http://app01.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/blog/\\\">http://example.co
 m/blog/</a><br />\\n  ProxyPass /blog <a class=\\\"jive-link-external\\\" href=\\\"http://app02.example-util.com\\\">http://app02.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/store/\\\">http://example.com/store/</a><br />\\n   ProxyPass /store  storeapp-env.elasticbeanstalk.com<br />\\n<br />\\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br />\\n<br />\\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Thu, 27 Mar 2014 
 13:54:12 +0000\",\"created_at\":\"Thu, 27 Mar 2014 10:10:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b597f49f0ac00e072700816848226\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0#532637\",\"links\":[\"http://example.com/shop/\",\"http://app01.example-util.com\",\"http://example.com/blog/\",\"http://app02.example-util.com\",\"http://example.com/store/\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0\",\"threadid\":\"148928\",\"threadstarter\":1,\"title\":\"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?\",\"topics\":\"Computers\",\"type\":\"thread\"},\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=151961\",\"name\":\"s
 oundstrue-phil\",\"username\":\"soundstrue-phil\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Greetings to all! I am curious if anyone is currently running their elastic beanstalk environment behind an apache reverse proxy? Currently we have been doing our proxy config as follows (directly specify a host or if needed we setup a balancer/cluster)<br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/shop/\\\">http://example.com/shop/</a><br />\\n  ProxyPass /shop <a class=\\\"jive-link-external\\\" href=\\\"http://app01.example-util.com\\\">http://app01.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"http://example.com/blog/\\\">http://example.com/blog/</a><br />\\n  ProxyPass /blog <a class=\\\"jive-link-external\\\" href=\\\"http://app02.example-util.com\\\">http://app02.example-util.com</a><br />\\n<br />\\n<a class=\\\"jive-link-external\\\" href=\\\"htt
 p://example.com/store/\\\">http://example.com/store/</a><br />\\n   ProxyPass /store  storeapp-env.elasticbeanstalk.com<br />\\n<br />\\nHowever, I end up getting a 502 error and I am guessing it is because instead of specifying a single apache host I am entering the public dns name of the elastic beanstalk load balancer. I am talking with Amazon support but it would seem that I probably need to set this up using a less automated and more complicated configuration (perhaps elasticbeanstalk will not work this way -- or perhaps I need to set it up inside of a VPC). <br />\\n<br />\\nI imagine I am not the only one doing this so any assistance would be helpful. Thanks!\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014 10:10:00 +0000\",\"id\":\"1e3b597f49f0ac00e072700816848226\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=148928&tstart=0#532637\",\"received_at\":4743641818705321945,\"schema\":{\"version\":3},\"subtype\":\"thread\",\"
 title\":\"Running an Elastic Beanstalk container behind an Apache Reverse Proxy?\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[404,500,404,500,404],\"created_at\":[\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\",\"Thu, 27 Mar 2014 18:02:20 +0000\"],\"hops\":[[\"http://example.com/shop/\"],[\"http://app01.example-util.com\"],[\"http://example.com/blog/\"],[\"http://app02.example-util.com\"],[\"http://example.com/store/\"]],\"normalized_url\":[null,null,null,null,null],\"retweet_count\":[0,0,0,0,0],\"title\":[\"null\",\"null\",\"null\",\"null\",\"null\"],\"url\":[\"http://example.com/shop/\",\"http://app01.example-util.com\",\"http://example.com/blog/\",\"http://app02.example-util.com\",\"http://example.com/store/\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Amazon.com\",\"sentiment\":-1,\"confident\":1,\"labe
 l\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":1,\"themes\":[\"elastic beanstalk load balancer\",\"single apache host\",\"dns name\",\"complicated configuration\",\"perhaps elasticbeanstalk\"]},{\"name\":\"VPC\",\"sentiment\":-1,\"confident\":1,\"label\":\"Company\",\"evidence\":5,\"type\":\"Company\",\"about\":1,\"themes\":[\"elastic beanstalk load balancer\",\"single apache host\",\"dns name\",\"complicated configuration\",\"perhaps elasticbeanstalk\"]}],\"sentiment\":0},\"title\":{\"sentiment\":0}}}"
+"{\"amazon\":{\"anchor\":\"533193\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/el
 asticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it h
 as to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font color=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"countrycode\":\"
 US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533193\",\"links\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"],\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"threadstarter\":1,\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"thread\"},\"interaction\":{\"author\":
 {\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"<div style=\\\"line-height:1.5; padding-left: 25px;padding-right: 10px;\\\">\\n                Hi there,<br />\\n<br />\\nI have some troubles applying the Apache SSLRequireSSL directive..<br />\\nI'm running a single instance PHP 5.5 environment.<br />\\n<br />\\nI have set up SSL as described here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html</a><br />\\n<br />\\nI used the ssl.conf snippet as given for PHP:<a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html</a><br />\\n<br />\\n(Btw: is this mere a (simple) example? Perhaps this could be
  improved upon? (e.g. I miss some directives like SSLCipherSuite and SSLSessionCache?))<br />\\n<br />\\nI want to protect my app/environment with HTTP authentication, and want to force all traffic over HTTPS, <b>including</b> the HTTP authentication.<br />\\n<br />\\nA redirect won't work, as people will still be asked their credentials over HTTP, thus their login info will be sent in the clear the first time in that case... (as a redirect will kick in afterwards.)<br />\\n<br />\\nThe solution seems to be to use SSLRequireSSL, and, if you want to auto-redirect HTTP, catch the 403 Forbidden generated.<br />\\n(SSLRequireSSL takes precedence over Auth.)<br />\\n<br />\\nThe problem is, opposed to what to expect; I also get a 403 Forbidden on the <a class=\\\"jive-link-external\\\" href=\\\"https://\\\">https://</a> domain.<br />\\n<br />\\nI guess it has to do with the proxy setup?:<br />\\n<pre class=\\\"jive-pre\\\"><code class=\\\"jive-code jive-java\\\">ProxyPass / http:<font co
 lor=\\\"darkgreen\\\">//localhost:80/ retry=0</font>\\nProxyPassReverse / http:<font color=\\\"darkgreen\\\">//localhost:80/</font>\\nProxyPreserveHost on\\n</code></pre><br />\\nIs there anyway I can get this to work?<br />\\n<br />\\nThanks!<br />\\n<br />\\nps: I tried both the 2013.09 AMI, and the 2014.02 AMI, where the latter, as stated here: <a class=\\\"jive-link-external\\\" href=\\\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\\\">http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP</a> should have Apache 2.2 installed/configured?<br />\\nThis is <b>not</b> the case however; I found the same Apache version installed as on the 2013.09 AMI (2.4.6 that is)?<br />\\n<br />\\n\\n                </div>\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 02:56:00 +0000\",\"id\":\"1e3b7b6d2cfaa000e072b2fe78019acc\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?thr
 eadID=149131&tstart=0#533193\",\"schema\":{\"version\":3},\"subtype\":\"thread\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"links\":{\"code\":[200,200,200],\"created_at\":[\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:11 +0000\",\"Tue, 01 Apr 2014 07:44:12 +0000\"],\"hops\":[[],[],[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html#concepts.platforms.PHP\"]],\"meta\":{\"charset\":[\"CP1252\",\"CP1252\",\"CP1252\"],\"content_type\":[\"text/html\",\"text/html\",\"text/html\"],\"description\":[\"Configure SSL for single-instance environments that have applications running on Apache Tomcat, Python, Node.js, or PHP 5.3 and PHP 5.4.\",\"Configure SSL for single-instance environments that have applications running on PHP 5.3, PHP 5.4, and PHP 5.5.\",\"AWS Elastic Beanstalk supports applications developed in Java, PHP, .NET, Node.js, Python, a
 nd Ruby, each with their own container types. Container types can be described according to the container name (also known as the solution stack name or predefined configuration), the AMI (or operating system), programming language, Web Server, and Reverse Proxy.\"],\"lang\":[\"unknown\",\"unknown\",\"unknown\"]},\"normalized_url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"],\"retweet_count\":[0,0,0],\"title\":[\"Configuring SSL for Single-Instance Environments - AWS Elastic Beanstalk\",\"SSL on Single-Instances of PHP 5.3, PHP 5.4, and PHP 5.5 - AWS Elastic Beanstalk\",\"Supported Platforms - AWS Elastic Beanstalk\"],\"url\":[\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSL.SingleInstance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/SSLPHP.SingleInst
 ance.html\",\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html\"]},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":1,\"type\":\"Company\",\"about\":0}],\"sentiment\":-2},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"
+"{\"amazon\":{\"anchor\":\"533271\",\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"boardname\":\"AWS Developer Forums: Discussion Forums\",\"categories\":\"Software\",\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only grants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"countrycode\":\"US\",\"crawled\":\"Tue, 01 Apr 2014 02:56:53 +0000\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"domain\":\"aws.amazon.com\",\"forumid\":\"4fb3198a5d\",\"forumname\":\"
 AWS Elastic Beanstalk (Beta)\",\"forumurl\":\"https://forums.aws.amazon.com/forum.jspa?forumID=86\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"language\":\"English\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"siteid\":\"4fb31966d4\",\"thread\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0\",\"threadid\":\"149131\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"topics\":\"Computers\",\"type\":\"post\"},\"interaction\":{\"author\":{\"link\":\"https://forums.aws.amazon.com/profile.jspa?userID=293511\",\"name\":\"zwowski\",\"username\":\"zwowski\"},\"content\":\"Well, got a solution for what I wanted to accomplish, and it can all be done in a .htaccess:\\n\\nAuthUserFile ...\\n...\\nRequire valid-user\\n \\nOrder deny,allow\\nDeny from all\\nAllow from 127.0.0.1\\n\\n\\nPerhaps I could've realized sooner something like this would work, but this stuff is not my prime field of expertise\\nI figure this only g
 rants the SSL proxy access to the default port 80 HTTP domain.\\n\\nI do keep this question open, since I'm still wondering about the SSLRequireSSL directive.\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 15:11:00 +0000\",\"id\":\"1e3b81d80759aa00e072ad336a2bab92\",\"link\":\"https://forums.aws.amazon.com/thread.jspa?threadID=149131&tstart=0#533271\",\"schema\":{\"version\":3},\"subtype\":\"post\",\"title\":\"Apache: SSLRequireSSL (single instance)\",\"type\":\"amazon\"},\"language\":{\"confidence\":99,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":1},\"title\":{\"entities\":[{\"name\":\"Apache\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1,\"themes\":[\"single instance\"]}],\"sentiment\":0}}}"


[11/45] Fixed bugs in datasift provider and improved datasift conversion to activity objects

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/5516471e/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json b/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json
deleted file mode 100755
index 478f5fe..0000000
--- a/streams-contrib/streams-provider-datasift/src/test/resources/part-r-big.json
+++ /dev/null
@@ -1,6998 +0,0 @@
-{"board":{"anchor":"post8881971","author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"boardname":"Tech Support Guy - Free help for Windows 7, Vista, XP, and more!","categories":"Software","content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\"
  alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisible(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","countrycode":"US","crawled":"Sun, 23 Mar 2014 09:18:13 +0000","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","domain":"www.techguy.org","forumid":"469bbbf115a","forumname":"All Other Software","forumurl":"http:\/\/forums.techguy.org\/18-all-other-software\/","gmt":"-5","id":"1e3b20559a7daa00e072105aaa3de61e","language":"English","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","siteid":"3cbc7f773","thread":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html","threadid":"1122437","title":"Apache Open Office","topics":"Computers","type":"post
 "},"interaction":{"author":{"avatar":"http:\/\/www.gstatic.com\/psa\/static\/1.gif","link":"http:\/\/forums.techguy.org\/members\/496500-phantom010.html","location":"Cyberspace","name":"Phantom010","registered":"Sun, 01 Mar 2009 00:00:00 +0000","username":"Phantom010"},"content":"<div class=\"KonaBody\"><div style=\"margin:20px; margin-top:5px; \"> <div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:<\/div> <table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"alt2\" style=\"border:1px inset\"> <div>\n\t\t\t\t\tOriginally Posted by <strong>donsor<\/strong> <a href=\"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881771\" rel=\"nofollow\"><img class=\"inlineimg sprite-viewpost\" pagespeed_lazy_src=\"http:\/\/attach.tsgstatic.com\/tsg\/styles\/common\/blank.png\" width=\"12\" height=\"12\" alt=\"View Post\" src=\"http:\/\/www.gstatic.com\/psa\/static\/1.gif\" onload=\"pagespeed.lazyLoadImages.loadIfVisibl
 e(this);\"\/><\/a> <\/div> <div style=\"font-style:italic\">I tried downloading Libreoffice but encountered some problem. No big deal I'll find something else.<\/div> <\/td> <\/tr> <\/table> <\/div>What kind of problem?<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 16:03:00 -0500","id":"1e3b20559a7daa00e072105aaa3de61e","link":"http:\/\/forums.techguy.org\/all-other-software\/1122437-apache-open-office.html#post8881971","schema":{"version":3},"subtype":"post","title":"Apache Open Office","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-4},"title":{"sentiment":0}}}
-{"board":{"anchor":"post11387078","author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"boardname":"ZWAME F\u00F3rum","categories":"Hardware","content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APACHE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P
 170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIn
 tel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nBluetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","countrycode":"PT","crawled":"Sun, 23 Mar 2014 19:41:39 +0000","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","domain":"www.zwame.pt","forumid":"4e9be0585b","forumname":"Por
 t\u00E1teis","forumurl":"http:\/\/forum.zwame.pt\/forumdisplay.php?f=136","gmt":"+1","id":"1e3b20677c20aa00e072a04d81597bd0","language":"Portuguese","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","siteid":"4e9bdf6356","thread":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2","threadid":"852065","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","topics":"Computers","type":"post"},"interaction":{"author":{"link":"http:\/\/forum.zwame.pt\/member.php?u=74541","name":"kevinmichael","registered":"Thu, 27 Sep 2007 00:00:00 +0000","username":"kevinmichael"},"content":"<div class=\"postrow\">\n\t\t\t\t\n\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<div id=\"post_message_11387078\">\n\t\t\t\t\t\t<blockquote class=\"postcontent restore \">\n\t\t\t\t\t\t\tEstou com um dilema.<br \/>\n<br \/>\nAcham que vala a pena comprar um pc ( clevo p170sm) por ~1300\u0080 com caracter\u00EDsticas semelhantes ao MSI GE70 2PE APAC
 HE PRO (~1150\u0080) exceto a gr\u00E1fica que \u00E9 a r9 (4gb) enquanto que a do msi \u00E9 a gtx860 (2Gb). Acham que compensa? <br \/>\n<br \/>\nAqui ficam as caracter\u00EDsticas de cada um<br \/>\n<br \/>\n<br \/>\n<div class=\"cms_table\"><table class=\"cms_table\"><tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\"><b><i>P170SM<br \/>\n<br \/>\n<\/i><\/b>Processador:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel i7 4700MQ<br \/>\n<br \/>\nGr\u00E1fica:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">AMD Radeon R9 M290X 4GB DDR5<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Mem\u00F3ria RAM:<br \/>\n8GB Vengence<br \/>\n<br \/>\nDisco hdd:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Scorpio Black 750 GB<br \/>\n<br \/>\nLeitor \u00F3tico:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=
 \"cms_table_td\">SAMSUNG DVD<br \/>\n<br \/>\nWireless:<\/TD>\n<\/tr>\n<tr valign=\"top\" class=\"cms_table_tr\"><TD class=\"cms_table_td\">Intel N-2230 300 Mbps<\/TD>\n<\/tr>\n<\/table><\/div>\n<br \/>\n<br \/>\n<br \/>\n<b><i>MSI<\/i><\/b><br \/>\n<br \/>\nProcessador:<br \/>\nIntel\u00AE Core\u0099 i7 4700MQ<br \/>\n<br \/>\nChipset<br \/>\nIntel\u00AE HM87<br \/>\n<br \/>\nMem\u00F3ria<br \/>\n8GB DDR3L 1600 MHz, (8Gb*1)<br \/>\n<br \/>\nEcr\u00E3<br \/>\n17\" HD (1920X1080) , Anti-glare<br \/>\n<br \/>\nPlaca gr\u00E1fica <br \/>\nNVIDIA Geforce GTX 860M VRAM GDDR5 2GB<br \/>\n<br \/>\nHDD (GB)<br \/>\n1x 1 TB 7200rpm HDD<br \/>\n<br \/>\nLeitor \/ Gravador DVDs<br \/>\nDVD Super Multi<br \/>\n<br \/>\nAudio<br \/>\nSound by Dynaudio, 2.1 channel 4 speakers + woofer<br \/>\n<br \/>\nWebcam<br \/>\nHD type (30fps@720p)<br \/>\n<br \/>\nLeitor cart\u00F5es<br \/>\nSD (XC\/HC)<br \/>\n<br \/>\nLAN<br \/>\nKiller\u0099 E2200<br \/>\n<br \/>\nWireless LAN<br \/>\n802.11 ac<br \/>\nB
 luetooth 4.0\n\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"cleardiv\"><\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:11:00 +0100","id":"1e3b20677c20aa00e072a04d81597bd0","link":"http:\/\/forum.zwame.pt\/showthread.php?t=852065&page=2#post11387078","received_at":4743640457867795261,"schema":{"version":3},"subtype":"post","title":"Port\u00E1til - MSI GE60 2PE APACHE PRO","type":"board"},"language":{"confidence":66,"tag":"es","tag_extended":"es"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]},{"name":"GE70 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":1,"type":"Place","about":1,"themes":["com caracter\u00EDsticas"]}],"sentiment":0},"title":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"city","evidence":4,"type":"Place","about":1},{"name":"GE6
 0 2PE","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
-{"blog":{"author":{"name":"Stileex"},"blog":{"link":"http:\/\/laptop.toprealtime.net\/","title":"Laptop News"},"blogid":"71107731","content":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","domain":"laptop.toprealtime.net","guid":"8921b89d1faad3d22a6e2a7ed55765e1","id":"1e3b209dfc61af80e072ce1ee22bb088","lang":"en","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","parseddate":"Sun, 23 Mar 2014 00:21:59 +0000","postid":"ed8205a9-2812-4fa6-a730-692b75adc9d7","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"post"},"interaction":{"author":{"name":"Stileex"},"content":"If you are a
  gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning\u00A0\u2026","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:35:23 +0000","id":"1e3b209dfc61af80e072ce1ee22bb088","link":"http:\/\/laptop.toprealtime.net\/2014\/msi-ge60-apache-pro-003-15-6%e2%80%b3-excellent-gaming-laptop-pressandupdate\/","received_at":4743640105474628098,"schema":{"version":3},"subtype":"post","title":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","type":"blog"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"MSI","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["fast performance","great graphics","audio output","gaming freak","gaming laptop","lightweight laptop","stunning \u2026"]}],
 "sentiment":2,"topics":[{"name":"Video Games","score":0.64548820257187,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0},{"name":"Hardware","score":0.45651730895042,"additional":"If you are a gaming freak and play video games even when you are on the move, you need a gaming laptop that gives a smooth and fast performance and has great graphics and audio output. MSI has come up with a small and lightweight laptop with stunning \u2026","hits":0}]},"title":{"sentiment":6,"topics":[{"name":"Video Games","score":0.62834107875824,"additional":"MSI GE60 Apache Pro 003 15.6\u2033: Excellent Gaming Laptop \u2013 PressAndUpdate","hits":0}]}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"created_at":"Sat, 22 Mar 2014 21:38:22 +0000","description":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out ne
 xt week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","id":"100003271543139_537596739692706","link":"http:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323","name":"Mescalero Apache Head Start","picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-ash2\/t1.0-1\/c0.0.100.100\/p100x100\/379713_183249568536164_895695882_a.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"content":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will
  be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out next week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","created_at":"Sat, 22 Mar 2014 21:38:22 +0000","id":"1e3b20a4a775ab00e066d203c4340184","link":"http:\/\/www.facebook.com\/100003271543139_537596739692706","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Mescalero Apache Head Start","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:39:20 +0000"],"hops":[["http:\/\/www.facebook.com\/mesca
 leroapacheheadstart\/posts\/219371308257323"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"],"retweet_count":[0],"title":["UPDATE: Since the \"Mescalero Blessing... - Mescalero Apache Head Start | Facebook"],"url":["https:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"]},"salience":{"content":{"entities":[{"name":"April 1, 2014","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0},{"name":"Mescalero South Hall","sentiment":0,"confident":1,"label":"building","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"Bowling Alley","sentiment":0,"confident":1,"label":"road","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"\"Mescalero Blessing Run\"","sentiment":0,"confident":1,"labe
 l":"Quote","evidence":1,"type":"Quote","about":0}],"sentiment":2},"title":{"sentiment":0}}}
-{"demographic":{"gender":"unisex"},"facebook":{"application":"Photos","author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"caption":"First weekend of Spring! Time to get outside and enjoy the WMAT rez :)","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","icon":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/v2\/yD\/r\/aS8ecmYRys0.gif","id":"100002126551451_605465259534354","link":"http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1","message":"C'mon over...\n","name":"Photos of White Mountain Apache Tribe Game & Fish","og":{"by":"Michael Frank"},"picture":"http:\/\/photos-e.ak.fbcdn.net\/hphotos-ak-ash3\/t1.0-0\/1920219_10101477649345853_670694643_s.jpg","source":"Photos (2305272732)","story":"Sharon Gloshay shared a photo.","story_tags":[[{"name":"Sharon Gloshay","length":14,"type":"user","id":"100002126
 551451","offset":0}]],"type":"photo"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"content":"C'mon over...\n","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","id":"1e3b20ad4272a880e06678b4f07fd236","link":"http:\/\/www.facebook.com\/100002126551451_605465259534354","schema":{"version":3},"source":"Photos (2305272732)","subtype":"photo","title":"Photos of White Mountain Apache Tribe Game & Fish","type":"facebook"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:50 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["First weekend of Spring! Time to get outside and enjoy the WMAT rez :)"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?fbid=101014776493
 45853&set=o.320779744643135&type=1"],"retweet_count":[0],"title":["Michael Frank - Photos of White Mountain Apache Tribe Game... | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"caption":"minneapolis.en.craigslist.org","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","description":"[ post ][ account ]0 favoritesCL >minneapolis >carv\/sher\/wri >all for sale \/ wanted >rvs - by owner\u2014 \u2014 \u2014\u2709\u260Ereplyxprohibited[?]Posted: 2014-02-17 12:30pm Apache Hardside Camper ~Wanted~ Looking for a Apache Hardside Pop-Up Camper Please let me know what you have available do NOT contact me with unsoli...","id":"201182856613333_689921864406094","link":"http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html","message":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","name":"Apache Hardside Camper ~Wanted~","source":"Facebook for Android (350685531728)",
 "to":{"ids":["201182856613333"],"names":["Apache Camper Preservation Society"]},"type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"content":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","id":"1e3b20adab5aa000e0661b0a9e430820","link":"http:\/\/www.facebook.com\/201182856613333_689921864406094","mention_ids":["201182856613333"],"mentions":["Apache Camper Preservation Society"],"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Apache Hardside Camper ~Wanted~","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:47 +0000"],"meta":{"charset":["CP1252"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url"
 :["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"],"retweet_count":[0],"title":["Apache Hardside Camper ~Wanted~"],"url":["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"]},"salience":{"content":{"sentiment":0,"topics":[{"name":"Advertising","score":0.47485229372978,"additional":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","hits":0}]},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"GrabInbox","author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"user"},"caption":"mcp.infusionsoft.com","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","description":"type Status report The requested resource is not available.","id":"100004948484234_257154551126159","link":"https:\/\/mcp.infusionsoft.com\/go\/2ndcha","message":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","name":"Apache Tomcat\/6.0.36 - Error report","source":"GrabInbox (135280156521587)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"use
 r"},"content":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","id":"1e3b20b3a13ba000e0668cdbdc72d878","link":"http:\/\/www.facebook.com\/100004948484234_257154551126159","received_at":4743640062960685023,"schema":{"version":3},"source":"GrabInbox (135280156521587)","subtype":"link","title":"Apache Tomcat\/6.0.36 - Error report","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404],"created_at":["Sat, 22 Mar 2014 21:46:07 +0000"],"hops":[["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-5}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPad","author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=100000632293926","name":"Xavier Tatum","type":"user"},"created_at":"Sat, 22 Mar 2014 21:46:28 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"100000632293926_733005476730522","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=1000006
 32293926","name":"Xavier Tatum","type":"user"},"content":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","created_at":"Sat, 22 Mar 2014 21:46:28 +0000","id":"1e3b20b6c251a200e066d8ce3663edc2","link":"http:\/\/www.facebook.com\/100000632293926_733005476730522","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","subtype":"video","title":"Mizai Performing Live @ Apache Cafe","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:25:38 +0000"],"hops":[["http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U&app=desktop"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent"],"keywords":[["Apache Cafe (Building)","Mizai","Performing","live","Atl","Exposure","Open","Mic","Pe
 rformance","Fan","myself","Stage","Microphone","DJ","Mizay","Streetz","Grindin","BAMA","Op..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg"}],"twitter":[{"player_width":"1280","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","player_height":"720","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Pe
 rforming Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/Pc5QXkarL0U"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=Pc5QXkarL0U"],"retweet_count":[0],"title":["Mizai Performing Live @ Apache Cafe - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U"]}}
-{"board":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"boardname":"Questions - Server Fault","categories":"Hardware","content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.ChannelSocket.pause(ChannelSocket.
 java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCaused by: java.net.UnknownHos
 tException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HTTP\/1.1 on http-8080\nMar 2
 2, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol start\nINFO: Starting Coyo
 te HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","countrycode":"US","crawled":"Mon, 24 Mar 2014 08:30:47 +0000","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","domain":"serverfault.com","forumid":"4c8963bd4","forumname":"Forum","forumurl":"http:\/\/serverfault.com\/questions?sort=newest","id":"1e3b20ba2fb2a800e072aadb0d45650a","language":"English","link":"http:\/\/serverfault.com\/q\/583910#","siteid":"4c8963bc2","thread":"http:\/\/serverfault.com\/q\/583910","threadid":"583910","threadstarter":1,"title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: 
 hostname: hostname: Name or service not known","topics":"Computers","type":"thread"},"interaction":{"author":{"avatar":"https:\/\/www.gravatar.com\/avatar\/8d13c7f0f1727178ac8da5974836528c?s=64&d=identicon&r=PG&f=1","link":"http:\/\/serverfault.com\/users\/213684\/user3450728","name":"user3450728","username":"user3450728"},"content":"<p>I would appreciate if someone could help resolve this issue logged in catalina.out, when starting tomcat6 service configured for Apache Solr 4.x on Linux:<\/p>\n\n<pre><code>Mar 22, 2014 4:25:29 PM org.apache.coyote.http11.Http11Protocol pause\nINFO: Pausing Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:29 PM org.apache.catalina.connector.Connector pause\nSEVERE: Protocol handler pause failed\njava.net.UnknownHostException: hostname: hostname: Name or service not known\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1473)\n    at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)\n    at org.apache.jk.common.Channel
 Socket.pause(ChannelSocket.java:284)\n    at org.apache.jk.server.JkMain.pause(JkMain.java:725)\n    at org.apache.jk.server.JkCoyoteHandler.pause(JkCoyoteHandler.java:153)\n    at org.apache.catalina.connector.Connector.pause(Connector.java:1022)\n    at org.apache.catalina.core.StandardService.stop(StandardService.java:563)\n    at org.apache.catalina.core.StandardServer.stop(StandardServer.java:744)\n    at org.apache.catalina.startup.Catalina.stop(Catalina.java:643)\n    at org.apache.catalina.startup.Catalina.start(Catalina.java:618)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:606)\n    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)\n    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)\nCau
 sed by: java.net.UnknownHostException: hostname: Name or service not known\n    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)\n    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:901)\n    at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1293)\n    at java.net.InetAddress.getLocalHost(InetAddress.java:1469)\n    ... 15 more\n\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.StandardService stop\nINFO: Stopping service Catalina\nMar 22, 2014 4:25:30 PM org.apache.coyote.http11.Http11Protocol destroy\nINFO: Stopping Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:30 PM org.apache.catalina.core.AprLifecycleListener init\nINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: \/usr\/java\/packages\/lib\/amd64:\/usr\/lib64:\/lib64:\/lib:\/usr\/lib\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol init\nINFO: Initializing Coyote HT
 TP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina load\nINFO: Initialization processed in 309 ms\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardService start\nINFO: Starting service Catalina\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardEngine start\nINFO: Starting Servlet Engine: Apache Tomcat\/6.0.24\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nINFO: Deploying configuration descriptor solr.xml\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.HostConfig deployDescriptor\nWARNING: A docBase \/usr\/share\/tomcat6\/webapps\/solr.war inside the host appBase has been specified, and will be ignored\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Error filterStart\nMar 22, 2014 4:25:31 PM org.apache.catalina.core.StandardContext start\nSEVERE: Context [\/solr] startup failed due to previous errors\nMar 22, 2014 4:25:31 PM org.apache.coyote.http11.Http11Protocol
  start\nINFO: Starting Coyote HTTP\/1.1 on http-8080\nMar 22, 2014 4:25:31 PM org.apache.jk.common.ChannelSocket init\nINFO: JK: ajp13 listening on \/0.0.0.0:8009\nMar 22, 2014 4:25:31 PM org.apache.jk.server.JkMain start\nINFO: Jk running ID=0 time=0\/11  config=null\nMar 22, 2014 4:25:31 PM org.apache.catalina.startup.Catalina start\nINFO: Server startup in 340 ms\n<\/code><\/pre>\n\n<p>I'm running this configuration locally on the server (localhost).<\/p>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:48:00 +0000","id":"1e3b20ba2fb2a800e072aadb0d45650a","link":"http:\/\/serverfault.com\/q\/583910#","received_at":4743640653856312918,"schema":{"version":3},"subtype":"thread","title":"Error starting Apache Solr 4.x on TomCat 6.x: java.net.UnknownHostException: hostname: hostname: Name or service not known","type":"board"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Mar 22, 2014","sentiment":-5,"confident":1,"label"
 :"Date","evidence":6,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","tomcat6 service configured","pause INFO","optimal performance","production environments"]},{"name":"INFO","sentiment":-7,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"8080 Mar 22","sentiment":-19,"confident":1,"label":"Date","evidence":7,"type":"Pattern","about":1,"themes":["previous errors","init INFO","ajp13 listening","pause INFO","optimal performance","production environments"]},{"name":"6.0.24 Mar 22","sentiment":-17,"confident":1,"label":"Date","evidence":3,"type":"Pattern","about":1,"themes":["optimal performance","production environments","previous errors","init INFO","ajp13 listening"]},{"name":"8009 Mar 22","sentiment":-7,"confident":1,"label":"Date","evidence":5,"type":"Pattern","about":0,"themes":["previous error
 s","init INFO","ajp13 listening"]}],"sentiment":-2},"title":{"sentiment":-5}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100002691827913_484469828319407","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","message":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture
 ":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"content":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","id":"1e3b20bc9b95ae80e066fe4bf1bfb094","link":"http:\/\/www.facebook.com\/100002691827913_484469828319407","received_at":4743640063974247393,"sche
 ma":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confi
 dent":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\/www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:49:42 +0000","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","id":"731196387_10152355066466388","link":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","name":"Sugarhill Gang Apache (Jump On It)","picture":"http:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l","source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","to":{"ids":["100000046087502"],"names":["Nathan Bluerock"]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\
 /www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"content":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","created_at":"Sat, 22 Mar 2014 21:49:42 +0000","id":"1e3b20bdfc71af00e066bcb6b8e3130c","link":"http:\/\/www.facebook.com\/731196387_10152355066466388","mention_ids":["100000046087502"],"mentions":["Nathan Bluerock"],"received_at":4743640064119570380,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Sugarhill Gang Apache (Jump On It)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 01:42:36 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watch
 ing!"],"keywords":[["Funky","Pop","Greatness","Awesome"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtub
 e.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/vQObWW06VAM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=vQObWW06VAM"],"retweet_count":[0],"title":["Sugarhill Gang Apache (Jump On It) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=vQObWW06VAM"]}}
-{"board":{"anchor":"117232","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":
 "html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04:35:09 +0000","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20c55cb8a600e0722dd61ff7876a","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn13165_530e826f22d7c.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/KrOnK89.html","name":"KrOnK89","username":"KrOnK89"},"content":"<div class=\"kmsgtext\">\n\
 t\tmuchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 21:53:00 +0000","id":"1e3b20c55cb8a600e0722dd61ff7876a","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117232","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"sa
 lience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.58399718999863,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Automotriz","score":0.57611888647079,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9
 n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.","hits":0},{"name":"Energ\u00EDa natural","score":0.4619414806366,"additional":"muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u
 00E9 comentando como me va con ella.","hits":0}]},"title":{"sentiment":0}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"newsok.com","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","id":"100000455275358_753304071361428","link":"http:\/\/ow.ly\/uKTg1","name":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAMLLC9jSlzmhOK&w=154&h=154&url=http%3A%2F%2Fcdn2.newsok.biz%2Fcache%2Fw620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link
 ":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","id":"1e3b20c87445a180e0665ce87651d4d0","link":"http:\/\/www.facebook.com\/100000455275358_753304071361428","schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:27 +0000"],"hops":[["http:\/\/ow.ly\/uKTg1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government."],"lang":["unknown"],"ope
 ngraph":[{"site_name":"NewsOK.com","type":"article","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","url":"http:\/\/newsok.com\/article\/3935671","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","image":"http:\/\/cdn2.newsok.biz\/cache\/w620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg"}]},"normalized_url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"],"retweet_count":[0],"title":["Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico | News OK"],"url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:08 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"388424624543961_652943931425361","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=
 ZrcVKWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","to":{"ids":["388424624543961"],"names":["Ret.Officers Living Or Willing To Move Outside The U.S."]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a mo
 ralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 Mar 2014 21:55:08 +0000","id":"1e3b20ca216ca600e066737903b59bf6","link":"http:\/\/www.facebook.com\/388424624543961_652943931425361","mention_ids":["388424624543961"],"mentions":["Ret.Officers Living Or Willing To Move Outside The U.S."],"received_at":4743640065503462529,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul 
 Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtub
 e"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:30 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"792873959_10152287778028960","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcV
 KWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 
 Mar 2014 21:55:30 +0000","id":"1e3b20caf33ba500e0669b6b2a096842","link":"http:\/\/www.facebook.com\/792873959_10152287778028960","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as th
 e officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog
 "}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
-{"demographic":{"gender":"unisex"},"facebook":{"application":"V\u00EDdeos","author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"created_at":"Sat, 22 Mar 2014 21:56:14 +0000","description":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","id":"100007024808424_1435534340024046","link":"http:\/\/www.facebook.com\/photo.php?v=301721056644466","name":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","og":{"dura\u00E7\u00E3o":"1:50"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-ash3\/t15.0-10\/1898357_301721366644435_301721056644466_21573_1925_t.jpg","source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","
 type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"content":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","created_at":"Sat, 22 Mar 2014 21:56:14 +0000","id":"1e3b20cc96d9a300e0662f3920bf5e56","link":"http:\/\/www.facebook.com\/100007024808424_1435534340024046","schema":{"version":3},"source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","subtype":"video","title":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","type":"facebook"},"language":{"confidence":98,"tag":"pt","tag_extended":"pt"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 15:04:52 +0000"],"hops":[["htt
 p:\/\/www.facebook.com\/photo.php?v=301721056644466"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. "],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=301721056644466"],"retweet_count":[0],"title":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O... - De POUCO UM TUDO. | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=301721056644466"]}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"indiancountrytodaymedianetwork.com","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","description":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","id":"100000455275358_753306681361167","link":"http:\/\/ow.ly\/uKToH","name":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQBfQuIg2QEiixtK&w=154&h=154&url=http%3A%2F%2Fd1jrw5jterzxwu.cloudfront.net%2Fsites%2Fdefault%2Ffiles%2Farticle_media%2Fapache-1886.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/10000045527
 5358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","id":"1e3b20d67f9fa400e066004f93ac9c70","link":"http:\/\/www.facebook.com\/100000455275358_753306681361167","received_at":4743640066903726306,"schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-2,"topics":[{"name":"War","score":0.54581296443939,"additional":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","hits":0}]},"title":{"sentime
 nt":-4}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPhone","author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"created_at":"Sat, 22 Mar 2014 22:01:17 +0000","description":"TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.\n\nTVS Motor Company Ltd (TVS Motor), member of the TVS grou...","id":"1297415516_10203309137071332","link":"http:\/\/www.facebook.com\/TVSApacheOfficial","message":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it'
 s more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sale
 s mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'9500965507\nPollachi","name":"TVS Apache","og":{"product\/service":"1,040,347 like this"},"picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-prn1\/t1.0-1\/1512540_649033688487904_1254327688_a.jpg","source":"Facebook for iPhone (6628568379)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"content":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it's more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the
  customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sales mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'95
 00965507\nPollachi","created_at":"Sat, 22 Mar 2014 22:01:17 +0000","id":"1e3b20d7e07ba480e066eaccfc9d6c40","link":"http:\/\/www.facebook.com\/1297415516_10203309137071332","received_at":4743640067019986960,"schema":{"version":3},"source":"Facebook for iPhone (6628568379)","subtype":"link","title":"TVS Apache","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 22:01:43 +0000"],"hops":[["http:\/\/www.facebook.com\/TVSApacheOfficial"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["TVS Apache. 1,040,347 likes \u00B7 8,629 talking about this. TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.TVS Motor Company Ltd (TVS Motor), member of the TVS group, is the largest company of the group in ter
 ms of size and turnover."],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/TVSApacheOfficial"],"retweet_count":[0],"title":["TVS Apache | Facebook"],"url":["https:\/\/www.facebook.com\/TVSApacheOfficial"]},"salience":{"content":{"entities":[{"name":"Coimbatore MTP road","sentiment":3,"confident":1,"label":"road","evidence":7,"type":"Place","about":1,"themes":["complete registration book","Next day evening","good dealer","customer care","urgent process","extra amount","road showroom","insurance papers","2nd company","quick delivery"]},{"name":"manager","sentiment":5,"confident":1,"label":"Job Title","evidence":7,"type":"Job Title","about":1,"themes":["reliable person manager","complete registration book","good dealer","customer care","2nd company","30pm bike","day evening","lotus sales"]}],"sentiment":3,"topics":[{"name":"Business","score":0.90492594242096,"additional":"I am in Coimbatore city 'pollachi ' It's 2nd company with complaint of commitment which was agree on ever
 ything was legally done but the RC book ? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ? Note:Lotus Tvs dealer in Coimbatore MTP road showroom Paid for urgent process extra amount of 495 (delivery of bike also paid )for register notary all paid and Next day evening receive the bike among the insurance papers only & register numbers by SMS !","hits":0}]},"title":{"sentiment":0}}}
-{"board":{"anchor":"117233","author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"boardname":"Categor\u00EDas - Moteros Colombia","categories":"Modern Street","content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"kmsgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les s
 eguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","countrycode":"CO","crawled":"Sun, 23 Mar 2014 04
 :35:10 +0000","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","domain":"www.moteroscolombia.com","forumid":"50f63fdc3d","forumname":"TVS","forumurl":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs.html","id":"1e3b20eb5c32ac00e072bf86636ba614","language":"Spanish","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","siteid":"50f63fd93a2","thread":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80","threadid":"112105-tvs-apache-rtr-beast-160180-2014","title":"TVS Apache RTR Beast 160\/180 (2014)","topics":"Motorcycle","type":"post"},"interaction":{"author":{"avatar":"http:\/\/www.moteroscolombia.com\/images\/comprofiler\/tn11438_53053e07eabfe.jpg","link":"http:\/\/www.moteroscolombia.com\/component\/comprofiler\/userprofile\/MORRIS333.html","name":"MORRIS333","username":"MORRIS333"},"content":"<div class=\"kmsgtext\">\n\t\t<b>KrOnK89 escribi\u00F3:<\/b>\n<div class=\"km
 sgtext-quote\">muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella.<\/div><i><br \/>\nGracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y q
 ue no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... nos cuentas como te fue.. Buen caminar amigo! por que veo que te quedas sin moto hasta que te la arreglen.<\/i>  <img src=\"\/components\/com_kunena\/template\/default\/images\/emoticons\/wink.png\" width=\"20\" height=\"20\" alt=\";)\" title=\";)\" class=\"bbcode_smiley\" \/>\t<\/div>","contenttype":"html","created_at":"Sat, 22 Mar 2014 22:10:00 +0000","id":"1e3b20eb5c32ac00e072bf86636ba614","link":"http:\/\/www.moteroscolombia.com\/foro\/22-tvs\/112105-tvs-apache-rtr-beast-160180-2014.html?start=80#117233","schema":{"version":3},"subtype":"post","title":"TVS Apache RTR Beast 160\/180 (2014)","type":"board"},"language":{"confidence":99,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":-3,"topics":[{"name":"Alimentos","score":0.54232031106949,"additional":"KrOnK89 
 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser u
 n da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Automotriz","score":0.52735489606857,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\
 u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ... por que veo que te quedas sin moto hasta que te la arreglen.","hits":0},{"name":"Ciencia","score":0.52646517753601,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema inf
 inito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0},{"name":"Inmobiliaria","score":0.49977034330368,"additional":"KrOnK89 escribi\u00F3: muchachos les cuento que hoy le senti un ruido muy extra\u00F1o a la moto en la parte delantera, es como si la pasta del carenaje pegara con algo, lo raro es q solo se siente cuando la moto calienta y dejo de acelerar, tambi\u00E9n note que el motor por los lados de la buj\u00EDa esta lleno de aceite, seg\u00FAn un amigo que es mec\u00E1nico automotriz es fuga de aceite por el empaque tapa v\
 u00E1lvulas, estoy muy aburrido con el taller al que he llevado la moto (motos tecnoline) voy a seguir el consejo de muchos y la llevare a PDA, hay les seguir\u00E9 comentando como me va con ella. Gracias por la informaci\u00F3n amigo KRONK lo del carenaje es tema infinito nadie a dado con el chiste de los sonidos en esa parte ya que por lo visto a cada uno le sale un sonido en diferente parte jejejejejejeje hay que buscar y darse a la tarea de algo definitivo... con respecto a lo del aceite que tiene fuga llevala urgente a otro taller ya que eso no es normal y que no vaya a ser un da\u00F1o peor, pero igual no te preocupes que si esta en garant\u00EDa te lo tienen que solucionar, lo \u00FAnico malo es quedarse sin moto por esos malos mec\u00E1nicos y mal CST ...","hits":0}]},"title":{"sentiment":0}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100004773398251_275283519307426","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Facebook for Android (35068
 5531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"content":"Photos of the Apache camp in Tularosa Canyon, New Mexico","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","id":"1e3b21017d06a100e066a7ebf76f1348","link":"http:\/\/www.facebook.com\/100004773398251_275283519307426","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unk
 nown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1},{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
-{"board":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"boardname":"\u767E\u5EA6\u77E5\u9053 - \u5168\u7403\u6700\u5927\u4E2D\u6587\u4E92\u52A8\u95EE\u7B54\u5E73\u53F0","categories":"General Talk","content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=\"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","conten
 ttype":"html","countrycode":"CN","crawled":"Sun, 23 Mar 2014 09:26:43 +0000","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","domain":"zhidao.baidu.com","forumid":"52c374722","forumname":"\u670D\u52A1\u5668\u8F6F\u4EF6","forumurl":"http:\/\/zhidao.baidu.com\/browse\/1245","gmt":"-8","id":"1e3b21086adbaa00e0726da0291633ce","language":"Chinese - Simplified","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","siteid":"52bca2440","thread":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html","threadid":"2074162451508708028","threadstarter":1,"title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","topics":"Social","type":"thread"},"interaction":{"author":{"link":"http:\/\/www.baidu.com\/p\/%C1%D6%D0%E4%BB%A8%C2%D7?from=zhidao","name":"\u6797\u8896\u82B1\u4F26","username":"\u6797\u8896\u82B1\u4F26"},"content":"<span class=\"ask-title\"><a href=\"http:\/\/zhidao.baidu.com\/s\/zhima.html\" class=\"g-zhima-tag\" target=
 \"_blank\">#\u829D\u9EBB\u5F00\u95E8#<\/a>WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B<\/span>\n\u4E3A\u4EC0\u4E48\u6709\u65F6\u5019\u4FEE\u6539\u914D\u7F6E\u7684\u65F6\u5019\u66F4\u6539php\u76EE\u5F55\u4E0B\u7684php.ini\u6CA1\u6709\u6548\u679C\uFF0C\u6539apache\/bin\u76EE\u5F55\u4E0B\u7684\u65F6\u5019\u624D\u6709\u7528\u3002<br \/><br \/>\u8FD9\u4E24\u4E2A\u6709\u4EC0\u4E48\u533A\u522B\uFF0C\u5206\u522B\u6709\u4EC0\u4E48\u7528\uFF1F<br \/><br \/>\u8BF7\u9AD8\u624B\u89E3\u91CA\u4E0B\uFF01\u8C22\u8C22\uFF01<\/pre>","contenttype":"html","created_at":"Sat, 22 Mar 2014 14:23:00 -0800","id":"1e3b21086adbaa00e0726da0291633ce","link":"http:\/\/zhidao.baidu.com\/question\/2074162451508708028.html#","received_at":4743640302542788965,"schema":{"version":3},"subtype":"thread","title":"WAMP\u4E2D apache\u548Cphp\u76EE\u5F55\u4E0B\u7684php.ini\u6709\u4EC0\u4E48\u533A\u522B","type":"board"},"language":{"confidence":79,"tag":"zh","tag_extended":"zh-cn"}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/734307369\/picture","id":"734307369","link":"http:\/\/www.facebook.com\/profile.php?id=734307369","name":"Tory T-ham Hamilton","type":"user"},"created_at":"Sat, 22 Mar 2014 22:23:10 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"734307369_10152282200827370","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/w

<TRUNCATED>

[18/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
index 977ed70..5b941cf 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
@@ -1,7 +1,7 @@
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/justmekkb","name":"justmekkb","username":"justmekkb"},"content":"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \nProvince!\uFEFF","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:06:10 +0000","id":"1e3b28be72e0ad00e072d00a0815e3b6","link":"http:\/\/www.youtube.com\/all_comments?v=30FuTYnnXmM","received_at":4743642843909958769,"schema":{"version":3},"subtype":"comment","title":"Apache Snow II: ...","type":"youtube"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/justmekkb","name":"justmekkb","username":"justmekkb"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=30FuTYnnXmM","content":"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \nProvince!\uFEFF","contenttype":"html","crawled":"Sun, 30 Mar 2014 13:49:36 +0000","created_at":"Sun, 23 Mar 2014 13:06:10 +0000","domain":"
 www.youtube.com","id":"1571681202","lang":"en","langid":22,"link":"http:\/\/www.youtube.com\/all_comments?v=30FuTYnnXmM","robots_disallowed":"no","site_commentid":"z12of13o5wixs3qde22ixfnxytfjgftpi04","siteid":"youtube","title":"Apache Snow II: ...","type":"comment","videoid":"5cuajavn6pjal18jnh1sp3","videolink":"http:\/\/www.youtube.com\/watch?v=30FuTYnnXmM"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/redman1808","name":"REDMAN1808","username":"redman1808"},"content":"Apache Knife Graduation 3-23-2014\nwww.Apache-Knife.com\uFEFF","contenttype":"html","created_at":"Tue, 25 Mar 2014 23:29:01 +0000","id":"1e3b4753edb9ac80e0722abeeb9c452c","link":"http:\/\/www.youtube.com\/all_comments?v=W0vcwufX9OM","schema":{"version":3},"subtype":"comment","title":"Apache Knife ...","type":"youtube"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/redman1808","name":"REDMAN1808","username":"redman1808"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=W0vcwufX9OM","content":"Apache Knife Graduation 3-23-2014\nwww.Apache-Knife.com\uFEFF","contenttype":"html","crawled":"Wed, 02 Apr 2014 00:23:13 +0000","created_at":"Tue, 25 Mar 2014 23:29:01 +0000","domain":"www.youtube.com","id":"1573452031","lang":"de","langid":31,"link":"http:\/\/www
 .youtube.com\/all_comments?v=W0vcwufX9OM","robots_disallowed":"no","site_commentid":"z12ad53pimmefroo504ccbkitvjmzft4lwg0k","siteid":"youtube","title":"Apache Knife ...","type":"comment","videoid":"7cdig0ofjq8ls18jv5ftid","videolink":"http:\/\/www.youtube.com\/watch?v=W0vcwufX9OM"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/zja4ri3hkdviwos3sv_lsg","name":"zja4ri3hkdviwos3sv_lsg","username":"zja4ri3hkdviwos3sv_lsg"},"content":"Grande Apache, davvero un gran colpo ;)\uFEFF","contenttype":"html","created_at":"Thu, 27 Mar 2014 16:18:25 +0000","id":"1e3b5cb6c3a5ae80e072504981b43950","link":"http:\/\/www.youtube.com\/all_comments?v=bsCvwYmwwiQ","schema":{"version":3},"subtype":"comment","title":"Grande Apache, ...","type":"youtube"},"language":{"confidence":97,"tag":"it","tag_extended":"it"},"youtube":{"author":{"link":"http:\/\/youtube.com\/zja4ri3hkdviwos3sv_lsg","name":"zja4ri3hkdviwos3sv_lsg","username":"zja4ri3hkdviwos3sv_lsg"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=bsCvwYmwwiQ","content":"Grande Apache, davvero un gran colpo ;)\uFEFF","contenttype":"html","crawled":"Fri, 28 Mar 2014 13:44:20 +0000","created_at":"Thu, 27 Mar 2014 16:18:25 +0000","domain":"www.youtube.com","id":"1570252147","lang":"it","langid":42,"link":"http:\/\/
 www.youtube.com\/all_comments?v=bsCvwYmwwiQ","robots_disallowed":"no","site_commentid":"z12kud2xxqy1vdb1a22twvzh0lmatvjet","siteid":"youtube","title":"Grande Apache, ...","type":"comment","videoid":"5n634p8c4591818k1ov5g5","videolink":"http:\/\/www.youtube.com\/watch?v=bsCvwYmwwiQ"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/cejowdum4lewo0p3dsv2ya","name":"cejowdum4lewo0p3dsv2ya","username":"cejowdum4lewo0p3dsv2ya"},"content":"Grande apache! Dove abiti?\uFEFF","contenttype":"html","created_at":"Thu, 27 Mar 2014 16:25:30 +0000","id":"1e3b5cc698c3a900e072da410d1cba80","link":"http:\/\/www.youtube.com\/all_comments?v=KJ2ovwkoFVw","received_at":4743644290448849319,"schema":{"version":3},"subtype":"comment","title":"Grande apache! Dove ...","type":"youtube"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/cejowdum4lewo0p3dsv2ya","name":"cejowdum4lewo0p3dsv2ya","username":"cejowdum4lewo0p3dsv2ya"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=KJ2ovwkoFVw","content":"Grande apache! Dove abiti?\uFEFF","contenttype":"html","crawled":"Thu, 03 Apr 2014 13:37:42 +0000","created_at":"Thu, 27 Mar 2014 16:25:30 +0000","domain":"
 www.youtube.com","id":"1574460814","lang":"unknown","link":"http:\/\/www.youtube.com\/all_comments?v=KJ2ovwkoFVw","robots_disallowed":"no","site_commentid":"z133eviq3rquwfwp004ciptogzfwxzvy4w00k","siteid":"youtube","title":"Grande apache! Dove ...","type":"comment","videoid":"6ggq0sgl06i3318k44l1tr","videolink":"http:\/\/www.youtube.com\/watch?v=KJ2ovwkoFVw"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/tsunx4","name":"tsunx4","username":"tsunx4"},"content":"Sinnis Apache 125 - \u043A\u0438\u0442\u0430\u0439\u0441\u043A\u0430\u044F \u043A\u043E\u043F\u0438\u044F Suzuki DR125\uFEFF","contenttype":"html","created_at":"Sun, 30 Mar 2014 20:53:00 +0000","id":"1e3b84d47551ae00e07213c00f9208ca","link":"http:\/\/www.youtube.com\/all_comments?v=5mNtz3z-LwM","received_at":4743645206479298049,"schema":{"version":3},"subtype":"comment","title":"Sinnis Apache 125 - ...","type":"youtube"},"language":{"confidence":52,"tag":"ru","tag_extended":"ru"},"youtube":{"author":{"link":"http:\/\/youtube.com\/tsunx4","name":"tsunx4","username":"tsunx4"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=5mNtz3z-LwM","content":"Sinnis Apache 125 - \u043A\u0438\u0442\u0430\u0439\u0441\u043A\u0430\u044F \u043A\u043E\u043F\u0438\u044F Suzuki DR125\uFEFF","contenttype":"html","crawled":"Sun, 06 Apr 2014 02:17:33 +0000","created_at":"Sun, 30 Mar 2014 2
 0:53:00 +0000","domain":"www.youtube.com","id":"1575948688","lang":"ru","langid":65,"link":"http:\/\/www.youtube.com\/all_comments?v=5mNtz3z-LwM","robots_disallowed":"no","site_commentid":"z13ztrsy2kmtxrxqp04cg5hqjrqjczdjbj0","siteid":"youtube","title":"Sinnis Apache 125 - ...","type":"comment","videoid":"6a4b6ht4qnqg518k8buu8c","videolink":"http:\/\/www.youtube.com\/watch?v=5mNtz3z-LwM"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/thepaulobraveheart","name":"ThePaulobraveheart","username":"thepaulobraveheart"},"content":"Boeing AH-64 Apache Longbow Attack Helicopter\uFEFF","contenttype":"html","created_at":"Thu, 03 Apr 2014 00:28:14 +0000","id":"1e3bac6d7ea6a300e0728131423302cc","link":"http:\/\/www.youtube.com\/all_comments?v=u4Z590EW3Jg","schema":{"version":3},"subtype":"comment","title":"Boeing AH-64 Apache ...","type":"youtube"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Boeing","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0},"title":{"entities":[{"name":"Boeing","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/thepaulobraveheart","name":"ThePaulobraveheart","username":"thepaulobraveheart"},"commentslink":"http:\/\/www.youtube.com\/
 all_comments?v=u4Z590EW3Jg","content":"Boeing AH-64 Apache Longbow Attack Helicopter\uFEFF","contenttype":"html","crawled":"Thu, 10 Apr 2014 01:30:06 +0000","created_at":"Thu, 03 Apr 2014 00:28:14 +0000","domain":"www.youtube.com","id":"1578410306","lang":"unknown","link":"http:\/\/www.youtube.com\/all_comments?v=u4Z590EW3Jg","robots_disallowed":"no","site_commentid":"z13dsduxvsrzxpvrl04cddjiqzarhviz1vs0k","siteid":"youtube","title":"Boeing AH-64 Apache ...","type":"comment","videoid":"54geaa757jd6u18kijirss","videolink":"http:\/\/www.youtube.com\/watch?v=u4Z590EW3Jg"}}
-{"interaction":{"author":{"link":"http:\/\/youtube.com\/sqnaq_zotxi6axlutgp_ka","name":"sqnaq_zotxi6axlutgp_ka","username":"sqnaq_zotxi6axlutgp_ka"},"content":"Apache ft El Abusador de verso Lapiz calle\uFEFF","contenttype":"html","created_at":"Sat, 12 Apr 2014 14:32:27 +0000","id":"1e3c24f452c8af80e07269b9f7db9568","link":"http:\/\/www.youtube.com\/all_comments?v=ErKMJcM8H2U","received_at":4743648098787195355,"schema":{"version":3},"subtype":"comment","title":"Apache ft El ...","type":"youtube"},"language":{"confidence":97,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http:\/\/youtube.com\/sqnaq_zotxi6axlutgp_ka","name":"sqnaq_zotxi6axlutgp_ka","username":"sqnaq_zotxi6axlutgp_ka"},"commentslink":"http:\/\/www.youtube.com\/all_comments?v=ErKMJcM8H2U","content":"Apache ft El Abusador de verso Lapiz calle\uFEFF","contenttype":"html","crawled":"Mon, 14 Apr 2014 01:51:24 +0000","created_at":"Sat, 12 Apr 2014 14:32:27 +0000","domain":
 "www.youtube.com","id":"1580763243","lang":"unknown","link":"http:\/\/www.youtube.com\/all_comments?v=ErKMJcM8H2U","robots_disallowed":"no","site_commentid":"z12qwfdjwte1gbjix04chfjpknihvbybt5s","siteid":"youtube","title":"Apache ft El ...","type":"comment","videoid":"75sq7rhi8thf118kvgcg6l","videolink":"http:\/\/www.youtube.com\/watch?v=ErKMJcM8H2U"}}
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/justmekkb\",\"name\":\"justmekkb\",\"username\":\"justmekkb\"},\"content\":\"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \\nProvince!\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 13:06:10 +0000\",\"id\":\"1e3b28be72e0ad00e072d00a0815e3b6\",\"link\":\"http://www.youtube.com/all_comments?v=30FuTYnnXmM\",\"received_at\":4743642843909958769,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Apache Snow II: ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/justmekkb\",\"name\":\"justmekkb\",\"username\":\"justmekkb\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=30FuTYnnXmM\",\"content\":\"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \\nProvince!\",\"contenttype\":\"html\",\"crawled\":\"Su
 n, 30 Mar 2014 13:49:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 13:06:10 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1571681202\",\"lang\":\"en\",\"langid\":22,\"link\":\"http://www.youtube.com/all_comments?v=30FuTYnnXmM\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12of13o5wixs3qde22ixfnxytfjgftpi04\",\"siteid\":\"youtube\",\"title\":\"Apache Snow II: ...\",\"type\":\"comment\",\"videoid\":\"5cuajavn6pjal18jnh1sp3\",\"videolink\":\"http://www.youtube.com/watch?v=30FuTYnnXmM\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/redman1808\",\"name\":\"REDMAN1808\",\"username\":\"redman1808\"},\"content\":\"Apache Knife Graduation 3-23-2014\\nwww.Apache-Knife.com\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 23:29:01 +0000\",\"id\":\"1e3b4753edb9ac80e0722abeeb9c452c\",\"link\":\"http://www.youtube.com/all_comments?v=W0vcwufX9OM\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Apache Knife ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/redman1808\",\"name\":\"REDMAN1808\",\"username\":\"redman1808\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=W0vcwufX9OM\",\"content\":\"Apache Knife Graduation 3-23-2014\\nwww.Apache-Knife.com\",\"contenttype\":\"html\",\"crawled\":\"Wed, 02 Apr 2014 00:23:13 +0000\",\"created_at\":\"Tue, 25 Mar 2014 23:29:01 +0000\
 ",\"domain\":\"www.youtube.com\",\"id\":\"1573452031\",\"lang\":\"de\",\"langid\":31,\"link\":\"http://www.youtube.com/all_comments?v=W0vcwufX9OM\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12ad53pimmefroo504ccbkitvjmzft4lwg0k\",\"siteid\":\"youtube\",\"title\":\"Apache Knife ...\",\"type\":\"comment\",\"videoid\":\"7cdig0ofjq8ls18jv5ftid\",\"videolink\":\"http://www.youtube.com/watch?v=W0vcwufX9OM\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/zja4ri3hkdviwos3sv_lsg\",\"name\":\"zja4ri3hkdviwos3sv_lsg\",\"username\":\"zja4ri3hkdviwos3sv_lsg\"},\"content\":\"Grande Apache, davvero un gran colpo ;)\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014 16:18:25 +0000\",\"id\":\"1e3b5cb6c3a5ae80e072504981b43950\",\"link\":\"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Grande Apache, ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"it\",\"tag_extended\":\"it\"},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/zja4ri3hkdviwos3sv_lsg\",\"name\":\"zja4ri3hkdviwos3sv_lsg\",\"username\":\"zja4ri3hkdviwos3sv_lsg\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ\",\"content\":\"Grande Apache, davvero un gran colpo ;)\",\"contenttype\":\"html\",\"crawled\":\"Fri, 28 Mar 2014 13:44:20 +0000\",\"created_at\":\"Thu, 27 Mar 2014 16:18:25 +0000\",\"d
 omain\":\"www.youtube.com\",\"id\":\"1570252147\",\"lang\":\"it\",\"langid\":42,\"link\":\"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12kud2xxqy1vdb1a22twvzh0lmatvjet\",\"siteid\":\"youtube\",\"title\":\"Grande Apache, ...\",\"type\":\"comment\",\"videoid\":\"5n634p8c4591818k1ov5g5\",\"videolink\":\"http://www.youtube.com/watch?v=bsCvwYmwwiQ\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/cejowdum4lewo0p3dsv2ya\",\"name\":\"cejowdum4lewo0p3dsv2ya\",\"username\":\"cejowdum4lewo0p3dsv2ya\"},\"content\":\"Grande apache! Dove abiti?\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014 16:25:30 +0000\",\"id\":\"1e3b5cc698c3a900e072da410d1cba80\",\"link\":\"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw\",\"received_at\":4743644290448849319,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Grande apache! Dove ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":96,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/cejowdum4lewo0p3dsv2ya\",\"name\":\"cejowdum4lewo0p3dsv2ya\",\"username\":\"cejowdum4lewo0p3dsv2ya\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw\",\"content\":\"Grande apache! Dove abiti?\",\"contenttype\":\"html\",\"crawled\":\"
 Thu, 03 Apr 2014 13:37:42 +0000\",\"created_at\":\"Thu, 27 Mar 2014 16:25:30 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1574460814\",\"lang\":\"unknown\",\"link\":\"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z133eviq3rquwfwp004ciptogzfwxzvy4w00k\",\"siteid\":\"youtube\",\"title\":\"Grande apache! Dove ...\",\"type\":\"comment\",\"videoid\":\"6ggq0sgl06i3318k44l1tr\",\"videolink\":\"http://www.youtube.com/watch?v=KJ2ovwkoFVw\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/tsunx4\",\"name\":\"tsunx4\",\"username\":\"tsunx4\"},\"content\":\"Sinnis Apache 125 - китайская копия Suzuki DR125\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 20:53:00 +0000\",\"id\":\"1e3b84d47551ae00e07213c00f9208ca\",\"link\":\"http://www.youtube.com/all_comments?v=5mNtz3z-LwM\",\"received_at\":4743645206479298049,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Sinnis Apache 125 - ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":52,\"tag\":\"ru\",\"tag_extended\":\"ru\"},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/tsunx4\",\"name\":\"tsunx4\",\"username\":\"tsunx4\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=5mNtz3z-LwM\",\"content\":\"Sinnis Apache 125 - китайская копия Suzuki DR125\",\"contenttype\":\"html\",\"crawled\":\"Sun, 06 Apr 2014 02:17:33 +0000\",\"created_at\":\"Sun, 30 Mar 2014 20:53:00 +0000\",\"domain\":\
 "www.youtube.com\",\"id\":\"1575948688\",\"lang\":\"ru\",\"langid\":65,\"link\":\"http://www.youtube.com/all_comments?v=5mNtz3z-LwM\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z13ztrsy2kmtxrxqp04cg5hqjrqjczdjbj0\",\"siteid\":\"youtube\",\"title\":\"Sinnis Apache 125 - ...\",\"type\":\"comment\",\"videoid\":\"6a4b6ht4qnqg518k8buu8c\",\"videolink\":\"http://www.youtube.com/watch?v=5mNtz3z-LwM\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/thepaulobraveheart\",\"name\":\"ThePaulobraveheart\",\"username\":\"thepaulobraveheart\"},\"content\":\"Boeing AH-64 Apache Longbow Attack Helicopter\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Apr 2014 00:28:14 +0000\",\"id\":\"1e3bac6d7ea6a300e0728131423302cc\",\"link\":\"http://www.youtube.com/all_comments?v=u4Z590EW3Jg\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Boeing AH-64 Apache ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Boeing\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Boeing\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/thepaulob
 raveheart\",\"name\":\"ThePaulobraveheart\",\"username\":\"thepaulobraveheart\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=u4Z590EW3Jg\",\"content\":\"Boeing AH-64 Apache Longbow Attack Helicopter\",\"contenttype\":\"html\",\"crawled\":\"Thu, 10 Apr 2014 01:30:06 +0000\",\"created_at\":\"Thu, 03 Apr 2014 00:28:14 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1578410306\",\"lang\":\"unknown\",\"link\":\"http://www.youtube.com/all_comments?v=u4Z590EW3Jg\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z13dsduxvsrzxpvrl04cddjiqzarhviz1vs0k\",\"siteid\":\"youtube\",\"title\":\"Boeing AH-64 Apache ...\",\"type\":\"comment\",\"videoid\":\"54geaa757jd6u18kijirss\",\"videolink\":\"http://www.youtube.com/watch?v=u4Z590EW3Jg\"}}"
+"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/sqnaq_zotxi6axlutgp_ka\",\"name\":\"sqnaq_zotxi6axlutgp_ka\",\"username\":\"sqnaq_zotxi6axlutgp_ka\"},\"content\":\"Apache ft El Abusador de verso Lapiz calle\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 14:32:27 +0000\",\"id\":\"1e3c24f452c8af80e07269b9f7db9568\",\"link\":\"http://www.youtube.com/all_comments?v=ErKMJcM8H2U\",\"received_at\":4743648098787195355,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Apache ft El ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"es\",\"tag_extended\":\"es\"},\"salience\":{\"content\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/sqnaq_zotxi6axlutgp_ka\",\"name\":\"sqnaq_zotxi6axlutgp_ka\",\"username\":\"sqnaq_zotxi6axlutgp_ka\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=ErKMJcM8H2U\",\"content\":\"Apache ft El Abusador de verso Lapiz calle\",\"contenttype\":\"html\",\"crawled\":\"Mon
 , 14 Apr 2014 01:51:24 +0000\",\"created_at\":\"Sat, 12 Apr 2014 14:32:27 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1580763243\",\"lang\":\"unknown\",\"link\":\"http://www.youtube.com/all_comments?v=ErKMJcM8H2U\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12qwfdjwte1gbjix04chfjpknihvbybt5s\",\"siteid\":\"youtube\",\"title\":\"Apache ft El ...\",\"type\":\"comment\",\"videoid\":\"75sq7rhi8thf118kvgcg6l\",\"videolink\":\"http://www.youtube.com/watch?v=ErKMJcM8H2U\"}}"


[16/45] git commit: Removed author information from old files

Posted by mf...@apache.org.
Removed author information from old files


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/997c6919
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/997c6919
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/997c6919

Branch: refs/heads/master
Commit: 997c6919be58b55bbf241e50703bd35996b54878
Parents: 5516471
Author: rebanks <re...@w2odigital.com>
Authored: Wed Jun 11 13:51:16 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Wed Jun 11 13:51:16 2014 -0500

----------------------------------------------------------------------
 .../streams/datasift/provider/DatasiftStreamConfigurator.java  | 2 +-
 .../datasift/provider/DatasiftTypeConverterProcessor.java      | 2 +-
 .../datasift/serializer/DatasiftActivitySerializer.java        | 2 +-
 .../datasift/serializer/DatasiftDefaultActivitySerializer.java | 6 +-----
 .../datasift/serializer/DatasiftTweetActivitySerializer.java   | 2 +-
 .../src/test/java17/com/datasift/test/DatasiftSerDeTest.java   | 6 +-----
 6 files changed, 6 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/997c6919/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamConfigurator.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamConfigurator.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamConfigurator.java
index c3e759d..d85d6e5 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamConfigurator.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftStreamConfigurator.java
@@ -24,7 +24,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * Created by sblackmon on 12/10/13.
+ *
  */
 public class DatasiftStreamConfigurator {
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/997c6919/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
index 2e44b80..33439ba 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/provider/DatasiftTypeConverterProcessor.java
@@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory;
 import java.util.List;
 
 /**
- * Created by sblackmon on 12/10/13.
+ *
  */
 public class DatasiftTypeConverterProcessor implements StreamsProcessor {
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/997c6919/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
index c6ff221..1d5fd2c 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftActivitySerializer.java
@@ -28,7 +28,7 @@ import org.apache.streams.pojo.json.Activity;
 import java.util.List;
 
 /**
- * Created by rebanks on 5/30/14.
+ *
  */
 public class DatasiftActivitySerializer implements ActivitySerializer<Datasift> {
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/997c6919/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
index c4cc6d3..b8c87e5 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftDefaultActivitySerializer.java
@@ -22,11 +22,7 @@ import java.util.Map;
 import static org.apache.streams.data.util.ActivityUtil.ensureExtensions;
 
 /**
-* Created with IntelliJ IDEA.
-* User: mdelaet
-* Date: 9/30/13
-* Time: 9:24 AM
-* To change this template use File | Settings | File Templates.
+*
 */
 public class DatasiftDefaultActivitySerializer implements ActivitySerializer<Datasift>, Serializable {
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/997c6919/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
index ef48fa6..e2394ce 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
@@ -42,7 +42,7 @@ import java.util.Map;
 import static org.apache.streams.data.util.ActivityUtil.ensureExtensions;
 
 /**
- * Created by rebanks on 5/30/14.
+ * 
  */
 public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySerializer {
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/997c6919/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java b/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
index 084e604..bb632a3 100644
--- a/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
+++ b/streams-contrib/streams-provider-datasift/src/test/java17/com/datasift/test/DatasiftSerDeTest.java
@@ -15,11 +15,7 @@ import java.io.InputStream;
 import java.io.InputStreamReader;
 
 /**
- * Created with IntelliJ IDEA.
- * User: sblackmon
- * Date: 8/20/13
- * Time: 5:57 PM
- * To change this template use File | Settings | File Templates.
+ *
  */
 public class DatasiftSerDeTest {
 


[20/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
index c8766f5..aff0c1c 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
@@ -1,1000 +1,1000 @@
-{"interaction":{"schema":{"version":3},"source":"web","author":{"username":"knknnmla","name":"Mr.President","id":1926634310,"avatar":"http://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg","link":"http://twitter.com/knknnmla","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:34 +0000","received_at":1.4014686953022E9,"content":"@AHGundarangan soccer player napala itsuuu hahaha","id":"1e3e81aa833aaf00e074bb7a2fe8b77a","link":"http://twitter.com/knknnmla/status/472420063447105536","mentions":["AHGundarangan"],"mention_ids":[2270040210]},"klout":{"score":42},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"created_at":"Fri, 30 May 2014 16:51:34 +0000","filter_level":"medium","id":"472420063447105536","in_reply_to_screen_name":"AHGundarangan","in_reply_to_status_id":"472419291711561728","in_reply_to_user_id":"2270040210","lang":"tl","mention_ids":[2270040210],"mentions":["AHGundarangan"],"source":"web","text":"@AHGundarang
 an soccer player napala itsuuu hahaha","user":{"name":"Mr.President","url":"http://www.Facebook.com/FING3R.BOARD","description":"Fingerborder,beatboxer,Soccerplayer.#DUBSTEP #HIP-HOP #DOTA2 #GAMER Clockwerk ng mundo","location":"San Francisco, California","statuses_count":5602,"followers_count":393,"friends_count":403,"screen_name":"knknnmla","profile_image_url":"http://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg","lang":"en","time_zone":"Beijing","utc_offset":28800,"listed_count":0,"id":1926634310,"id_str":"1926634310","geo_enabled":false,"verified":false,"favourites_count":1319,"created_at":"Wed, 02 Oct 2013 11:50:37 +0000"}}}
-{"demographic":{"gender":"female"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"amberhopf13","name":"Amber","id":2257041132,"avatar":"http://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg","link":"http://twitter.com/amberhopf13","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:37 +0000","received_at":1.4014686975912E9,"content":"@KayKay9972 I've seen better tennis playing in a tampon commercial...","id":"1e3e81aa9fd7a280e074f411f586dd00","link":"http://twitter.com/amberhopf13/status/472420073106595840","mentions":["KayKay9972"],"mention_ids":[593298084]},"klout":{"score":29},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"created_at":"Fri, 30 May 2014 16:51:37 +0000","filter_level":"medium","id":"472420073106595840","in_reply_to_screen_name":"KayKay9972","in_reply_to_status_id":"472419881724686336","in_reply_to_user_id":"593298084","lang":"en","mention_ids":[593298084],"m
 entions":["KayKay9972"],"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"@KayKay9972 I've seen better tennis playing in a tampon commercial...","user":{"name":"Amber","statuses_count":439,"followers_count":157,"friends_count":407,"screen_name":"amberhopf13","profile_image_url":"http://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg","lang":"en","listed_count":0,"id":2257041132,"id_str":"2257041132","geo_enabled":false,"verified":false,"favourites_count":792,"created_at":"Sat, 21 Dec 2013 23:30:00 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Sprout Social","author":{"username":"MrSuperFatso","name":"Mister Fatso","id":2306729970,"avatar":"http://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg","link":"http://twitter.com/MrSuperFatso","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:11 +0000","received_at":1.4014686715201E9,"content":"Who doesn't love a good sweater vest? #Golf fashion advice for women via @GolfDigestMag http://t.co/ghmJGqncms","id":"1e3e81a9a7e2a980e074f613deb99c34","link":"http://twitter.com/MrSuperFatso/status/472419963701952512","mentions":["GolfDigestMag"],"mention_ids":[22146985],"hashtags":["Golf"]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 15:28:02 +0000"],"hops":[["http://golfdig.st/1tX2c9F"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["By Ashley Mayo As part of my quest to help female
  golfers look more stylish and feel more comfortable on the course, I’m going to highlight one outfit per week, from Memorial Day through Labor Day. Last week, I..."],"keywords":[["ashley mayo","athleta","gfore","lija","style for her","true linkswear"]],"lang":["en-us"],"opengraph":[{"image":"http://subscribe.condenet.com/images_covers/cover_golfdigest_80.jpg?fbrefresh=20140530","site_name":"Golf Digest","title":"Style For Her: Long live the sweater vest: The Loop","url":"http://www.golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html","type":"article"}]},"normalized_url":["http://golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html"],"retweet_count":[0],"title":["Style For Her: Long Live The Sweater Vest: The Loop : Golf Digest"],"url":["http://www.golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:11 +0000","display_urls":["golfdig.st/1tX2c9F"],"domains":["golfdig.
 st"],"filter_level":"medium","hashtags":["Golf"],"id":"472419963701952512","lang":"en","links":["http://golfdig.st/1tX2c9F"],"mention_ids":[22146985],"mentions":["GolfDigestMag"],"source":"<a href=\"http://sproutsocial.com\" rel=\"nofollow\">Sprout Social</a>","text":"Who doesn't love a good sweater vest? #Golf fashion advice for women via @GolfDigestMag http://t.co/ghmJGqncms","user":{"name":"Mister Fatso","url":"http://superstrokeusa.com","description":"Sinking putts. Being Super. Let's hit the green, you and me. @SuperStrokeGolf","location":"USA","statuses_count":106,"followers_count":58,"friends_count":8,"screen_name":"MrSuperFatso","profile_image_url":"http://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":1,"id":2306729970,"id_str":"2306729970","geo_enabled":false,"
 verified":false,"favourites_count":42,"created_at":"Thu, 23 Jan 2014 14:53:18 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"dlvr.it","author":{"username":"PasadenaCAPatch","name":"Pasadena CA Patch","id":807836286,"avatar":"http://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg","link":"http://twitter.com/PasadenaCAPatch","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:37 +0000","received_at":1.4014686973454E9,"content":"Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree http://t.co/dNy3uwA60c","id":"1e3e81aa9fd7a280e074fb2e9dbb1b3c","link":"http://twitter.com/PasadenaCAPatch/status/472420072363798528"},"klout":{"score":42},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:38 +0000"],"hops":[["http://dlvr.it/5qc3Y9","http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004?utm_source=dlvr.it&utm_medium=twitter"]],"meta":{"charset":["UTF-8"],"con
 tent_type":["text/html"],"description":["The appropriately named California Chrome could be the first triple crown winner in 36 years. After all, he was the first Californian to win the Kentu"],"lang":["unknown"],"opengraph":[{"image":"http://pasadena-ca.patch.com/img/facebook-icon.png"}]},"normalized_url":["http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004"],"retweet_count":[0],"title":["Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree - Sports - Pasadena, CA Patch"],"url":["http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:37 +0000","display_urls":["dlvr.it/5qc3Y9"],"domains":["dlvr.it"],"filter_level":"medium","id":"472420072363798528","lang":"en","links":["http://dlvr.it/5qc3Y9"],"source":"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>","text":"Triple Crown
 : Hopes of Entire State Rest on a Horse of Modest Pedigree http://t.co/dNy3uwA60c","user":{"name":"Pasadena CA Patch","url":"http://Pasadena-CA.Patch.com","description":"#PasadenaCA #Patch (Pasadena-CA@Patch.com) is your source for all things local. See news, share events, photos.","location":"Pasadena, CA","statuses_count":2918,"followers_count":1394,"friends_count":110,"screen_name":"PasadenaCAPatch","profile_image_url":"http://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg","lang":"en","time_zone":"Atlantic Time (Canada)","utc_offset":-10800,"listed_count":29,"id":807836286,"id_str":"807836286","geo_enabled":false,"verified":false,"favourites_count":104,"created_at":"Fri, 07 Sep 2012 00:04:02 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"AndrewYee96","name":"Andrew Yee","id":304849703,"avatar":"http://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg","link":"http://twitter.com/AndrewYee96","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:38 +0000","received_at":1.4014686989583E9,"content":"Great day for Canadian tennis. Good luck to @milosraonic and @geniebouchard #FrenchOpen #deuce","id":"1e3e81aaa960a900e074c8a9dd94b27a","link":"http://twitter.com/AndrewYee96/status/472420079125016577","mentions":["milosraonic","geniebouchard"],"mention_ids":[35441526,52818366],"hashtags":["FrenchOpen","deuce"]},"klout":{"score":23},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"created_at":"Fri, 30 May 2014 16:51:38 +0000","filter_level":"medium","hashtags":["FrenchOpen","deuce"],"id":"472420079125016577","lang":"en","m
 ention_ids":[35441526,52818366],"mentions":["milosraonic","geniebouchard"],"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"Great day for Canadian tennis. Good luck to @milosraonic and @geniebouchard #FrenchOpen #deuce","user":{"name":"Andrew Yee","description":"This is the verified account for Andrew Yee.","statuses_count":434,"followers_count":72,"friends_count":282,"screen_name":"AndrewYee96","profile_image_url":"http://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg","lang":"en","listed_count":1,"id":304849703,"id_str":"304849703","geo_enabled":false,"verified":false,"favourites_count":7,"created_at":"Wed, 25 May 2011 06:34:24 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for iPad","author":{"username":"khalisxx","name":"☠","id":536501749,"avatar":"http://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg","link":"http://twitter.com/khalisxx","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:38 +0000","received_at":1.401468698727E9,"content":"RT @england: Gerrard scores @England's second with a left-foot cracker v Trinidad &amp; Tobago at the 2006 World Cup in a 2-0 win http://t.co/KdirmxVmgV","id":"1e3e81aaa960a900e0745beb9b0d31f2","link":"http://twitter.com/khalisxx/status/472420078060068864","mentions":["england","england"],"mention_ids":[1903382054]},"klout":{"score":29},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420078060068864","retweet":{"text":"Gerrard scores @England's second with a left-foot cracker v Trinidad &amp; Tobago at the 2006 World Cup in a 2-0 win http://t.co/KdirmxVmgV","id":"472420078060068864","
 user":{"name":"☠","url":"http://instagram.com/khaliskuasa2","description":"Ain't it cool...!! Anak Pak Kamsul in da house..! ♥ #LFC #YNWA","location":"jangan nak sebok la..","statuses_count":70771,"followers_count":178,"friends_count":163,"screen_name":"khalisxx","profile_image_url":"http://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg","lang":"en","time_zone":"Kuala Lumpur","utc_offset":28800,"listed_count":0,"id":536501749,"id_str":"536501749","geo_enabled":true,"verified":false,"favourites_count":103,"created_at":"Sun, 25 Mar 2012 17:44:57 +0000"},"source":"<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>","count":146,"created_at":"Fri, 30 May 2014 16:51:38 +0000","mentions":["england","england"],"mention_ids":[1903382054],"media":[{"id":472325338131742721,"id_str":"472325338131742721","media_url":"http://pbs.twim
 g.com/media/Bo4JZH3CQAEYbkX.jpg","media_url_https":"https://pbs.twimg.com/media/Bo4JZH3CQAEYbkX.jpg","url":"http://t.co/KdirmxVmgV","display_url":"pic.twitter.com/KdirmxVmgV","expanded_url":"http://twitter.com/england/status/472325339025530880/photo/1","type":"photo","sizes":{"small":{"w":339,"h":221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":390,"resize":"fit"},"large":{"w":960,"h":625,"resize":"fit"}}}],"filter_level":"low","lang":"en"},"retweeted":{"id":"472325339025530880","user":{"name":"England","url":"http://www.TheFA.com/England","description":"The official feed of the England Football Team with the latest news and updates from all the Three Lions squads","location":"Wembley Stadium, England","statuses_count":395,"followers_count":134957,"friends_count":85,"screen_name":"england","profile_image_url":"http://pbs.twimg.com/profile_images/441233401081647106/1o3VA7cl_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images
 /441233401081647106/1o3VA7cl_normal.jpeg","lang":"en-gb","time_zone":"London","utc_offset":3600,"listed_count":468,"id":1903382054,"id_str":"1903382054","geo_enabled":false,"verified":true,"favourites_count":133,"created_at":"Wed, 25 Sep 2013 08:23:07 +0000"},"source":"web","created_at":"Fri, 30 May 2014 10:35:10 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"n_abouhanna","name":"nicolas abouhanna ","id":705491522,"avatar":"http://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg","link":"http://twitter.com/n_abouhanna","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:39 +0000","received_at":1.4014687000811E9,"content":"The funniest thing are girls that think they know hockey but really just wanna sleep with hockey players","id":"1e3e81aab2e9af80e074ee9f9e30a6d6","link":"http://twitter.com/n_abouhanna/status/472420082707349505","geo":{"latitude":45.27294124,"longitude":-75.7372412}},"klout":{"score":20},"language":{"tag":"en","tag_extended":"en","confidence":99},"twitter":{"created_at":"Fri, 30 May 2014 16:51:39 +0000","filter_level":"medium","geo":{"latitude":45.27294124,"longitude":-75.7372412},"id":"472420082707349505","lang":"en","place":{"id":"38d5
 974e82ed1a6c","url":"https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json","place_type":"city","country":"Canada","country_code":"CA","full_name":"Ottawa, Ontario","name":"Ottawa","attributes":{}},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"The funniest thing are girls that think they know hockey but really just wanna sleep with hockey players","user":{"name":"nicolas abouhanna ","description":"#teamfollowback","statuses_count":113,"followers_count":91,"friends_count":173,"screen_name":"n_abouhanna","profile_image_url":"http://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg","lang":"en","time_zone":"Atlantic Time (Canada)","utc_offset":-10800,"listed_count":0,"id":705491522,"id_str":"705491522","geo_enabled":true,"verified":false,"favourites_count
 ":50,"created_at":"Thu, 19 Jul 2012 17:49:44 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for BlackBerry®","author":{"username":"Bellotsoho","name":"#BokoHaramIsNotIslam","id":493031077,"avatar":"http://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg","link":"http://twitter.com/Bellotsoho","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:39 +0000","received_at":1.4014686998544E9,"content":"RT @ESPNFC: No. 39 - Italy's rock at the back, GK Gigi Buffon will play in his 4th World Cup #WorldCupRank http://t.co/e4GarGMt3d http://t.co/WMsROdzOZX","id":"1e3e81aab2e9af80e0741ee6a96d3540","link":"http://twitter.com/Bellotsoho/status/472420081579073536","mentions":["ESPNFC"],"hashtags":["WorldCupRank"]},"klout":{"score":20},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:45:31 +0000"],"hops":[["http://es.pn/1kQYYRS","http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-#worldcuprank-no-39-gianluigi-buffon-
 italy-juventus?cc=5901&cc=5901"]],"meta":{"charset":["CP1252"],"content_type":["text/html"],"description":["Ranking the Top 50 players likely to shine at the 2014 World Cup"],"lang":["unknown"],"opengraph":[{"title":"#WorldCupRank: No. 39 Gianluigi Buffon","url":"http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-#worldcuprank-no-39-gianluigi-buffon-italy-juventus","description":"Ranking the Top 50 players likely to shine at the 2014 World Cup","site_name":"ESPNFC"}]},"normalized_url":["http://espnfc.com/news/story/_/id/1819471/2014-world-cup-"],"retweet_count":[0],"title":["2014 World Cup - #WorldCupRank - No. 39 Gianluigi Buffon of Italy and Juventus - ESPN FC"],"url":["http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-"]},"twitter":{"id":"472420081579073536","retweet":{"text":"No. 39 - Italy's rock at the back, GK Gigi Buffon will play in his 4th World Cup #WorldCupRank http://t.co/e4GarGMt3d http://t.co/WMsROdzOZX","id":"472420081579073536","user":{"name":"#
 BokoHaramIsNotIslam","description":"It's my life,I'll live it,I'll love it,and I won't care what you think of it.","location":"Sokoto,Nigeria.","statuses_count":9309,"followers_count":197,"friends_count":698,"screen_name":"Bellotsoho","profile_image_url":"http://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg","lang":"en","listed_count":1,"id":493031077,"id_str":"493031077","geo_enabled":true,"verified":false,"favourites_count":9,"created_at":"Wed, 15 Feb 2012 11:20:10 +0000"},"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>","count":30,"created_at":"Fri, 30 May 2014 16:51:39 +0000","mentions":["ESPNFC"],"links":["http://es.pn/1kQYYRS"],"display_urls":["es.pn/1kQYYRS"],"domains":["es.pn"],"hashtags":["WorldCupRank"],"media":[{"id":472418530491498496,"id_str":"472418530491498496","media_url":"http://pbs.twimg.co
 m/media/Bo5eJodCAAA6jZP.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5eJodCAAA6jZP.jpg","url":"http://t.co/WMsROdzOZX","display_url":"pic.twitter.com/WMsROdzOZX","expanded_url":"http://twitter.com/ESPNFC/status/472418530994827264/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":463,"resize":"fit"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1023,"h":791,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"472418530994827264","user":{"name":"ESPN FC","url":"http://www.espnfc.com","description":"All the latest football news and opinion","location":"At the football, mainly","statuses_count":48528,"followers_count":415079,"friends_count":281,"screen_name":"ESPNFC","profile_image_url":"http://pbs.twimg.com/profile_images/378800000861375426/iRq_tDyJ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000861375426/iRq_tDyJ_normal.jpeg","lang":"en","time_zone":"London","utc_offset":3600,"listed_c
 ount":5621,"id":18091004,"id_str":"18091004","geo_enabled":false,"verified":true,"favourites_count":55,"created_at":"Sat, 13 Dec 2008 01:33:04 +0000"},"source":"<a href=\"http://poptip.com\" rel=\"nofollow\">Poptip</a>","created_at":"Fri, 30 May 2014 16:45:29 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Sendible","author":{"username":"rugbybizz","name":"Rugbybiz","id":2489867288,"avatar":"http://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png","link":"http://twitter.com/rugbybizz","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:38 +0000","received_at":1.4014686990793E9,"content":"RT @HarveyLZ: Leaving campus now to head upstate for NY State Rugby Championships.  Match tomorrow at 2:00. #rugby","id":"1e3e81aaa960a900e074f91cd905be10","link":"http://twitter.com/rugbybizz/status/472420078764703744","mentions":["HarveyLZ"],"hashtags":["rugby"]},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420078764703744","retweet":{"text":"Leaving campus now to head upstate for NY State Rugby Championships.  Match tomorrow at 2:00. #rugby","id":"472420078764703744","user":{"name":"Rugbybiz","url":"http://www.byaonline.co.uk","description":"Promoting SME business in locally in 
 Rugby & Nationally through the BYAO network","location":"Rugby","statuses_count":1124,"followers_count":418,"friends_count":869,"screen_name":"rugbybizz","profile_image_url":"http://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png","lang":"en","listed_count":1,"id":2489867288,"id_str":"2489867288","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Sun, 11 May 2014 13:44:25 +0000"},"source":"<a href=\"http://sendible.com\" rel=\"nofollow\">Sendible</a>","count":1,"created_at":"Fri, 30 May 2014 16:51:38 +0000","mentions":["HarveyLZ"],"hashtags":["rugby"],"lang":"en"},"retweeted":{"id":"472416935184179200","user":{"name":"Philip Lazzaro","description":"Head of Upper School @ The Harvey School - an independent 6-12 school in Westchester County","statuses_count":823,"followers_count":176,"friends_count":413,"screen_name":"HarveyLZ","profile_image
 _url":"http://pbs.twimg.com/profile_images/3167815962/12bdb73d9c28cd2f520e1d1018a23e61_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3167815962/12bdb73d9c28cd2f520e1d1018a23e61_normal.jpeg","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":0,"id":1024888153,"id_str":"1024888153","geo_enabled":true,"verified":false,"favourites_count":588,"created_at":"Thu, 20 Dec 2012 19:35:03 +0000"},"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","created_at":"Fri, 30 May 2014 16:39:09 +0000"}}}
-{"demographic":{"gender":"female"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"ValCoppola79","name":"Valeria Coppola","id":1596774792,"avatar":"http://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg","link":"http://twitter.com/ValCoppola79","language":"es"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:25 +0000","received_at":1.4014686858901E9,"content":"RT @MotoGP: #MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"1e3e81aa2d66a480e07418fc274b9266","link":"http://twitter.com/ValCoppola79/status/472420022699446273","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"hashtags":["MotoGP"]},"klout":{"score":14},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:22:57 +0000"],"meta":{"charset":["UTF-8"],"content_type
 ":["text/html"],"description":["The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."],"keywords":[["MotoGP World Championship","MotoGP","Moto2","Moto3","Official Website","motogp.com","Live Video","Live Timing","Live Experience","High Resolution","VideoPass","Valentino Rossi","Marc Marquez","Honda","Jorge Lorenzo","Motorbike","race tickets","paddock girls","vip village","Calendar","after the flag","no spoiler","Time Schedule","News","RSS","BMW","Tissot","Aperol","Bridgestone","Dani Pedrosa","Casey Stoner","Toni Elias"]],"lang":["en"],"opengraph":[{"title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."}],"twitter":[{"card":"summary","site":"@motogp","url":"http://www.motogp.com/en/photos/latest photos","title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto
 3, includes Live Video coverage, premium content and all the latest news."}]},"normalized_url":["http://motogp.com/en/photos/latest+photos"],"retweet_count":[0],"title":["motogp.com · Latest Photos"],"url":["http://www.motogp.com/en/photos/latest+photos"]},"twitter":{"id":"472420022699446273","retweet":{"text":"#MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"472420022699446273","user":{"name":"Valeria Coppola","statuses_count":58,"followers_count":5,"friends_count":16,"screen_name":"ValCoppola79","profile_image_url":"http://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg","lang":"es","listed_count":0,"id":1596774792,"id_str":"1596774792","geo_enabled":false,"verified":false,"favourites_count":101,"created_at":"M
 on, 15 Jul 2013 21:30:40 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":475,"created_at":"Fri, 30 May 2014 16:51:25 +0000","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"links":["http://www.motogp.com/en/photos/latest+photos"],"display_urls":["motogp.com/en/photos/late…"],"domains":["www.motogp.com"],"hashtags":["MotoGP"],"media":[{"id":472412807162769408,"id_str":"472412807162769408","media_url":"http://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","url":"http://t.co/vynRa1k4zI","display_url":"pic.twitter.com/vynRa1k4zI","expanded_url":"http://twitter.com/MotoGP/status/472412808504967168/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"47241280850496716
 8","user":{"name":"MotoGP™","url":"http://www.motogp.com","description":"Official Twitter Feed of the MotoGP™ World Championship","location":"All around the world","statuses_count":15839,"followers_count":945262,"friends_count":403,"screen_name":"MotoGP","profile_image_url":"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":7411,"id":14082692,"id_str":"14082692","geo_enabled":true,"verified":true,"favourites_count":3,"created_at":"Wed, 05 Mar 2008 11:19:05 +0000"},"source":"web","created_at":"Fri, 30 May 2014 16:22:45 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"web","author":{"username":"A_Fazhan","name":"FazhanNnNnNn","id":319670217,"avatar":"http://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg","link":"http://twitter.com/A_Fazhan","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:42 +0000","received_at":1.4014687027717E9,"content":"RT @TheTotalLFC: Good to see Liverpool trying to finalise 3/4 deals before the world cup. #lfc","id":"1e3e81aacf86a300e074822e109ecf80","link":"http://twitter.com/A_Fazhan/status/472420094492962817","mentions":["TheTotalLFC"],"hashtags":["lfc"]},"klout":{"score":42},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420094492962817","retweet":{"text":"Good to see Liverpool trying to finalise 3/4 deals before the world cup. #lfc","id":"472420094492962817","user":{"name":"FazhanNnNnNn","description":"♡The REDS ♡ YNWA ♡ 98'","statuses_count":16710,"followers_count":655,"friends_count":48
 5,"screen_name":"A_Fazhan","profile_image_url":"http://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg","lang":"en","time_zone":"Kuala Lumpur","utc_offset":28800,"listed_count":0,"id":319670217,"id_str":"319670217","geo_enabled":true,"verified":false,"favourites_count":1749,"created_at":"Sat, 18 Jun 2011 14:39:37 +0000"},"source":"web","count":3,"created_at":"Fri, 30 May 2014 16:51:42 +0000","mentions":["TheTotalLFC"],"hashtags":["lfc"],"lang":"en"},"retweeted":{"id":"472419990285459458","user":{"name":"Total LFC","description":"Real time updates about everything relating to Liverpool FC.News,Stats,Team sheets,Live  coverage,Pictures,Videos..etc","location":"Liverpool","statuses_count":43549,"followers_count":89245,"friends_count":1709,"screen_name":"TheTotalLFC","profile_image_url":"http://pbs.twimg.com/profile_images/2403633752/f21qqa6c7zopx7xmttn2_normal.p
 ng","profile_image_url_https":"https://pbs.twimg.com/profile_images/2403633752/f21qqa6c7zopx7xmttn2_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":752,"id":296750174,"id_str":"296750174","geo_enabled":true,"verified":false,"favourites_count":313,"created_at":"Wed, 11 May 2011 10:24:59 +0000"},"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","created_at":"Fri, 30 May 2014 16:51:17 +0000"}}}
-{"demographic":{"gender":"unisex"},"interaction":{"schema":{"version":3},"source":"Facebook","author":{"username":"unisourcesd","name":"Unisource San Diego","id":288513475,"avatar":"http://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg","link":"http://twitter.com/unisourcesd","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:50:35 +0000","received_at":1.4014686362373E9,"content":"Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a... http://t.co/2PFFarmQ7f","id":"1e3e81a8508faf80e0743cad6d4797ca","link":"http://twitter.com/unisourcesd/status/472419816020905984"},"klout":{"score":25},"language":{"tag":"en","tag_extended":"en","confidence":99},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:42 +0000"],"hops":[["http://fb.me/3iqEbKs4d"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Ra
 ncho Bernardo Inn! Also brought a awesome beach cruiser for the silent auction!"],"lang":["en"]},"normalized_url":["https://facebook.com/photo.php?fbid=10152101665750614"],"retweet_count":[0],"title":["Mobile Uploads - Unisource Solutions San Diego | Facebook"],"url":["https://www.facebook.com/photo.php?fbid=10152101665750614"]},"twitter":{"created_at":"Fri, 30 May 2014 16:50:35 +0000","display_urls":["fb.me/3iqEbKs4d"],"domains":["fb.me"],"filter_level":"medium","id":"472419816020905984","lang":"en","links":["http://fb.me/3iqEbKs4d"],"source":"<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>","text":"Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a... http://t.co/2PFFarmQ7f","user":{"name":"Unisource San Diego","url":"http://www.unisourceit.com","description":"Welcome to Simple.","statuses_count":548,"followers_count":200,"friends_count":802,"screen_name":"unisourcesd","profile_image_url":"http:
 //pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg","lang":"en","time_zone":"Arizona","utc_offset":-25200,"listed_count":0,"id":288513475,"id_str":"288513475","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Wed, 27 Apr 2011 00:16:54 +0000"}}}
-{"demographic":{"gender":"mostly_female"},"interaction":{"schema":{"version":3},"source":"Twitter for BlackBerry","author":{"username":"NeyHottie","name":"12th of June","id":538452542,"avatar":"http://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg","link":"http://twitter.com/NeyHottie","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:42 +0000","received_at":1.4014687027966E9,"content":"598kilos of cocaine bound to brazil ahead of the world cup confiscated.","id":"1e3e81aacf86a300e074606499c78598","link":"http://twitter.com/NeyHottie/status/472420095009251329"},"klout":{"score":24},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"created_at":"Fri, 30 May 2014 16:51:42 +0000","filter_level":"medium","id":"472420095009251329","lang":"en","source":"<a href=\"http://www.twitter.com\" rel=\"nofollow\">Twitter for BlackBerry</a>","text":"598kilos of cocaine bound to brazil ahead of the world cup conf
 iscated.","user":{"name":"12th of June","description":"Not looking for hookups|not tweetin to please","location":"God's Feet","statuses_count":1239,"followers_count":89,"friends_count":167,"screen_name":"NeyHottie","profile_image_url":"http://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg","lang":"en","listed_count":0,"id":538452542,"id_str":"538452542","geo_enabled":true,"verified":false,"favourites_count":16,"created_at":"Tue, 27 Mar 2012 20:17:44 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"sbaynham87","name":"Scott","id":464546734,"avatar":"http://pbs.twimg.com/profile_images/1756396678/image_normal.jpg","link":"http://twitter.com/sbaynham87","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:44 +0000","received_at":1.4014687044283E9,"content":"RT @MercedesAMGF1: GET VOTING! Retweet for #TheMontREALdeal, favourite for #MapleBeLeaf to be our #CanadianGP hashtag! You have 40mins starting... now! #F1","id":"1e3e81aae299a000e0740ce9532cb2c8","link":"http://twitter.com/sbaynham87/status/472420102097604608","mentions":["MercedesAMGF1"],"hashtags":["TheMontREALdeal","MapleBeLeaf","CanadianGP","F1"]},"klout":{"score":12},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420102097604608","retweet":{"text":"GET VOTING! Retweet for #TheMontREALdeal, favourite for #MapleBeLeaf to be our #CanadianGP hashtag! Yo
 u have 40mins starting... now! #F1","id":"472420102097604608","user":{"name":"Scott","statuses_count":29,"followers_count":16,"friends_count":101,"screen_name":"sbaynham87","profile_image_url":"http://pbs.twimg.com/profile_images/1756396678/image_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1756396678/image_normal.jpg","lang":"en","listed_count":0,"id":464546734,"id_str":"464546734","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Sun, 15 Jan 2012 10:39:02 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":231,"created_at":"Fri, 30 May 2014 16:51:44 +0000","mentions":["MercedesAMGF1"],"hashtags":["TheMontREALdeal","MapleBeLeaf","CanadianGP","F1"],"lang":"en"},"retweeted":{"id":"472404651653218305","user":{"name":"MERCEDES AMG F1","url":"http://www.MercedesAMGF1.com","description":"The official Twitter account of the MERCEDES AMG PETRONAS Formula One Team. Tweeting fro
 m Brackley and 20+ cool places around the world.","location":"Brackley, Northants, UK","statuses_count":23650,"followers_count":475777,"friends_count":1532,"screen_name":"MercedesAMGF1","profile_image_url":"http://pbs.twimg.com/profile_images/1881059795/Star_Carbon_Background_normal.gif","profile_image_url_https":"https://pbs.twimg.com/profile_images/1881059795/Star_Carbon_Background_normal.gif","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":31739,"id":26235265,"id_str":"26235265","geo_enabled":false,"verified":true,"favourites_count":1424,"created_at":"Tue, 24 Mar 2009 13:24:04 +0000"},"source":"web","created_at":"Fri, 30 May 2014 15:50:20 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"TenskiSam","name":"TENSKI","id":2530829180,"avatar":"http://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg","link":"http://twitter.com/TenskiSam","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:42 +0000","received_at":1.4014687032737E9,"content":"RT @GaryLineker: Wish Luis Suarez a speedy recovery from knee surgery. Hope he's fit and raring to go for Uruguay's World Cup game against Italy.","id":"1e3e81aacf86a300e0749a7c06803e44","link":"http://twitter.com/TenskiSam/status/472420096804417537","mentions":["GaryLineker"]},"language":{"tag":"en","tag_extended":"en","confidence":99},"twitter":{"id":"472420096804417537","retweet":{"text":"Wish Luis Suarez a speedy recovery from knee surgery. Hope he's fit and raring to go for Uruguay's World Cup game against Italy.","id":"472420096804417537","user":{"name":"TENSKI","description":"we're nothing but atoms 
 undergoing a series of reactions","location":"England","statuses_count":998,"followers_count":567,"friends_count":49,"screen_name":"TenskiSam","profile_image_url":"http://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg","lang":"en","listed_count":0,"id":2530829180,"id_str":"2530829180","geo_enabled":false,"verified":false,"favourites_count":5,"created_at":"Wed, 28 May 2014 20:51:48 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":1296,"created_at":"Fri, 30 May 2014 16:51:42 +0000","mentions":["GaryLineker"],"lang":"en"},"retweeted":{"id":"469467147039940608","user":{"name":"Gary Lineker","description":"Once kicked a ball about. Now talk about kicking a ball about. Still flogging spuds.","statuses_count":11938,"followers_count":2414917,"friends_count":534,"screen_name":"GaryLineker","profile_imag
 e_url":"http://pbs.twimg.com/profile_images/431019030804447233/I-om-WMc_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/431019030804447233/I-om-WMc_normal.jpeg","lang":"en","time_zone":"Hawaii","utc_offset":-36000,"listed_count":6747,"id":471287735,"id_str":"471287735","geo_enabled":false,"verified":true,"favourites_count":16,"created_at":"Sun, 22 Jan 2012 18:07:24 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","created_at":"Thu, 22 May 2014 13:17:44 +0000"}}}
-{"demographic":{"gender":"mostly_male"},"interaction":{"schema":{"version":3},"source":"Twitter for Android","author":{"username":"alexflynn_2","name":"Alex Flynn","id":2187986741,"avatar":"http://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg","link":"http://twitter.com/alexflynn_2","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:45 +0000","received_at":1.4014687062901E9,"content":"@BradyOkeefe5 @Chef_Blazil that and Mr Nguyen on the tennis page are my best contributions to this yearbook","id":"1e3e81aaec22a680e074c542d34807b8","link":"http://twitter.com/alexflynn_2/status/472420109349187584","mentions":["BradyOkeefe5","Chef_Blazil"],"mention_ids":[306041919,164773731]},"klout":{"score":28},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"created_at":"Fri, 30 May 2014 16:51:45 +0000","filter_level":"medium","id":"472420109349187584","in_reply_to_screen_name":"BradyOkeefe5","in_reply_to_statu
 s_id":"472412368295567360","in_reply_to_user_id":"306041919","lang":"en","mention_ids":[306041919,164773731],"mentions":["BradyOkeefe5","Chef_Blazil"],"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","text":"@BradyOkeefe5 @Chef_Blazil that and Mr Nguyen on the tennis page are my best contributions to this yearbook","user":{"name":"Alex Flynn","description":"Do you remember a band called Hüsker Dü?","location":"Tacoma, WA","statuses_count":678,"followers_count":98,"friends_count":90,"screen_name":"alexflynn_2","profile_image_url":"http://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg","lang":"en","listed_count":0,"id":2187986741,"id_str":"2187986741","geo_enabled":false,"verified":false,"favourites_count":2954,"created_at":"Tue, 19 Nov 2013 21:48:47 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"dlvr.it","author":{"username":"iResalacom","name":"iResala.com","id":265571683,"avatar":"http://pbs.twimg.com/profile_images/1271393624/icon_normal.png","link":"http://twitter.com/iResalacom","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:19 +0000","received_at":1.4014686799184E9,"content":"aljazeera: Afghan basketball team beats odds to aim high http://t.co/7Cx3pv1tHh","id":"1e3e81a9f42dad80e0749f492a38b1e2","link":"http://twitter.com/iResalacom/status/472419999005429760"},"klout":{"score":18},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:47 +0000"],"hops":[["http://bit.ly/1kdcDmt","http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high&utm_source=dlvr.it&utm_medium=twitter"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["A team of athletes from Afghanistan is in I
 taly to take part in an international basketball competition. Getting there has been a major..."],"lang":["en"],"opengraph":[{"title":"Afghan basketball team beats odds to aim high","description":"A team of athletes from Afghanistan is in Italy to take part in an international basketball competition. Getting there has been a major...","url":"http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high","type":"video","image":"http://islamicfacebook.com/media/image.php?u=10855&p=90695&t","site_name":"Muslim Social Network"}]},"normalized_url":["http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high"],"retweet_count":[0],"title":["Afghan basketball team beats odds to aim high"],"url":["http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:19 +0000","display_urls":["bit.ly/1kdcDmt"],"domains":["bit.ly"
 ],"filter_level":"medium","id":"472419999005429760","lang":"en","links":["http://bit.ly/1kdcDmt"],"source":"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>","text":"aljazeera: Afghan basketball team beats odds to aim high http://t.co/7Cx3pv1tHh","user":{"name":"iResala.com","url":"http://iResala.com","statuses_count":54724,"followers_count":49,"friends_count":0,"screen_name":"iResalacom","profile_image_url":"http://pbs.twimg.com/profile_images/1271393624/icon_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/1271393624/icon_normal.png","lang":"en","listed_count":1,"id":265571683,"id_str":"265571683","geo_enabled":false,"verified":false,"favourites_count":0,"created_at":"Sun, 13 Mar 2011 19:52:37 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"IFTTT","author":{"username":"AlmendraVelasco","name":"Almendra Velasco","id":2414775619,"avatar":"http://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg","link":"http://twitter.com/AlmendraVelasco","language":"es"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:19 +0000","received_at":1.4014686802702E9,"content":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? #MTV http://t.co/w3wANmHHLC","id":"1e3e81a9f42dad80e074c79ff9b60a6c","link":"http://twitter.com/AlmendraVelasco/status/472420000498974722","hashtags":["MTV"]},"klout":{"score":24},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:44:49 +0000"],"hops":[["http://ift.tt/1gIMpbR"]],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#0
 39;Jackass&#039; alum recover from an epic tricycle stunt."],"keywords":[["justin bieber","steve o","skatepark","tricycle"]],"lang":["en-us"],"opengraph":[{"site_name":"MTV News","title":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More?","url":"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/","image":"http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:9310573?width=1200&height=675","type":"article","description":"Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt."}],"twitter":[{"description":"Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt.","title":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More?","image":"http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:9310573","u
 rl":"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/","card":"summary"}]},"normalized_url":["http://mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark"],"retweet_count":[0],"title":["Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? - MTV"],"url":["http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:19 +0000","display_urls":["ift.tt/1gIMpbR"],"domains":["ift.tt"],"filter_level":"medium","hashtags":["MTV"],"id":"472420000498974722","lang":"en","links":["http://ift.tt/1gIMpbR"],"source":"<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>","text":"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? #MTV http://t.co/w3wANmHHLC","user":{"name":"Almendra Velasco","description":"Viajera musical en un mundo bicolor.","statuses_count":3105,"followers_count":71,"friends_count":87,"screen_name":"AlmendraVelasco","profile_image_url":"http://pbs.twimg.com/profile_imag
 es/449257945402847232/zkCtwRTB_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg","lang":"es","listed_count":1,"id":2414775619,"id_str":"2414775619","geo_enabled":false,"verified":false,"favourites_count":0,"created_at":"Thu, 27 Mar 2014 18:50:30 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for BlackBerry®","author":{"username":"nayaamaliaaa","name":"nαααee♔","id":2439641473,"avatar":"http://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg","link":"http://twitter.com/nayaamaliaaa","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:48 +0000","received_at":1.4014687083943E9,"content":"RT @vidyanroktv: Hehe me too sayang♥{}\"@nayaamaliaaa: Syg bgt dh gua pokoknya ama @vidyanroktv :*:*♥ my little imuutsskuuu:*\"","id":"1e3e81ab08beaa00e07468f7ae629c2e","link":"http://twitter.com/nayaamaliaaa/status/472420118878625792","mentions":["nayaamaliaaa","vidyanroktv","vidyanroktv"],"mention_ids":[2439641473,376752407]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":98},"twitter":{"id":"472420118878625792","retweet":{"text":"Hehe me too sayang♥{}\"@nayaamaliaaa: Syg bgt dh gua pokoknya ama @vidyanroktv :*:*♥ my little imuutsskuuu:*\"","id":"472
 420118878625792","user":{"name":"nαααee♔","description":"follow twitter yang ini aja ya. yang nayaamaliaPG . @nayamaliaa itu ke hack! follback?just mention!:)","statuses_count":1599,"followers_count":58,"friends_count":52,"screen_name":"nayaamaliaaa","profile_image_url":"http://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg","lang":"en","listed_count":0,"id":2439641473,"id_str":"2439641473","geo_enabled":true,"verified":false,"favourites_count":34,"created_at":"Sat, 12 Apr 2014 06:50:10 +0000"},"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>","count":1,"created_at":"Fri, 30 May 2014 16:51:48 +0000","mentions":["nayaamaliaaa","vidyanroktv","vidyanroktv"],"mention_ids":[2439641473,376752407],"lang":"in"},"retweeted":{"id":"472418279999291394","user":{"name":"Viya","description":"STILL RICKYAZHAR♥ God,ple
 ase protect my relationship from girl destroyer!","location":"Peninggilan Village","statuses_count":12619,"followers_count":341,"friends_count":284,"screen_name":"vidyanroktv","profile_image_url":"http://pbs.twimg.com/profile_images/471299174026051584/tLbXvuJb_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471299174026051584/tLbXvuJb_normal.jpeg","lang":"en","time_zone":"Pacific Time (US & Canada)","utc_offset":-25200,"listed_count":0,"id":376752407,"id_str":"376752407","geo_enabled":true,"verified":false,"favourites_count":33,"created_at":"Tue, 20 Sep 2011 12:51:15 +0000"},"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>","created_at":"Fri, 30 May 2014 16:44:29 +0000"}}}
-{"demographic":{"gender":"unisex"},"interaction":{"schema":{"version":3},"source":"web","author":{"username":"AzapTraducoes","name":"Azap Traduções Ofcl.","id":76999737,"avatar":"http://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg","link":"http://twitter.com/AzapTraducoes","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:36 +0000","received_at":1.4014686970102E9,"content":"#FIFAWorldCup #Manaus Hey, English soccer fans! Know what to do in Manaus here: http://t.co/SBmMFCLegj\nTake vitamin B12 to scare mosquitos.","id":"1e3e81aa964dac00e0745206103f8436","link":"http://twitter.com/AzapTraducoes/status/472420071152046080","hashtags":["FIFAWorldCup","Manaus"]},"klout":{"score":16},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[500],"created_at":["Fri, 30 May 2014 16:51:48 +0000"],"hops":[["http://www.manausonline.com"]],"normalized_url":[null],"retweet_count":[0],"title":[null],"url":["h
 ttp://www.manausonline.com"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:36 +0000","display_urls":["manausonline.com"],"domains":["www.manausonline.com"],"filter_level":"medium","hashtags":["FIFAWorldCup","Manaus"],"id":"472420071152046080","lang":"en","links":["http://www.manausonline.com"],"source":"web","text":"#FIFAWorldCup #Manaus Hey, English soccer fans! Know what to do in Manaus here: http://t.co/SBmMFCLegj\nTake vitamin B12 to scare mosquitos.","user":{"name":"Azap Traduções Ofcl.","url":"http://www.azap.com.br","description":"Professional translation and interpreting services for intl events. We are based in Rio de Janeiro, Brazil. Fones, cabines e tradutores especializados.","location":"Rio de Janeiro, Brazil","statuses_count":309,"followers_count":90,"friends_count":848,"screen_name":"AzapTraducoes","profile_image_url":"http://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg","profile_image_url_https":"https://pbs.twimg.
 com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg","lang":"en","time_zone":"Greenland","utc_offset":-7200,"listed_count":0,"id":76999737,"id_str":"76999737","geo_enabled":false,"verified":false,"favourites_count":86,"created_at":"Thu, 24 Sep 2009 17:53:30 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"StephennNielsen","name":"stephen.","id":1091042449,"avatar":"http://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg","link":"http://twitter.com/StephennNielsen","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:48 +0000","received_at":1.4014687088755E9,"content":"@NickIsRadical tennis courts","id":"1e3e81ab08beaa00e074ec78a5dd5e54","link":"http://twitter.com/StephennNielsen/status/472420119537532929","mentions":["NickIsRadical"],"mention_ids":[64299521]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":93},"twitter":{"created_at":"Fri, 30 May 2014 16:51:48 +0000","filter_level":"medium","id":"472420119537532929","in_reply_to_screen_name":"NickIsRadical","in_reply_to_status_id":"472408457531101184","in_reply_to_user_id":"64299521","lang":"fr","mention_ids":[64299521],"mentions":["NickIsRadical"
 ],"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"@NickIsRadical tennis courts","user":{"name":"stephen.","url":"http://Instagram.com/steezaye","description":"Horlick, 18, single.","location":"Photographer | Film maker","statuses_count":2869,"followers_count":341,"friends_count":250,"screen_name":"StephennNielsen","profile_image_url":"http://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":0,"id":1091042449,"id_str":"1091042449","geo_enabled":false,"verified":false,"favourites_count":996,"created_at":"Tue, 15 Jan 2013 04:35:33 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPad","author":{"username":"VFagherazzi","name":"valentin fagherazzi ","id":2545563593,"avatar":"http://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg","link":"http://twitter.com/VFagherazzi","language":"fr"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:10 +0000","received_at":1.4014686702916E9,"content":"RT @MotoGP: #MotoGP @ValeYellow46 Rossi’s 300th Grand Prix weekend underway\nhttp://t.co/p7IoMfyiIL http://t.co/2IQ0WxPCER","id":"1e3e81a99e59a300e074e3d14c4173d0","link":"http://twitter.com/VFagherazzi/status/472419958778261504","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"hashtags":["MotoGP"]},"language":{"tag":"en","tag_extended":"en","confidence":97},"links":{"code":[200],"created_at":["Fri, 30 May 2014 15:27:37 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["The visit to Mugello is always special for V
 alentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor."],"keywords":[["MotoGP World Championship","MotoGP","Moto2","Moto3","Official Website","motogp.com","Live Video","Live Timing","Live Experience","High Resolution","VideoPass","Valentino Rossi","Marc Marquez","Honda","Jorge Lorenzo","Motorbike","race tickets","paddock girls","vip village","Calendar","after the flag","no spoiler","Time Schedule","News","RSS","BMW","Tissot","Aperol","Bridgestone","Dani Pedrosa","Casey Stoner","Toni Elias"]],"lang":["en"],"opengraph":[{"image":"http://photos.motogp.com/2014/05/30/46rossi_ds-_s1d9404_preview_big_169.jpg","title":"motogp.com · Rossi’s 300th Grand Prix weekend underway","description":"The visit to Mugello is always special for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor."}],"twitter":[{"card":"summary","site":"@motogp","url":"
 http://www.motogp.com/en/news/2014/Rossis 300th Grand Prix weekend underway","title":"motogp.com · Rossi’s 300th Grand Prix weekend underway","description":"The visit to Mugello is always special for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor.","image":"http://photos.motogp.com/2014/05/30/46rossi_ds-_s1d9404_preview_big_169.jpg"}]},"normalized_url":["http://motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway"],"retweet_count":[0],"title":["motogp.com · Rossi’s 300th Grand Prix weekend underway"],"url":["http://www.motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway"]},"twitter":{"id":"472419958778261504","retweet":{"text":"#MotoGP @ValeYellow46 Rossi’s 300th Grand Prix weekend underway\nhttp://t.co/p7IoMfyiIL http://t.co/2IQ0WxPCER","id":"472419958778261504","user":{"name":"valentin fagherazzi ","statuses_count":11,"followers_count":3,"friends_count":40,"screen_nam
 e":"VFagherazzi","profile_image_url":"http://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg","lang":"fr","listed_count":0,"id":2545563593,"id_str":"2545563593","geo_enabled":false,"verified":false,"favourites_count":11,"created_at":"Tue, 13 May 2014 18:49:58 +0000"},"source":"<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>","count":410,"created_at":"Fri, 30 May 2014 16:51:10 +0000","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"links":["http://www.motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway"],"display_urls":["motogp.com/en/news/2014/R…"],"domains":["www.motogp.com"],"hashtags":["MotoGP"],"media":[{"id":472399586619686913,"id_str":"472399586619686913","media_url":"http://pbs.twimg.com/media/Bo5M69CCAAEvzfj.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5M69CCAAEvzfj.jpg","url
 ":"http://t.co/2IQ0WxPCER","display_url":"pic.twitter.com/2IQ0WxPCER","expanded_url":"http://twitter.com/MotoGP/status/472399587861610496/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"472399587861610496","user":{"name":"MotoGP™","url":"http://www.motogp.com","description":"Official Twitter Feed of the MotoGP™ World Championship","location":"All around the world","statuses_count":15839,"followers_count":945262,"friends_count":403,"screen_name":"MotoGP","profile_image_url":"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":7411,"id":14082692,"id_str":"14082692","geo_enabled":true,"verified":true,"favour
 ites_count":3,"created_at":"Wed, 05 Mar 2008 11:19:05 +0000"},"source":"web","created_at":"Fri, 30 May 2014 15:30:13 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"web","author":{"username":"ADMCascardo","name":"Jorge Luiz Cascardo","id":71728158,"avatar":"http://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg","link":"http://twitter.com/ADMCascardo","language":"pt"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:25 +0000","received_at":1.4014686856191E9,"content":"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers(@LAClippers) por US$ 2 bi http://t.co/hR8ZroTXbW via @admnews #NBA","id":"1e3e81aa2d66a480e074c9c330a1aae8","link":"http://twitter.com/ADMCascardo/status/472420022376493056","mentions":["LAClippers","admnews"],"mention_ids":[19564719,20450814],"hashtags":["NBA"]},"klout":{"score":31},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:51:50 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["A oferta de Ballmer superou a
  de dois grupos; um deles, que ofereceu 1,6 bilhão de dólares, era liderado pelo magnata da mídia David Geffen e incluía a apresentadora de TV Oprah Winfrey e o presidente-executivo da Oracle, Larry Ellison"],"lang":["pt"],"opengraph":[{"title":"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers por US$ 2 bi","type":"article","image":"http://www.administradores.com.br/_assets/themes/default/img/adm_facebook.png","url":"http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/","site_name":"Administradores.com","description":"A oferta de Ballmer superou a de dois grupos; um deles, que ofereceu 1,6 bilhão de dólares, era liderado pelo magnata da mídia David Geffen e incluía a apresentadora de TV Oprah Winfrey e o presidente-executivo da Oracle, Larry Ellison"}]},"normalized_url":["http://administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-p
 or-us-2-bi/88597"],"retweet_count":[0],"title":["Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers por US$ 2 bi - Notícias - Negócios - Administradores.com"],"url":["http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/"]},"twitter":{"created_at":"Fri, 30 May 2014 16:51:25 +0000","display_urls":["administradores.com.br/noticias/negoc…"],"domains":["www.administradores.com.br"],"filter_level":"medium","hashtags":["NBA"],"id":"472420022376493056","lang":"pt","links":["http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/"],"mention_ids":[19564719,20450814],"mentions":["LAClippers","admnews"],"source":"web","text":"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers(@LAClippers) por US$ 2 bi http://t.co/hR8ZroTXbW via @admnews #NBA","user":{"name":"Jorge Luiz Cascardo","description":"Oficialmente Admi
 nistrador - CRA/RJ 20-83064","location":"Rio de Janeiro - Brasil","statuses_count":2894,"followers_count":534,"friends_count":722,"screen_name":"ADMCascardo","profile_image_url":"http://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg","lang":"pt","time_zone":"Brasilia","utc_offset":-10800,"listed_count":22,"id":71728158,"id_str":"71728158","geo_enabled":false,"verified":false,"favourites_count":106,"created_at":"Sat, 05 Sep 2009 04:38:11 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"GavynnGrayson","name":"Gavynn","id":1676503957,"avatar":"http://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg","link":"http://twitter.com/GavynnGrayson","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:09 +0000","received_at":1.4014687299968E9,"content":"RT @emmy_xo_: I play rugby","id":"1e3e81abd104a280e074ad11b9a16050","link":"http://twitter.com/GavynnGrayson/status/472420209190395904","mentions":["emmy_xo_"]},"klout":{"score":33},"language":{"tag":"en","tag_extended":"en","confidence":94},"twitter":{"id":"472420209190395904","retweet":{"text":"I play rugby","id":"472420209190395904","user":{"name":"Gavynn","description":"Real girls arent perfect and perfect girls arent real","statuses_count":5202,"followers_count":205,"friends_count":370,"screen_name":"GavynnGrayson","profile_image_url":"http://pbs.twimg.com/profile_images/471761912498511872/pAyT
 A7KB_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg","lang":"en","listed_count":0,"id":1676503957,"id_str":"1676503957","geo_enabled":true,"verified":false,"favourites_count":1665,"created_at":"Fri, 16 Aug 2013 19:29:49 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":1,"created_at":"Fri, 30 May 2014 16:52:09 +0000","mentions":["emmy_xo_"],"lang":"en"},"retweeted":{"id":"472420166681120768","user":{"name":"Emily Medeiros☀️","description":"BearCreek","statuses_count":3126,"followers_count":402,"friends_count":370,"screen_name":"emmy_xo_","profile_image_url":"http://pbs.twimg.com/profile_images/471446298508668929/yPAmhOWo_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471446298508668929/yPAmhOWo_normal.jpeg","lang":"en","listed_count":0,"id":610813667,"id_str":"610813667","geo_enabled":false,"verified":false,"favourite
 s_count":3359,"created_at":"Sun, 17 Jun 2012 13:31:19 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","created_at":"Fri, 30 May 2014 16:51:59 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"twitterfeed","author":{"username":"photoshop00000","name":"photoshop","id":1390693447,"avatar":"http://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg","link":"http://twitter.com/photoshop00000","language":"ru"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:08 +0000","received_at":1.4014687288115E9,"content":"#news 5 Japan players to watch at the World Cup: TOKYO (AP) — Keisuke Honda and Shinji ... http://t.co/E69JtIx4hf http://t.co/6Si3P3zzT5","id":"1e3e81abc77aac00e0746475f2c2fcd6","link":"http://twitter.com/photoshop00000/status/472420203918159872","hashtags":["news"]},"klout":{"score":40},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200,200],"created_at":["Fri, 30 May 2014 16:52:10 +0000","Thu, 29 May 2014 23:46:51 +0000"],"hops":[["http://yhoo.it/1hG6j2t","https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html?utm_medium=twitter&utm_s
 ource=twitterfeed"],["http://www.xn--e1afvigz.su","http://online.winner.com/promoRedirect?member=cashmoneyr&campaign=DEFAULT&channel=DEFAULT&zone=52299224&lp=52619734"]],"meta":{"charset":["UTF-8","UTF-8"],"content_type":["text/html","text/html"],"lang":["en-gb","en-us"]},"normalized_url":["https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html","http://poker.winner.com"],"retweet_count":[0,0],"title":["5 Japan players to watch at the World Cup","Play to Win at Winner.com Online Poker Room - Winner.com"],"url":["https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html","http://poker.winner.com/"]},"twitter":{"created_at":"Fri, 30 May 2014 16:52:08 +0000","display_urls":["yhoo.it/1hG6j2t","чипсет.su"],"domains":["yhoo.it","www.xn--e1afvigz.su"],"filter_level":"none","hashtags":["news"],"id":"472420203918159872","lang":"en","links":["http://yhoo.it/1hG6j2t","http://www.xn--e1afvigz.su"],"possibly_sensitive":true,"source":"<a href=\"http://twitte
 rfeed.com\" rel=\"nofollow\">twitterfeed</a>","text":"#news 5 Japan players to watch at the World Cup: TOKYO (AP) — Keisuke Honda and Shinji ... http://t.co/E69JtIx4hf http://t.co/6Si3P3zzT5","user":{"name":"photoshop","url":"http://xn--e1afvigz.su/","statuses_count":244053,"followers_count":436,"friends_count":1243,"screen_name":"photoshop00000","profile_image_url":"http://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg","lang":"ru","time_zone":"Abu Dhabi","utc_offset":14400,"listed_count":8,"id":1390693447,"id_str":"1390693447","geo_enabled":false,"verified":false,"favourites_count":0,"created_at":"Mon, 29 Apr 2013 23:17:43 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"twitterfeed","author":{"username":"dnbeatcreative","name":"downbeat","id":55691156,"avatar":"http://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg","link":"http://twitter.com/dnbeatcreative","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:10 +0000","received_at":1.401468730409E9,"content":"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/... http://t.co/7bpUMjROTM","id":"1e3e81abda8da900e0742981237189ba","link":"http://twitter.com/dnbeatcreative/status/472420210687758337"},"klout":{"score":31},"language":{"tag":"en","tag_extended":"en","confidence":99},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:46:06 +0000"],"hops":[["http://bit.ly/1mzrWEd","http://www.techmeme.com/140530/p17#a140530p17"]],"meta":{"charset":["CP1252"],"content_type":["text/html"],"description":["The essential tech news of the moment. Technology's news site of 
 record. Not for dummies."],"lang":["unknown"],"opengraph":[{"site_name":"Techmeme","type":"article","title":"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere","description":"This story, by Rolfe Winkler / Wall Street Journal, appeared on Techmeme.","image":"http://www.techmeme.com/img/techmeme_sq328.png"}]},"normalized_url":["http://techmeme.com/140530/p17"],"retweet_count":[0],"title":["Techmeme: Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/Wall Street Journal)"],"url":["http://www.techmeme.com/140530/p17"]},"twitter":{"created_at":"Fri, 30 May 2014 16:52:10 +0000","display_urls":["bit.ly/1mzrWEd"],"domains":["bit.ly"],"filter_level":"medium","id":"472420210687758337","lang":"en","links":["http://bit.ly/1mzrWEd"],"source":"<a href=\"http://twitterfeed.com\" rel=\"nofollow\">twitterfeed</a>","text":"Google's Motorola to close down Texas factory this year, will continue maki
 ng Moto X elsewhere (Rolfe Winkler/... http://t.co/7bpUMjROTM","user":{"name":"downbeat","description":"We're a Conversation Marketing Agency in the heart of Music City. Think CMO with an emphasis on New Media!","location":"Nashville, TN","statuses_count":13528,"followers_count":1549,"friends_count":1860,"screen_name":"dnbeatcreative","profile_image_url":"http://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":32,"id":55691156,"id_str":"55691156","geo_enabled":false,"verified":false,"favourites_count":1,"created_at":"Fri, 10 Jul 2009 23:03:01 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"SweetLaly","name":"Laly #2 ⭐","id":42172919,"avatar":"http://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg","link":"http://twitter.com/SweetLaly","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:12 +0000","received_at":1.4014687326712E9,"content":"Watchin tennis again Raonić vs Simon 👌","id":"1e3e81abeda0a600e074f94f5be6ddea","link":"http://twitter.com/SweetLaly/status/472420220519579648"},"klout":{"score":52},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"created_at":"Fri, 30 May 2014 16:52:12 +0000","filter_level":"medium","id":"472420220519579648","lang":"ro","source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","text":"Watchin tennis again Raonić vs Simon 👌","user":{"name":"Laly #2 ⭐","url":"http://theonlythingicanremember.tumblr.com/","description":"Need MUSIC to l
 ive! I'm so southern so I feel the cold ❄️⭐️ Football lover ⚽ Cruzada, Red Devil, Rossoneri & Borussen ⚽","location":"Happyland ✌⭐","statuses_count":203928,"followers_count":774,"friends_count":666,"screen_name":"SweetLaly","profile_image_url":"http://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg","lang":"en","time_zone":"Santiago","utc_offset":-14400,"listed_count":26,"id":42172919,"id_str":"42172919","geo_enabled":true,"verified":false,"favourites_count":9255,"created_at":"Sun, 24 May 2009 05:56:59 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"dlvr.it","author":{"username":"cameroondaily","name":"cameroon daily","id":258614852,"avatar":"http://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg","link":"http://twitter.com/cameroondaily","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:10 +0000","received_at":1.4014687305187E9,"content":"5 Cameroon players to watch at the World Cup: … attacking pace are vital to Cameroon's ambitions. Many Premier …... http://t.co/5NM6tQH8Zr","id":"1e3e81abda8da900e07488b315ce6a4e","link":"http://twitter.com/cameroondaily/status/472420211065229312"},"klout":{"score":19},"language":{"tag":"en","tag_extended":"en","confidence":99},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:52:11 +0000"],"hops":[["http://dlvr.it/5qc4BW","http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ&utm_source=dlvr.it&utm_medium=twitter"]],"meta":{"charset":["UTF-8"],"content_type":["text/html
 "],"lang":["en-us"]},"normalized_url":["http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ"],"retweet_count":[0],"title":["5 Cameroon players to watch at the World Cup - World News Report"],"url":["http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ"]},"twitter":{"created_at":"Fri, 30 May 2014 16:52:10 +0000","display_urls":["dlvr.it/5qc4BW"],"domains":["dlvr.it"],"filter_level":"medium","id":"472420211065229312","lang":"en","links":["http://dlvr.it/5qc4BW"],"source":"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>","text":"5 Cameroon players to watch at the World Cup: … attacking pace are vital to Cameroon's ambitions. Many Premier …... http://t.co/5NM6tQH8Zr","user":{"name":"cameroon daily","url":"http://www.cameroondaily.org","description":"Follow us to get all breaking news,latest cameroon ads,real estate,jobs  etc.Find all Cameroon related events worldwide on our website","location":"Yaou
 nde-Cameroon","statuses_count":3417,"followers_count":87,"friends_count":30,"screen_name":"cameroondaily","profile_image_url":"http://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg","lang":"en","time_zone":"West Central Africa","utc_offset":3600,"listed_count":2,"id":258614852,"id_str":"258614852","geo_enabled":true,"verified":false,"favourites_count":0,"created_at":"Mon, 28 Feb 2011 02:58:56 +0000"}}}
-{"demographic":{"gender":"mostly_male"},"interaction":{"schema":{"version":3},"source":"Twitter for Android","author":{"username":"HunterA0514","name":"Hunter","id":1684509404,"avatar":"http://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg","link":"http://twitter.com/HunterA0514","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:14 +0000","received_at":1.401468734885E9,"content":"RT @TweetLlkeAGuy: Volleyball butts &gt;","id":"1e3e81ac00b3a300e07439925adbe524","link":"http://twitter.com/HunterA0514/status/472420228031590400","mentions":["TweetLlkeAGuy"]},"klout":{"score":38},"language":{"tag":"en","tag_extended":"en","confidence":95},"twitter":{"id":"472420228031590400","retweet":{"text":"Volleyball butts &gt;","id":"472420228031590400","user":{"name":"Hunter","description":"higley baseball jv all star","statuses_count":3066,"followers_count":133,"friends_count":143,"screen_name":"HunterA0514","profile_image_url":"http://pbs.twimg.com/profi
 le_images/459871104681537536/Pu-swn88_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg","lang":"en","listed_count":0,"id":1684509404,"id_str":"1684509404","geo_enabled":false,"verified":false,"favourites_count":1759,"created_at":"Tue, 20 Aug 2013 00:23:29 +0000"},"source":"<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>","count":73,"created_at":"Fri, 30 May 2014 16:52:14 +0000","mentions":["TweetLlkeAGuy"],"lang":"en"},"retweeted":{"id":"472413430344089600","user":{"name":"Tweet Like A Guy","url":"http://theonlinemancave.com","description":"Tweets only a guy could retweet.","location":"Join the Mancave","statuses_count":5359,"followers_count":179972,"friends_count":0,"screen_name":"TweetLlkeAGuy","profile_image_url":"http://pbs.twimg.com/profile_images/378800000354569384/234c19531f582f4fb43acc256d0f3ba2_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_imag
 es/378800000354569384/234c19531f582f4fb43acc256d0f3ba2_normal.png","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":152,"id":899461928,"id_str":"899461928","geo_enabled":false,"verified":false,"favourites_count":6,"created_at":"Tue, 23 Oct 2012 07:54:38 +0000"},"source":"<a href=\"http://www.socialoomph.com\" rel=\"nofollow\">SocialOomph</a>","created_at":"Fri, 30 May 2014 16:25:13 +0000"}}}
-{"demographic":{"gender":"mostly_male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"rsheiner","name":"Ryan Sheiner","id":261076056,"avatar":"http://pbs.twimg.com/profile_images/2341475014/image_normal.jpg","link":"http://twitter.com/rsheiner","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:15 +0000","received_at":1.4014687355899E9,"content":"RT @sh130toll: This time next week, #XGames will have taken over #Austin!! @XGamesAustin http://t.co/eNQdf7JdDv","id":"1e3e81ac0a3ca980e074a5971ce35bd8","link":"http://twitter.com/rsheiner/status/472420231462531073","mentions":["XGamesAustin","sh130toll"],"mention_ids":[1392537247],"hashtags":["XGames","Austin"]},"klout":{"score":23},"language":{"tag":"en","tag_extended":"en","confidence":97},"twitter":{"id":"472420231462531073","retweet":{"text":"This time next week, #XGames will have taken over #Austin!! @XGamesAustin http://t.co/eNQdf7JdDv","id":"472420231462531073","user":{
 "name":"Ryan Sheiner","statuses_count":2507,"followers_count":61,"friends_count":112,"screen_name":"rsheiner","profile_image_url":"http://pbs.twimg.com/profile_images/2341475014/image_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2341475014/image_normal.jpg","lang":"en","listed_count":0,"id":261076056,"id_str":"261076056","geo_enabled":true,"verified":false,"favourites_count":625,"created_at":"Sat, 05 Mar 2011 05:23:05 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":9,"created_at":"Fri, 30 May 2014 16:52:15 +0000","mentions":["XGamesAustin","sh130toll"],"mention_ids":[1392537247],"hashtags":["XGames","Austin"],"media":[{"id":472360294661251072,"id_str":"472360294661251072","media_url":"http://pbs.twimg.com/media/Bo4pL3FIYAAPxDH.png","media_url_https":"https://pbs.twimg.com/media/Bo4pL3FIYAAPxDH.png","url":"http://t.co/eNQdf7JdDv","display_url":"pic.twitter.com/eNQdf7JdDv","expanded_url":"
 http://twitter.com/sh130toll/status/472360295747170305/photo/1","type":"photo","sizes":{"medium":{"w":599,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":337,"h":125,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}}}],"lang":"en"},"retweeted":{"id":"472360295747170305","user":{"name":"SH 130","url":"http://mysh130.com","description":"A better way between Austin and San Antonio. A new choice for Central Texas motorists. The fastest way to Circuit of the Americas. #CanYouLoveARoad","location":"Central Texas","statuses_count":1190,"followers_count":617,"friends_count":387,"screen_name":"sh130toll","profile_image_url":"http://pbs.twimg.com/profile_images/451832502005403648/IBMl8_Mz_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/451832502005403648/IBMl8_Mz_normal.png","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":17,"id":813811567,"id_str":"813811567","geo_enabled":false,"verifie
 d":false,"favourites_count":1065,"created_at":"Sun, 09 Sep 2012 20:11:32 +0000"},"source":"web","created_at":"Fri, 30 May 2014 12:54:05 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"hernanl29","name":"HL VR46","id":164058521,"avatar":"http://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg","link":"http://twitter.com/hernanl29","language":"es"},"type":"twitter","created_at":"Fri, 30 May 2014 16:51:35 +0000","received_at":1.4014686959523E9,"content":"RT @MotoGP: #MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"1e3e81aa8cc4a580e0745f400262dbce","link":"http://twitter.com/hernanl29/status/472420066110500865","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"hashtags":["MotoGP"]},"klout":{"score":27},"language":{"tag":"en","tag_extended":"en","confidence":98},"links":{"code":[200],"created_at":["Fri, 30 May 2014 16:22:57 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text/html"],"description":["The official website of MotoGP, Moto2 and Mo
 to3, includes Live Video coverage, premium content and all the latest news."],"keywords":[["MotoGP World Championship","MotoGP","Moto2","Moto3","Official Website","motogp.com","Live Video","Live Timing","Live Experience","High Resolution","VideoPass","Valentino Rossi","Marc Marquez","Honda","Jorge Lorenzo","Motorbike","race tickets","paddock girls","vip village","Calendar","after the flag","no spoiler","Time Schedule","News","RSS","BMW","Tissot","Aperol","Bridgestone","Dani Pedrosa","Casey Stoner","Toni Elias"]],"lang":["en"],"opengraph":[{"title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."}],"twitter":[{"card":"summary","site":"@motogp","url":"http://www.motogp.com/en/photos/latest photos","title":"motogp.com · Latest Photos","description":"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news."}]
 },"normalized_url":["http://motogp.com/en/photos/latest+photos"],"retweet_count":[0],"title":["motogp.com · Latest Photos"],"url":["http://www.motogp.com/en/photos/latest+photos"]},"twitter":{"id":"472420066110500865","retweet":{"text":"#MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI","id":"472420066110500865","user":{"name":"HL VR46","description":"VR46 fan","location":"Venezuela","statuses_count":2696,"followers_count":272,"friends_count":691,"screen_name":"hernanl29","profile_image_url":"http://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg","lang":"es","time_zone":"Caracas","utc_offset":-16200,"listed_count":3,"id":164058521,"id_str":"164058521","geo_enabled":false,"verified":false,"favourites_count":81,"created_at":"Wed, 07 Jul 2010 23:18:59 +0000"},"source":"
 <a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":476,"created_at":"Fri, 30 May 2014 16:51:35 +0000","mentions":["ValeYellow46","MotoGP"],"mention_ids":[386420143],"links":["http://www.motogp.com/en/photos/latest+photos"],"display_urls":["motogp.com/en/photos/late…"],"domains":["www.motogp.com"],"hashtags":["MotoGP"],"media":[{"id":472412807162769408,"id_str":"472412807162769408","media_url":"http://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","media_url_https":"https://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg","url":"http://t.co/vynRa1k4zI","display_url":"pic.twitter.com/vynRa1k4zI","expanded_url":"http://twitter.com/MotoGP/status/472412808504967168/photo/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}],"filter_level":"low","lang":"en"},"retweeted":{"id":"472412808504967168","user":{"name":"Mot
 oGP™","url":"http://www.motogp.com","description":"Official Twitter Feed of the MotoGP™ World Championship","location":"All around the world","statuses_count":15839,"followers_count":945261,"friends_count":403,"screen_name":"MotoGP","profile_image_url":"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png","lang":"en","time_zone":"London","utc_offset":3600,"listed_count":7411,"id":14082692,"id_str":"14082692","geo_enabled":true,"verified":true,"favourites_count":3,"created_at":"Wed, 05 Mar 2008 11:19:05 +0000"},"source":"web","created_at":"Fri, 30 May 2014 16:22:45 +0000"}}}
-{"demographic":{"gender":"male"},"interaction":{"schema":{"version":3},"source":"Twitter for iPhone","author":{"username":"EscofolioDotCom","name":"Carlos Escobar","id":21428353,"avatar":"http://pbs.twimg.com/profile_images/81857694/Mguin_normal.jpg","link":"http://twitter.com/EscofolioDotCom","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:21 +0000","received_at":1.4014687421976E9,"content":"RT @chrispape: Make your picks for #TBTOpen $500,000 winner take all basketball hunger games.  #tbt4 mypicks - Barstool philly, Suds, Showtime and Eberlein","id":"1e3e81ac4375a080e074fd2fb55fee7e","link":"http://twitter.com/EscofolioDotCom/status/472420260210286592","mentions":["chrispape"],"hashtags":["TBTOpen","tbt4"]},"klout":{"score":23},"language":{"tag":"en","tag_extended":"en","confidence":99},"twitter":{"id":"472420260210286592","retweet":{"text":"Make your picks for #TBTOpen $500,000 winner take all basketball hunger games.  #tbt4 mypicks - Barstool philly, Suds,
  Showtime and Eberlein","id":"472420260210286592","user":{"name":"Carlos Escobar","description":"I make things for the internet","location":"Quincy, Massachusetts","statuses_count":641,"followers_count":143,"friends_count":215,"screen_name":"EscofolioDotCom","profile_image_url":"http://pbs.twimg.com/profile_images/81857694/Mguin_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/81857694/Mguin_normal.jpg","lang":"en","time_zone":"Central Time (US & Canada)","utc_offset":-18000,"listed_count":13,"id":21428353,"id_str":"21428353","geo_enabled":true,"verified":false,"favourites_count":30,"created_at":"Fri, 20 Feb 2009 20:08:44 +0000"},"source":"<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>","count":1,"created_at":"Fri, 30 May 2014 16:52:21 +0000","mentions":["chrispape"],"hashtags":["TBTOpen","tbt4"],"filter_level":"low","lang":"en"},"retweeted":{"id":"472417617568079872","user":{"name":"Chris Pape","url":"http://www.gen
 uineinteractive.com","description":"Founder, Executive Creative Director at Genuine","location":"ÜT: 41.287813,-72.527655","statuses_count":1124,"followers_count":3598,"friends_count":2806,"screen_name":"chrispape","profile_image_url":"http://pbs.twimg.com/profile_images/392850661/Cpape_Headshot_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/392850661/Cpape_Headshot_normal.jpg","lang":"en","time_zone":"Eastern Time (US & Canada)","utc_offset":-14400,"listed_count":139,"id":24547356,"id_str":"24547356","geo_enabled":true,"verified":false,"favourites_count":49,"created_at":"Sun, 15 Mar 2009 16:42:28 +0000"},"source":"web","created_at":"Fri, 30 May 2014 16:41:51 +0000"}}}
-{"interaction":{"schema":{"version":3},"source":"Instagram","author":{"username":"DirtHammers","name":"Dirt Hammers.com","id":246593057,"avatar":"http://pbs.twimg.com/profile_images/460581097060196352/f_G1s6vl_normal.jpeg","link":"http://twitter.com/DirtHammers","language":"en"},"type":"twitter","created_at":"Fri, 30 May 2014 16:52:23 +0000","received_at":1.4014687435894E9,"content":"Wicked looking track ironmanmx preview by jedi25 #mx #motocross #moto http://t.co/JSrrQS2JXs","id":"1e3e81ac5687ad80e074bc8dc2a4d122","link":"http://twitter.com/DirtHammers/status/47242026

<TRUNCATED>

[32/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
index 5b941cf..8b0db2a 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/youtube_datasift_json.txt
@@ -1,7 +1,7 @@
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/justmekkb\",\"name\":\"justmekkb\",\"username\":\"justmekkb\"},\"content\":\"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \\nProvince!\",\"contenttype\":\"html\",\"created_at\":\"Sun, 23 Mar 2014 13:06:10 +0000\",\"id\":\"1e3b28be72e0ad00e072d00a0815e3b6\",\"link\":\"http://www.youtube.com/all_comments?v=30FuTYnnXmM\",\"received_at\":4743642843909958769,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Apache Snow II: ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":98,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/justmekkb\",\"name\":\"justmekkb\",\"username\":\"justmekkb\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=30FuTYnnXmM\",\"content\":\"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \\nProvince!\",\"contenttype\":\"html\",\"crawled\":\"Su
 n, 30 Mar 2014 13:49:36 +0000\",\"created_at\":\"Sun, 23 Mar 2014 13:06:10 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1571681202\",\"lang\":\"en\",\"langid\":22,\"link\":\"http://www.youtube.com/all_comments?v=30FuTYnnXmM\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12of13o5wixs3qde22ixfnxytfjgftpi04\",\"siteid\":\"youtube\",\"title\":\"Apache Snow II: ...\",\"type\":\"comment\",\"videoid\":\"5cuajavn6pjal18jnh1sp3\",\"videolink\":\"http://www.youtube.com/watch?v=30FuTYnnXmM\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/redman1808\",\"name\":\"REDMAN1808\",\"username\":\"redman1808\"},\"content\":\"Apache Knife Graduation 3-23-2014\\nwww.Apache-Knife.com\",\"contenttype\":\"html\",\"created_at\":\"Tue, 25 Mar 2014 23:29:01 +0000\",\"id\":\"1e3b4753edb9ac80e0722abeeb9c452c\",\"link\":\"http://www.youtube.com/all_comments?v=W0vcwufX9OM\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Apache Knife ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/redman1808\",\"name\":\"REDMAN1808\",\"username\":\"redman1808\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=W0vcwufX9OM\",\"content\":\"Apache Knife Graduation 3-23-2014\\nwww.Apache-Knife.com\",\"contenttype\":\"html\",\"crawled\":\"Wed, 02 Apr 2014 00:23:13 +0000\",\"created_at\":\"Tue, 25 Mar 2014 23:29:01 +0000\
 ",\"domain\":\"www.youtube.com\",\"id\":\"1573452031\",\"lang\":\"de\",\"langid\":31,\"link\":\"http://www.youtube.com/all_comments?v=W0vcwufX9OM\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12ad53pimmefroo504ccbkitvjmzft4lwg0k\",\"siteid\":\"youtube\",\"title\":\"Apache Knife ...\",\"type\":\"comment\",\"videoid\":\"7cdig0ofjq8ls18jv5ftid\",\"videolink\":\"http://www.youtube.com/watch?v=W0vcwufX9OM\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/zja4ri3hkdviwos3sv_lsg\",\"name\":\"zja4ri3hkdviwos3sv_lsg\",\"username\":\"zja4ri3hkdviwos3sv_lsg\"},\"content\":\"Grande Apache, davvero un gran colpo ;)\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014 16:18:25 +0000\",\"id\":\"1e3b5cb6c3a5ae80e072504981b43950\",\"link\":\"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Grande Apache, ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"it\",\"tag_extended\":\"it\"},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/zja4ri3hkdviwos3sv_lsg\",\"name\":\"zja4ri3hkdviwos3sv_lsg\",\"username\":\"zja4ri3hkdviwos3sv_lsg\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ\",\"content\":\"Grande Apache, davvero un gran colpo ;)\",\"contenttype\":\"html\",\"crawled\":\"Fri, 28 Mar 2014 13:44:20 +0000\",\"created_at\":\"Thu, 27 Mar 2014 16:18:25 +0000\",\"d
 omain\":\"www.youtube.com\",\"id\":\"1570252147\",\"lang\":\"it\",\"langid\":42,\"link\":\"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12kud2xxqy1vdb1a22twvzh0lmatvjet\",\"siteid\":\"youtube\",\"title\":\"Grande Apache, ...\",\"type\":\"comment\",\"videoid\":\"5n634p8c4591818k1ov5g5\",\"videolink\":\"http://www.youtube.com/watch?v=bsCvwYmwwiQ\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/cejowdum4lewo0p3dsv2ya\",\"name\":\"cejowdum4lewo0p3dsv2ya\",\"username\":\"cejowdum4lewo0p3dsv2ya\"},\"content\":\"Grande apache! Dove abiti?\",\"contenttype\":\"html\",\"created_at\":\"Thu, 27 Mar 2014 16:25:30 +0000\",\"id\":\"1e3b5cc698c3a900e072da410d1cba80\",\"link\":\"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw\",\"received_at\":4743644290448849319,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Grande apache! Dove ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":96,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"sentiment\":0},\"title\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/cejowdum4lewo0p3dsv2ya\",\"name\":\"cejowdum4lewo0p3dsv2ya\",\"username\":\"cejowdum4lewo0p3dsv2ya\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw\",\"content\":\"Grande apache! Dove abiti?\",\"contenttype\":\"html\",\"crawled\":\"
 Thu, 03 Apr 2014 13:37:42 +0000\",\"created_at\":\"Thu, 27 Mar 2014 16:25:30 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1574460814\",\"lang\":\"unknown\",\"link\":\"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z133eviq3rquwfwp004ciptogzfwxzvy4w00k\",\"siteid\":\"youtube\",\"title\":\"Grande apache! Dove ...\",\"type\":\"comment\",\"videoid\":\"6ggq0sgl06i3318k44l1tr\",\"videolink\":\"http://www.youtube.com/watch?v=KJ2ovwkoFVw\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/tsunx4\",\"name\":\"tsunx4\",\"username\":\"tsunx4\"},\"content\":\"Sinnis Apache 125 - китайская копия Suzuki DR125\",\"contenttype\":\"html\",\"created_at\":\"Sun, 30 Mar 2014 20:53:00 +0000\",\"id\":\"1e3b84d47551ae00e07213c00f9208ca\",\"link\":\"http://www.youtube.com/all_comments?v=5mNtz3z-LwM\",\"received_at\":4743645206479298049,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Sinnis Apache 125 - ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":52,\"tag\":\"ru\",\"tag_extended\":\"ru\"},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/tsunx4\",\"name\":\"tsunx4\",\"username\":\"tsunx4\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=5mNtz3z-LwM\",\"content\":\"Sinnis Apache 125 - китайская копия Suzuki DR125\",\"contenttype\":\"html\",\"crawled\":\"Sun, 06 Apr 2014 02:17:33 +0000\",\"created_at\":\"Sun, 30 Mar 2014 20:53:00 +0000\",\"domain\":\
 "www.youtube.com\",\"id\":\"1575948688\",\"lang\":\"ru\",\"langid\":65,\"link\":\"http://www.youtube.com/all_comments?v=5mNtz3z-LwM\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z13ztrsy2kmtxrxqp04cg5hqjrqjczdjbj0\",\"siteid\":\"youtube\",\"title\":\"Sinnis Apache 125 - ...\",\"type\":\"comment\",\"videoid\":\"6a4b6ht4qnqg518k8buu8c\",\"videolink\":\"http://www.youtube.com/watch?v=5mNtz3z-LwM\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/thepaulobraveheart\",\"name\":\"ThePaulobraveheart\",\"username\":\"thepaulobraveheart\"},\"content\":\"Boeing AH-64 Apache Longbow Attack Helicopter\",\"contenttype\":\"html\",\"created_at\":\"Thu, 03 Apr 2014 00:28:14 +0000\",\"id\":\"1e3bac6d7ea6a300e0728131423302cc\",\"link\":\"http://www.youtube.com/all_comments?v=u4Z590EW3Jg\",\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Boeing AH-64 Apache ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"en\",\"tag_extended\":\"en\"},\"salience\":{\"content\":{\"entities\":[{\"name\":\"Boeing\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0},\"title\":{\"entities\":[{\"name\":\"Boeing\",\"sentiment\":0,\"confident\":1,\"label\":\"Company\",\"evidence\":4,\"type\":\"Company\",\"about\":1}],\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/thepaulob
 raveheart\",\"name\":\"ThePaulobraveheart\",\"username\":\"thepaulobraveheart\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=u4Z590EW3Jg\",\"content\":\"Boeing AH-64 Apache Longbow Attack Helicopter\",\"contenttype\":\"html\",\"crawled\":\"Thu, 10 Apr 2014 01:30:06 +0000\",\"created_at\":\"Thu, 03 Apr 2014 00:28:14 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1578410306\",\"lang\":\"unknown\",\"link\":\"http://www.youtube.com/all_comments?v=u4Z590EW3Jg\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z13dsduxvsrzxpvrl04cddjiqzarhviz1vs0k\",\"siteid\":\"youtube\",\"title\":\"Boeing AH-64 Apache ...\",\"type\":\"comment\",\"videoid\":\"54geaa757jd6u18kijirss\",\"videolink\":\"http://www.youtube.com/watch?v=u4Z590EW3Jg\"}}"
-"{\"interaction\":{\"author\":{\"link\":\"http://youtube.com/sqnaq_zotxi6axlutgp_ka\",\"name\":\"sqnaq_zotxi6axlutgp_ka\",\"username\":\"sqnaq_zotxi6axlutgp_ka\"},\"content\":\"Apache ft El Abusador de verso Lapiz calle\",\"contenttype\":\"html\",\"created_at\":\"Sat, 12 Apr 2014 14:32:27 +0000\",\"id\":\"1e3c24f452c8af80e07269b9f7db9568\",\"link\":\"http://www.youtube.com/all_comments?v=ErKMJcM8H2U\",\"received_at\":4743648098787195355,\"schema\":{\"version\":3},\"subtype\":\"comment\",\"title\":\"Apache ft El ...\",\"type\":\"youtube\"},\"language\":{\"confidence\":97,\"tag\":\"es\",\"tag_extended\":\"es\"},\"salience\":{\"content\":{\"sentiment\":0}},\"youtube\":{\"author\":{\"link\":\"http://youtube.com/sqnaq_zotxi6axlutgp_ka\",\"name\":\"sqnaq_zotxi6axlutgp_ka\",\"username\":\"sqnaq_zotxi6axlutgp_ka\"},\"commentslink\":\"http://www.youtube.com/all_comments?v=ErKMJcM8H2U\",\"content\":\"Apache ft El Abusador de verso Lapiz calle\",\"contenttype\":\"html\",\"crawled\":\"Mon
 , 14 Apr 2014 01:51:24 +0000\",\"created_at\":\"Sat, 12 Apr 2014 14:32:27 +0000\",\"domain\":\"www.youtube.com\",\"id\":\"1580763243\",\"lang\":\"unknown\",\"link\":\"http://www.youtube.com/all_comments?v=ErKMJcM8H2U\",\"robots_disallowed\":\"no\",\"site_commentid\":\"z12qwfdjwte1gbjix04chfjpknihvbybt5s\",\"siteid\":\"youtube\",\"title\":\"Apache ft El ...\",\"type\":\"comment\",\"videoid\":\"75sq7rhi8thf118kvgcg6l\",\"videolink\":\"http://www.youtube.com/watch?v=ErKMJcM8H2U\"}}"
+{"interaction":{"author":{"link":"http://youtube.com/justmekkb","name":"justmekkb","username":"justmekkb"},"content":"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \nProvince!","contenttype":"html","created_at":"Sun, 23 Mar 2014 13:06:10 +0000","id":"1e3b28be72e0ad00e072d00a0815e3b6","link":"http://www.youtube.com/all_comments?v=30FuTYnnXmM","received_at":4743642843909958769,"schema":{"version":3},"subtype":"comment","title":"Apache Snow II: ...","type":"youtube"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http://youtube.com/justmekkb","name":"justmekkb","username":"justmekkb"},"commentslink":"http://www.youtube.com/all_comments?v=30FuTYnnXmM","content":"Apache Snow II: Marines, Coalition Allies Battle Taliban in Helmand \nProvince!","contenttype":"html","crawled":"Sun, 30 Mar 2014 13:49:36 +0000","created_at":"Sun, 23 Mar 2014 13:06:10 +0000","domain":"www.youtube.com","
 id":"1571681202","lang":"en","langid":22,"link":"http://www.youtube.com/all_comments?v=30FuTYnnXmM","robots_disallowed":"no","site_commentid":"z12of13o5wixs3qde22ixfnxytfjgftpi04","siteid":"youtube","title":"Apache Snow II: ...","type":"comment","videoid":"5cuajavn6pjal18jnh1sp3","videolink":"http://www.youtube.com/watch?v=30FuTYnnXmM"}}
+{"interaction":{"author":{"link":"http://youtube.com/redman1808","name":"REDMAN1808","username":"redman1808"},"content":"Apache Knife Graduation 3-23-2014\nwww.Apache-Knife.com","contenttype":"html","created_at":"Tue, 25 Mar 2014 23:29:01 +0000","id":"1e3b4753edb9ac80e0722abeeb9c452c","link":"http://www.youtube.com/all_comments?v=W0vcwufX9OM","schema":{"version":3},"subtype":"comment","title":"Apache Knife ...","type":"youtube"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http://youtube.com/redman1808","name":"REDMAN1808","username":"redman1808"},"commentslink":"http://www.youtube.com/all_comments?v=W0vcwufX9OM","content":"Apache Knife Graduation 3-23-2014\nwww.Apache-Knife.com","contenttype":"html","crawled":"Wed, 02 Apr 2014 00:23:13 +0000","created_at":"Tue, 25 Mar 2014 23:29:01 +0000","domain":"www.youtube.com","id":"1573452031","lang":"de","langid":31,"link":"http://www.youtube.com/all_com
 ments?v=W0vcwufX9OM","robots_disallowed":"no","site_commentid":"z12ad53pimmefroo504ccbkitvjmzft4lwg0k","siteid":"youtube","title":"Apache Knife ...","type":"comment","videoid":"7cdig0ofjq8ls18jv5ftid","videolink":"http://www.youtube.com/watch?v=W0vcwufX9OM"}}
+{"interaction":{"author":{"link":"http://youtube.com/zja4ri3hkdviwos3sv_lsg","name":"zja4ri3hkdviwos3sv_lsg","username":"zja4ri3hkdviwos3sv_lsg"},"content":"Grande Apache, davvero un gran colpo ;)","contenttype":"html","created_at":"Thu, 27 Mar 2014 16:18:25 +0000","id":"1e3b5cb6c3a5ae80e072504981b43950","link":"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ","schema":{"version":3},"subtype":"comment","title":"Grande Apache, ...","type":"youtube"},"language":{"confidence":97,"tag":"it","tag_extended":"it"},"youtube":{"author":{"link":"http://youtube.com/zja4ri3hkdviwos3sv_lsg","name":"zja4ri3hkdviwos3sv_lsg","username":"zja4ri3hkdviwos3sv_lsg"},"commentslink":"http://www.youtube.com/all_comments?v=bsCvwYmwwiQ","content":"Grande Apache, davvero un gran colpo ;)","contenttype":"html","crawled":"Fri, 28 Mar 2014 13:44:20 +0000","created_at":"Thu, 27 Mar 2014 16:18:25 +0000","domain":"www.youtube.com","id":"1570252147","lang":"it","langid":42,"link":"http://www.youtube.com/all_
 comments?v=bsCvwYmwwiQ","robots_disallowed":"no","site_commentid":"z12kud2xxqy1vdb1a22twvzh0lmatvjet","siteid":"youtube","title":"Grande Apache, ...","type":"comment","videoid":"5n634p8c4591818k1ov5g5","videolink":"http://www.youtube.com/watch?v=bsCvwYmwwiQ"}}
+{"interaction":{"author":{"link":"http://youtube.com/cejowdum4lewo0p3dsv2ya","name":"cejowdum4lewo0p3dsv2ya","username":"cejowdum4lewo0p3dsv2ya"},"content":"Grande apache! Dove abiti?","contenttype":"html","created_at":"Thu, 27 Mar 2014 16:25:30 +0000","id":"1e3b5cc698c3a900e072da410d1cba80","link":"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw","received_at":4743644290448849319,"schema":{"version":3},"subtype":"comment","title":"Grande apache! Dove ...","type":"youtube"},"language":{"confidence":96,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}},"youtube":{"author":{"link":"http://youtube.com/cejowdum4lewo0p3dsv2ya","name":"cejowdum4lewo0p3dsv2ya","username":"cejowdum4lewo0p3dsv2ya"},"commentslink":"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw","content":"Grande apache! Dove abiti?","contenttype":"html","crawled":"Thu, 03 Apr 2014 13:37:42 +0000","created_at":"Thu, 27 Mar 2014 16:25:30 +0000","domain":"www.youtube.com","
 id":"1574460814","lang":"unknown","link":"http://www.youtube.com/all_comments?v=KJ2ovwkoFVw","robots_disallowed":"no","site_commentid":"z133eviq3rquwfwp004ciptogzfwxzvy4w00k","siteid":"youtube","title":"Grande apache! Dove ...","type":"comment","videoid":"6ggq0sgl06i3318k44l1tr","videolink":"http://www.youtube.com/watch?v=KJ2ovwkoFVw"}}
+{"interaction":{"author":{"link":"http://youtube.com/tsunx4","name":"tsunx4","username":"tsunx4"},"content":"Sinnis Apache 125 - китайская копия Suzuki DR125","contenttype":"html","created_at":"Sun, 30 Mar 2014 20:53:00 +0000","id":"1e3b84d47551ae00e07213c00f9208ca","link":"http://www.youtube.com/all_comments?v=5mNtz3z-LwM","received_at":4743645206479298049,"schema":{"version":3},"subtype":"comment","title":"Sinnis Apache 125 - ...","type":"youtube"},"language":{"confidence":52,"tag":"ru","tag_extended":"ru"},"youtube":{"author":{"link":"http://youtube.com/tsunx4","name":"tsunx4","username":"tsunx4"},"commentslink":"http://www.youtube.com/all_comments?v=5mNtz3z-LwM","content":"Sinnis Apache 125 - китайская копия Suzuki DR125","contenttype":"html","crawled":"Sun, 06 Apr 2014 02:17:33 +0000","created_at":"Sun, 30 Mar 2014 20:53:00 +0000","domain":"www.youtube.com","id":"1575948688","lang":"ru","langid":65,"link":"http://www.youtube.com/all_comments?v=
 5mNtz3z-LwM","robots_disallowed":"no","site_commentid":"z13ztrsy2kmtxrxqp04cg5hqjrqjczdjbj0","siteid":"youtube","title":"Sinnis Apache 125 - ...","type":"comment","videoid":"6a4b6ht4qnqg518k8buu8c","videolink":"http://www.youtube.com/watch?v=5mNtz3z-LwM"}}
+{"interaction":{"author":{"link":"http://youtube.com/thepaulobraveheart","name":"ThePaulobraveheart","username":"thepaulobraveheart"},"content":"Boeing AH-64 Apache Longbow Attack Helicopter","contenttype":"html","created_at":"Thu, 03 Apr 2014 00:28:14 +0000","id":"1e3bac6d7ea6a300e0728131423302cc","link":"http://www.youtube.com/all_comments?v=u4Z590EW3Jg","schema":{"version":3},"subtype":"comment","title":"Boeing AH-64 Apache ...","type":"youtube"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"salience":{"content":{"entities":[{"name":"Boeing","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0},"title":{"entities":[{"name":"Boeing","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}},"youtube":{"author":{"link":"http://youtube.com/thepaulobraveheart","name":"ThePaulobraveheart","username":"thepaulobraveheart"},"commentslink":"http://www.youtube.com/all_comments?v=
 u4Z590EW3Jg","content":"Boeing AH-64 Apache Longbow Attack Helicopter","contenttype":"html","crawled":"Thu, 10 Apr 2014 01:30:06 +0000","created_at":"Thu, 03 Apr 2014 00:28:14 +0000","domain":"www.youtube.com","id":"1578410306","lang":"unknown","link":"http://www.youtube.com/all_comments?v=u4Z590EW3Jg","robots_disallowed":"no","site_commentid":"z13dsduxvsrzxpvrl04cddjiqzarhviz1vs0k","siteid":"youtube","title":"Boeing AH-64 Apache ...","type":"comment","videoid":"54geaa757jd6u18kijirss","videolink":"http://www.youtube.com/watch?v=u4Z590EW3Jg"}}
+{"interaction":{"author":{"link":"http://youtube.com/sqnaq_zotxi6axlutgp_ka","name":"sqnaq_zotxi6axlutgp_ka","username":"sqnaq_zotxi6axlutgp_ka"},"content":"Apache ft El Abusador de verso Lapiz calle","contenttype":"html","created_at":"Sat, 12 Apr 2014 14:32:27 +0000","id":"1e3c24f452c8af80e07269b9f7db9568","link":"http://www.youtube.com/all_comments?v=ErKMJcM8H2U","received_at":4743648098787195355,"schema":{"version":3},"subtype":"comment","title":"Apache ft El ...","type":"youtube"},"language":{"confidence":97,"tag":"es","tag_extended":"es"},"salience":{"content":{"sentiment":0}},"youtube":{"author":{"link":"http://youtube.com/sqnaq_zotxi6axlutgp_ka","name":"sqnaq_zotxi6axlutgp_ka","username":"sqnaq_zotxi6axlutgp_ka"},"commentslink":"http://www.youtube.com/all_comments?v=ErKMJcM8H2U","content":"Apache ft El Abusador de verso Lapiz calle","contenttype":"html","crawled":"Mon, 14 Apr 2014 01:51:24 +0000","created_at":"Sat, 12 Apr 2014 14:32:27 +0000","domain":"www.youtube.com",
 "id":"1580763243","lang":"unknown","link":"http://www.youtube.com/all_comments?v=ErKMJcM8H2U","robots_disallowed":"no","site_commentid":"z12qwfdjwte1gbjix04chfjpknihvbybt5s","siteid":"youtube","title":"Apache ft El ...","type":"comment","videoid":"75sq7rhi8thf118kvgcg6l","videolink":"http://www.youtube.com/watch?v=ErKMJcM8H2U"}}


[25/45] Removed klout information fromd datasift test files

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/906a68ee/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
index a00728f..3eff76b 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/facebook_datasift_json.txt
@@ -1,1843 +1,1843 @@
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"created_at":"Sat, 22 Mar 2014 21:38:22 +0000","description":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out ne
 xt week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","id":"100003271543139_537596739692706","link":"http:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323","name":"Mescalero Apache Head Start","picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-ash2\/t1.0-1\/c0.0.100.100\/p100x100\/379713_183249568536164_895695882_a.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100003271543139\/picture","id":"100003271543139","link":"http:\/\/www.facebook.com\/profile.php?id=100003271543139","name":"Janelle Tso-Blake","type":"user"},"content":"UPDATE:  Since the \"Mescalero Blessing Run\" will be on Wednesday, April 2nd, we moved the Picture Day for the Mescalero site to Monday, March 31st.\n\nThe Carrizo site Picture Day will stay the same, which will be on Tuesday, April 1, 2014.\n\nPicture days will
  be held at the Mescalero South Hall (Bowling Alley) starting at 9:00 a.m. for the Head Start students.  This will be individual pictures, graduation pictures, and class pictures.  The class pictures will have to be prepaid.  For the children getting graduation pictures, we would also like to encourage you to accompany them and bring their cap\/gown.  Flyers will be sent out next week concerning the prices.\n\nWe would like to encourage families planning on taking siblings, to go before the Head Start children arrive.","created_at":"Sat, 22 Mar 2014 21:38:22 +0000","id":"1e3b20a4a775ab00e066d203c4340184","link":"http:\/\/www.facebook.com\/100003271543139_537596739692706","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Mescalero Apache Head Start","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:39:20 +0000"],"hops":[["http:\/\/www.facebook.com\/mesca
 leroapacheheadstart\/posts\/219371308257323"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"],"retweet_count":[0],"title":["UPDATE: Since the \"Mescalero Blessing... - Mescalero Apache Head Start | Facebook"],"url":["https:\/\/www.facebook.com\/mescaleroapacheheadstart\/posts\/219371308257323"]},"salience":{"content":{"entities":[{"name":"April 1, 2014","sentiment":0,"confident":1,"label":"Date","evidence":1,"type":"Pattern","about":0},{"name":"Mescalero South Hall","sentiment":0,"confident":1,"label":"building","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"Bowling Alley","sentiment":0,"confident":1,"label":"road","evidence":1,"type":"Place","about":0,"themes":["individual pictures","graduation pictures","class pictures"]},{"name":"\"Mescalero Blessing Run\"","sentiment":0,"confident":1,"labe
 l":"Quote","evidence":1,"type":"Quote","about":0}],"sentiment":2},"title":{"sentiment":0}}}
-{"demographic":{"gender":"unisex"},"facebook":{"application":"Photos","author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"caption":"First weekend of Spring! Time to get outside and enjoy the WMAT rez :)","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","icon":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/v2\/yD\/r\/aS8ecmYRys0.gif","id":"100002126551451_605465259534354","link":"http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1","message":"C'mon over...\n","name":"Photos of White Mountain Apache Tribe Game & Fish","og":{"by":"Michael Frank"},"picture":"http:\/\/photos-e.ak.fbcdn.net\/hphotos-ak-ash3\/t1.0-0\/1920219_10101477649345853_670694643_s.jpg","source":"Photos (2305272732)","story":"Sharon Gloshay shared a photo.","story_tags":[[{"name":"Sharon Gloshay","length":14,"type":"user","id":"100002126
 551451","offset":0}]],"type":"photo"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002126551451\/picture","id":"100002126551451","link":"http:\/\/www.facebook.com\/profile.php?id=100002126551451","name":"Sharon Gloshay","type":"user"},"content":"C'mon over...\n","created_at":"Sat, 22 Mar 2014 21:42:13 +0000","id":"1e3b20ad4272a880e06678b4f07fd236","link":"http:\/\/www.facebook.com\/100002126551451_605465259534354","schema":{"version":3},"source":"Photos (2305272732)","subtype":"photo","title":"Photos of White Mountain Apache Tribe Game & Fish","type":"facebook"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:50 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["First weekend of Spring! Time to get outside and enjoy the WMAT rez :)"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?fbid=101014776493
 45853&set=o.320779744643135&type=1"],"retweet_count":[0],"title":["Michael Frank - Photos of White Mountain Apache Tribe Game... | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?fbid=10101477649345853&set=o.320779744643135&type=1"]}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"caption":"minneapolis.en.craigslist.org","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","description":"[ post ][ account ]0 favoritesCL >minneapolis >carv\/sher\/wri >all for sale \/ wanted >rvs - by owner\u2014 \u2014 \u2014\u2709\u260Ereplyxprohibited[?]Posted: 2014-02-17 12:30pm Apache Hardside Camper ~Wanted~ Looking for a Apache Hardside Pop-Up Camper Please let me know what you have available do NOT contact me with unsoli...","id":"201182856613333_689921864406094","link":"http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html","message":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","name":"Apache Hardside Camper ~Wanted~","source":"Facebook for Android (350685531728)",
 "to":{"ids":["201182856613333"],"names":["Apache Camper Preservation Society"]},"type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/727210779\/picture","id":"727210779","link":"http:\/\/www.facebook.com\/profile.php?id=727210779","name":"Amanda Netzel","type":"user"},"content":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","created_at":"Sat, 22 Mar 2014 21:42:24 +0000","id":"1e3b20adab5aa000e0661b0a9e430820","link":"http:\/\/www.facebook.com\/201182856613333_689921864406094","mention_ids":["201182856613333"],"mentions":["Apache Camper Preservation Society"],"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Apache Hardside Camper ~Wanted~","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:42:47 +0000"],"meta":{"charset":["CP1252"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url"
 :["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"],"retweet_count":[0],"title":["Apache Hardside Camper ~Wanted~"],"url":["http:\/\/minneapolis.en.craigslist.org\/csw\/rvs\/4337546519.html"]},"salience":{"content":{"sentiment":0,"topics":[{"name":"Advertising","score":0.47485229372978,"additional":"Minnesota person looking for a hardside apache!! Found the ad on Craigslist","hits":0}]},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"GrabInbox","author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"user"},"caption":"mcp.infusionsoft.com","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","description":"type Status report The requested resource is not available.","id":"100004948484234_257154551126159","link":"https:\/\/mcp.infusionsoft.com\/go\/2ndcha","message":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","name":"Apache Tomcat\/6.0.36 - Error report","source":"GrabInbox (135280156521587)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"use
 r"},"content":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","created_at":"Sat, 22 Mar 2014 21:45:04 +0000","id":"1e3b20b3a13ba000e0668cdbdc72d878","link":"http:\/\/www.facebook.com\/100004948484234_257154551126159","received_at":4743640062960685023,"schema":{"version":3},"source":"GrabInbox (135280156521587)","subtype":"link","title":"Apache Tomcat\/6.0.36 - Error report","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404],"created_at":["Sat, 22 Mar 2014 21:46:07 +0000"],"hops":[["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-5}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPad","author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=100000632293926","name":"Xavier Tatum","type":"user"},"created_at":"Sat, 22 Mar 2014 21:46:28 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"100000632293926_733005476730522","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000632293926\/picture","id":"100000632293926","link":"http:\/\/www.facebook.com\/profile.php?id=1000006
 32293926","name":"Xavier Tatum","type":"user"},"content":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","created_at":"Sat, 22 Mar 2014 21:46:28 +0000","id":"1e3b20b6c251a200e066d8ce3663edc2","link":"http:\/\/www.facebook.com\/100000632293926_733005476730522","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","subtype":"video","title":"Mizai Performing Live @ Apache Cafe","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:25:38 +0000"],"hops":[["http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U&app=desktop"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent"],"keywords":[["Apache Cafe (Building)","Mizai","Performing","live","Atl","Exposure","Open","Mic","Pe
 rformance","Fan","myself","Stage","Microphone","DJ","Mizay","Streetz","Grindin","BAMA","Op..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg"}],"twitter":[{"player_width":"1280","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","player_height":"720","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Pe
 rforming Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/Pc5QXkarL0U"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=Pc5QXkarL0U"],"retweet_count":[0],"title":["Mizai Performing Live @ Apache Cafe - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U"]}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100002691827913_484469828319407","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","message":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture
 ":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002691827913\/picture","id":"100002691827913","link":"http:\/\/www.facebook.com\/profile.php?id=100002691827913","name":"John Henry","type":"user"},"content":"I have been here, and NOW GERONIMO has shown ME another Hide Out... BIG SNAKES coming OUT, think I saw a Fifteen Footer, WE HISSED AT EACH OTHER... No baby snakes yet, I think someone has released a black mamba here and it has interbred with a Rattlesnake... FAST, DEADLY, and BEAUTIFUL...","created_at":"Sat, 22 Mar 2014 21:49:05 +0000","id":"1e3b20bc9b95ae80e066fe4bf1bfb094","link":"http:\/\/www.facebook.com\/100002691827913_484469828319407","received_at":4743640063974247393,"sche
 ma":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unknown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"sentiment":-6},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confi
 dent":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\/www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:49:42 +0000","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","id":"731196387_10152355066466388","link":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","name":"Sugarhill Gang Apache (Jump On It)","picture":"http:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l","source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","to":{"ids":["100000046087502"],"names":["Nathan Bluerock"]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/731196387\/picture","id":"731196387","link":"http:\/\
 /www.facebook.com\/profile.php?id=731196387","name":"Andrew C. Lengen","type":"user"},"content":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","created_at":"Sat, 22 Mar 2014 21:49:42 +0000","id":"1e3b20bdfc71af00e066bcb6b8e3130c","link":"http:\/\/www.facebook.com\/731196387_10152355066466388","mention_ids":["100000046087502"],"mentions":["Nathan Bluerock"],"received_at":4743640064119570380,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Sugarhill Gang Apache (Jump On It)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 01:42:36 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watch
 ing!"],"keywords":[["Funky","Pop","Greatness","Awesome"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtub
 e.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/vQObWW06VAM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=vQObWW06VAM"],"retweet_count":[0],"title":["Sugarhill Gang Apache (Jump On It) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=vQObWW06VAM"]}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"newsok.com","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","id":"100000455275358_753304071361428","link":"http:\/\/ow.ly\/uKTg1","name":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAMLLC9jSlzmhOK&w=154&h=154&url=http%3A%2F%2Fcdn2.newsok.biz%2Fcache%2Fw620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link
 ":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","created_at":"Sat, 22 Mar 2014 21:54:23 +0000","id":"1e3b20c87445a180e0665ce87651d4d0","link":"http:\/\/www.facebook.com\/100000455275358_753304071361428","schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:27 +0000"],"hops":[["http:\/\/ow.ly\/uKTg1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government."],"lang":["unknown"],"ope
 ngraph":[{"site_name":"NewsOK.com","type":"article","description":"Fort Sill Apache Tribe officials are working to return the tribe to the Akela Flats, N.M., reservation granted to them by the federal government.","url":"http:\/\/newsok.com\/article\/3935671","title":"Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico","image":"http:\/\/cdn2.newsok.biz\/cache\/w620-4f5d29347b3d86bcf2aead20fe5b00f0.jpg"}]},"normalized_url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"],"retweet_count":[0],"title":["Oklahoma-based Fort Sill Apache Tribe fights for recognition in New Mexico | News OK"],"url":["http:\/\/newsok.com\/oklahoma-based-fort-sill-apache-tribe-fights-for-recognition-in-new-mexico\/article\/3935671"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:08 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"388424624543961_652943931425361","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=
 ZrcVKWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","to":{"ids":["388424624543961"],"names":["Ret.Officers Living Or Willing To Move Outside The U.S."]},"type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a mo
 ralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 Mar 2014 21:55:08 +0000","id":"1e3b20ca216ca600e066737903b59bf6","link":"http:\/\/www.facebook.com\/388424624543961_652943931425361","mention_ids":["388424624543961"],"mentions":["Ret.Officers Living Or Willing To Move Outside The U.S."],"received_at":4743640065503462529,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul 
 Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtub
 e"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"created_at":"Sat, 22 Mar 2014 21:55:30 +0000","description":"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","id":"792873959_10152287778028960","link":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","message":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcV
 KWm7vog","name":"Fort Apache the Bronx Paul Newman] (1981)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCpdkRE5P1GnM1F&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FZrcVKWm7vog%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/792873959\/picture","id":"792873959","link":"http:\/\/www.facebook.com\/profile.php?id=792873959","name":"Ralph Cohen","type":"user"},"content":"Fort Apache the Bronx (1981) Full Movie, ENJOY!\nFrom the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is \"Fort Apache\", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tough cynic, but in truth he's a moralist with a sense for justice.\n\nhttp:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","created_at":"Sat, 22 
 Mar 2014 21:55:30 +0000","id":"1e3b20caf33ba500e0669b6b2a096842","link":"http:\/\/www.facebook.com\/792873959_10152287778028960","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/ZrcVKWm7vog?autohide=1&version=3&autoplay=1","subtype":"video","title":"Fort Apache the Bronx Paul Newman] (1981)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:55:38 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their..."],"keywords":[["Fort Apache","The Bronx (Film) Paul Newman (Theater Actor)"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as th
 e officers call their...","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"From the sight of a police officer this movie depicts the life in New York&#39;s infamous South Bronx. In the center is \"Fort Apache\", as the officers call their...","player_height":"360","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/ZrcVKWm7vog","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog","title":"Fort Apache the Bronx Paul Newman] (1981)","image":"http:\/\/i1.ytimg.com\/vi\/ZrcVKWm7vog\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/ZrcVKWm7vog
 "}]},"normalized_url":["http:\/\/youtube.com\/watch?v=ZrcVKWm7vog"],"retweet_count":[0],"title":["Fort Apache the Bronx Paul Newman] (1981) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=ZrcVKWm7vog"]}}
-{"demographic":{"gender":"unisex"},"facebook":{"application":"V\u00EDdeos","author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"created_at":"Sat, 22 Mar 2014 21:56:14 +0000","description":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","id":"100007024808424_1435534340024046","link":"http:\/\/www.facebook.com\/photo.php?v=301721056644466","name":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","og":{"dura\u00E7\u00E3o":"1:50"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-ash3\/t15.0-10\/1898357_301721366644435_301721056644466_21573_1925_t.jpg","source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","
 type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100007024808424\/picture","id":"100007024808424","link":"http:\/\/www.facebook.com\/profile.php?id=100007024808424","name":"Willian Pinho","type":"user"},"content":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","created_at":"Sat, 22 Mar 2014 21:56:14 +0000","id":"1e3b20cc96d9a300e0662f3920bf5e56","link":"http:\/\/www.facebook.com\/100007024808424_1435534340024046","schema":{"version":3},"source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","subtype":"video","title":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","type":"facebook"},"language":{"confidence":98,"tag":"pt","tag_extended":"pt"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 15:04:52 +0000"],"hops":[["htt
 p:\/\/www.facebook.com\/photo.php?v=301721056644466"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. "],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=301721056644466"],"retweet_count":[0],"title":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O... - De POUCO UM TUDO. | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=301721056644466"]}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Links","author":{"avatar":"https:\/\/graph.facebook.com\/100000455275358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"caption":"indiancountrytodaymedianetwork.com","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","description":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","id":"100000455275358_753306681361167","link":"http:\/\/ow.ly\/uKToH","name":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQBfQuIg2QEiixtK&w=154&h=154&url=http%3A%2F%2Fd1jrw5jterzxwu.cloudfront.net%2Fsites%2Fdefault%2Ffiles%2Farticle_media%2Fapache-1886.jpg","source":"Links (2309869772)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/10000045527
 5358\/picture","id":"100000455275358","link":"http:\/\/www.facebook.com\/profile.php?id=100000455275358","name":"Susan Hudson","type":"user"},"content":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","created_at":"Sat, 22 Mar 2014 22:00:40 +0000","id":"1e3b20d67f9fa400e066004f93ac9c70","link":"http:\/\/www.facebook.com\/100000455275358_753306681361167","received_at":4743640066903726306,"schema":{"version":3},"source":"Links (2309869772)","subtype":"link","title":"100 Years Later: Fort Sill Apache Still Fighting to Return to Homelands","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"salience":{"content":{"sentiment":-2,"topics":[{"name":"War","score":0.54581296443939,"additional":"Today marks the 100th anniversary of the release from prisoner of war status of the Chiricahua Warm Springs Apache, now known as Fort Sill Apache","hits":0}]},"title":{"sentime
 nt":-4}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for iPhone","author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"created_at":"Sat, 22 Mar 2014 22:01:17 +0000","description":"TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.\n\nTVS Motor Company Ltd (TVS Motor), member of the TVS grou...","id":"1297415516_10203309137071332","link":"http:\/\/www.facebook.com\/TVSApacheOfficial","message":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it'
 s more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sale
 s mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'9500965507\nPollachi","name":"TVS Apache","og":{"product\/service":"1,040,347 like this"},"picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-prn1\/t1.0-1\/1512540_649033688487904_1254327688_a.jpg","source":"Facebook for iPhone (6628568379)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/1297415516\/picture","id":"1297415516","link":"http:\/\/www.facebook.com\/profile.php?id=1297415516","name":"Mohammad Safi Khan","type":"user"},"content":"Dear Appachi RTR\nKindly assist me how to get my issue solved \" I got new bike purchased from LotusTVS dealer in Coimbatore and thy told about 10days to complete registration book to handover now thy are delaying for the RC book to hand over ' now it's more then 10 days when I spoke to manager he spoke to me that he will solve the problem still no reply it's kind of attitude for the
  customer care they ask me how is the feed back and all when they commit they are not &  it's hard in this place to find a good dealer or what? I am in Coimbatore city  'pollachi '\nIt's 2nd company with complaint of commitment  which was agree on everything was legally done  but the RC book ? suppose to 20th  this month still no reply why??? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ?  \nNote:Lotus Tvs dealer in Coimbatore MTP road showroom \nPaid for urgent process extra amount of 495 (delivery of bike also   paid )for register notary all paid   and Next day  evening receive the bike among the insurance papers  only & register numbers by SMS !\n\nCash paid full !next day evening 4:30pm  bike was delivered to me contact person in Tvs lotus sales mr.Ganesh reliable person \nmanager Mr.Vevakanandan non reliable person \nKindly assist me for this issue \nMy contact 9600045507'95
 00965507\nPollachi","created_at":"Sat, 22 Mar 2014 22:01:17 +0000","id":"1e3b20d7e07ba480e066eaccfc9d6c40","link":"http:\/\/www.facebook.com\/1297415516_10203309137071332","received_at":4743640067019986960,"schema":{"version":3},"source":"Facebook for iPhone (6628568379)","subtype":"link","title":"TVS Apache","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 22:01:43 +0000"],"hops":[["http:\/\/www.facebook.com\/TVSApacheOfficial"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["TVS Apache. 1,040,347 likes \u00B7 8,629 talking about this. TVS Motor Company is the third largest two-wheeler manufacturer in India and one among the top ten in the world, with annual turnover of more than USD 1.4 billion in 2011-2012, and is the flagship company of the, USD 7.29 billion, TVS Group.TVS Motor Company Ltd (TVS Motor), member of the TVS group, is the largest company of the group in ter
 ms of size and turnover."],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/TVSApacheOfficial"],"retweet_count":[0],"title":["TVS Apache | Facebook"],"url":["https:\/\/www.facebook.com\/TVSApacheOfficial"]},"salience":{"content":{"entities":[{"name":"Coimbatore MTP road","sentiment":3,"confident":1,"label":"road","evidence":7,"type":"Place","about":1,"themes":["complete registration book","Next day evening","good dealer","customer care","urgent process","extra amount","road showroom","insurance papers","2nd company","quick delivery"]},{"name":"manager","sentiment":5,"confident":1,"label":"Job Title","evidence":7,"type":"Job Title","about":1,"themes":["reliable person manager","complete registration book","good dealer","customer care","2nd company","30pm bike","day evening","lotus sales"]}],"sentiment":3,"topics":[{"name":"Business","score":0.90492594242096,"additional":"I am in Coimbatore city 'pollachi ' It's 2nd company with complaint of commitment which was agree on ever
 ything was legally done but the RC book ? it's an quick delivery we will issue all document to you when register is complete I guess they are playing with brand kindly assist what should I do ? Note:Lotus Tvs dealer in Coimbatore MTP road showroom Paid for urgent process extra amount of 495 (delivery of bike also paid )for register notary all paid and Next day evening receive the bike among the insurance papers only & register numbers by SMS !","hits":0}]},"title":{"sentiment":0}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"caption":"americanindianshistory.blogspot.com","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","description":"Photos of the Apache camp in Tularosa Canyon, New Mexico","id":"100004773398251_275283519307426","link":"http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb","name":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAmlFqdr5iRHCGR&w=154&h=154&url=http%3A%2F%2F3.bp.blogspot.com%2F-zXx9w4BB-Sg%2FUvZZiFB__PI%2FAAAAAAAAP-A%2FGdNIZwUMznc%2Fs1600%2FApache-Indian-Village-%2Bin%2BTularosa-New%2BMexico.jpg","source":"Facebook for Android (35068
 5531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004773398251\/picture","id":"100004773398251","link":"http:\/\/www.facebook.com\/profile.php?id=100004773398251","name":"Cynthia Villarreal","type":"user"},"content":"Photos of the Apache camp in Tularosa Canyon, New Mexico","created_at":"Sat, 22 Mar 2014 22:19:54 +0000","id":"1e3b21017d06a100e066a7ebf76f1348","link":"http:\/\/www.facebook.com\/100004773398251_275283519307426","schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:49:34 +0000"],"hops":[["http:\/\/americanindianshistory.blogspot.com\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["unk
 nown"]},"normalized_url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"],"retweet_count":[0],"title":["American Indian's History: Photos of the Apache Village in Tularosa Canyon, New Mexico"],"url":["http:\/\/americanindianshistory.blogspot.co.uk\/2014\/02\/photos-of-apache-village-in-tularosa.html?spref=fb"]},"salience":{"content":{"entities":[{"name":"Apache","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1},{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0},"title":{"entities":[{"name":"Tularosa Canyon, New Mexico","sentiment":0,"confident":1,"label":"Place","evidence":4,"type":"Place","about":1}],"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/734307369\/picture","id":"734307369","link":"http:\/\/www.facebook.com\/profile.php?id=734307369","name":"Tory T-ham Hamilton","type":"user"},"created_at":"Sat, 22 Mar 2014 22:23:10 +0000","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","id":"734307369_10152282200827370","link":"http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","name":"Mizai Performing Live @ Apache Cafe","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCfBmXRvNRjjyPk&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FPc5QXkarL0U%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/734307369\/picture","id":"734307369","link":"http:\/\/www.facebook.com\/profile.php?id=734307369","name":"Tory T-ham H
 amilton","type":"user"},"content":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","created_at":"Sat, 22 Mar 2014 22:23:10 +0000","id":"1e3b2108ca39ab00e06643e95a4a92a4","link":"http:\/\/www.facebook.com\/734307369_10152282200827370","received_at":4743640072535061771,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/Pc5QXkarL0U?version=3&autohide=1&autoplay=1","subtype":"video","title":"Mizai Performing Live @ Apache Cafe","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 21:25:38 +0000"],"hops":[["http:\/\/m.youtube.com\/watch?v=Pc5QXkarL0U","http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U&app=desktop"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent"],"keywords":[["Apache Cafe (Building)","Mizai","Performing","live","Atl","Exposure","Open","M
 ic","Performance","Fan","myself","Stage","Microphone","DJ","Mizay","Streetz","Grindin","BAMA","Op..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"Mizai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg"}],"twitter":[{"player_width":"1280","description":"Mizai Performing Live @ Apache Cafe; Exposure Open Mic; Triad Films; Major Muves Ent","player_height":"720","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Pc5QXkarL0U","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U","title":"M
 izai Performing Live @ Apache Cafe","image":"http:\/\/i1.ytimg.com\/vi\/Pc5QXkarL0U\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/Pc5QXkarL0U"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=Pc5QXkarL0U"],"retweet_count":[0],"title":["Mizai Performing Live @ Apache Cafe - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=Pc5QXkarL0U"]}}
-{"facebook":{"application":"V\u00EDdeos","author":{"avatar":"https:\/\/graph.facebook.com\/100004934383932\/picture","id":"100004934383932","link":"http:\/\/www.facebook.com\/profile.php?id=100004934383932","name":"Clausimar Buba","type":"user"},"created_at":"Sat, 22 Mar 2014 22:33:27 +0000","description":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","id":"100004934383932_270660059775138","link":"http:\/\/www.facebook.com\/photo.php?v=301721056644466","name":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","og":{"dura\u00E7\u00E3o":"1:50"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-ash3\/t15.0-10\/1898357_301721366644435_301721056644466_21573_1925_t.jpg","source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","type":"video"},"interaction":{"aut
 hor":{"avatar":"https:\/\/graph.facebook.com\/100004934383932\/picture","id":"100004934383932","link":"http:\/\/www.facebook.com\/profile.php?id=100004934383932","name":"Clausimar Buba","type":"user"},"content":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.\n>>>CURTI De POUCO UM TUDO. <","created_at":"Sat, 22 Mar 2014 22:33:27 +0000","id":"1e3b211fc665a580e066c43b1b32cfd2","link":"http:\/\/www.facebook.com\/100004934383932_270660059775138","received_at":4743640075412367737,"schema":{"version":3},"source":"http:\/\/video.ak.fbcdn.net\/hvideo-ak-ash2\/v\/t42.1790-2\/1480151_301721339977771_517062767_n.mp4?oh=821b4dd228ea9e390c28f9eb58b42b63&oe=532FE3A4&__gda__=1395655561_95d5a05baeb6ec7eedb0305a29409358","subtype":"video","title":"ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.","type":"facebook"},"language":{"confidence":98,"tag":"pt","tag_extended":"pt"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 15:04:52 +0000"],"hops":[["htt
 p:\/\/www.facebook.com\/photo.php?v=301721056644466"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O KKKKKK VIOLEIRA DE APACHE.>>>CURTI De POUCO UM TUDO. "],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=301721056644466"],"retweet_count":[0],"title":["ENQUANTO ISSO O GUARDA MOSTRA SERVI\u00C7O... - De POUCO UM TUDO. | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=301721056644466"]}}
-{"demographic":{"gender":"mostly_male"},"facebook":{"application":"Status","author":{"avatar":"https:\/\/graph.facebook.com\/100007044361728\/picture","id":"100007044361728","link":"http:\/\/www.facebook.com\/profile.php?id=100007044361728","name":"Len Row","type":"user"},"created_at":"Sat, 22 Mar 2014 22:34:04 +0000","description":"We had a great time at the first meeting for the Barnes & Noble Apache Book Club.  Next month's selection is \"The Uninvited Guests\" by Sadie Jones.  Join us on Tuesday, April 29th.  All are welcome!","id":"100007044361728_1434663546778444","link":"http:\/\/www.facebook.com\/bnapache\/posts\/621041997971955","message":"great to know some people can read\n\n","name":"Barnes & Noble Apache","picture":"http:\/\/scontent-b.xx.fbcdn.net\/hphotos-ash3\/t1.0-9\/p100x100\/1926909_621039807972174_390303089_n.jpg","source":"Status (25554907596)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100007044361728\/picture","id":"1000070
 44361728","link":"http:\/\/www.facebook.com\/profile.php?id=100007044361728","name":"Len Row","type":"user"},"content":"great to know some people can read\n\n","created_at":"Sat, 22 Mar 2014 22:34:04 +0000","id":"1e3b21212741a600e0662f16ad9b8c9e","link":"http:\/\/www.facebook.com\/100007044361728_1434663546778444","received_at":4743640075258435102,"schema":{"version":3},"source":"Status (25554907596)","subtype":"link","title":"Barnes & Noble Apache","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 22:34:25 +0000"],"hops":[["http:\/\/www.facebook.com\/bnapache\/posts\/621041997971955"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/bnapache\/posts\/621041997971955"],"retweet_count":[0],"title":["We had a great time at the first meeting... - Barnes & Noble Apache | Facebook"],"url":["https:\/\/www.facebook.com\/bnapache\/posts\/62104
 1997971955"]},"salience":{"content":{"sentiment":6},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"GrabInbox","author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"user"},"caption":"mcp.infusionsoft.com","created_at":"Sat, 22 Mar 2014 22:45:03 +0000","description":"type Status report The requested resource is not available.","id":"100004948484234_257170744457873","link":"https:\/\/mcp.infusionsoft.com\/go\/2ndcha","message":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","name":"Apache Tomcat\/6.0.36 - Error report","source":"GrabInbox (135280156521587)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004948484234\/picture","id":"100004948484234","link":"http:\/\/www.facebook.com\/profile.php?id=100004948484234","name":"Said Azaou","type":"use
 r"},"content":"URGENT: Your Second Chance Opportunity  I just got word from Todd Brown regarding an limited  second-chance    https:\/\/mcp.infusionsoft.com\/go\/2ndcha","created_at":"Sat, 22 Mar 2014 22:45:03 +0000","id":"1e3b2139b3f8a180e066b46311970690","link":"http:\/\/www.facebook.com\/100004948484234_257170744457873","schema":{"version":3},"source":"GrabInbox (135280156521587)","subtype":"link","title":"Apache Tomcat\/6.0.36 - Error report","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[404],"created_at":["Sat, 22 Mar 2014 22:45:09 +0000"],"hops":[["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]],"normalized_url":[null],"retweet_count":[0],"title":["null"],"url":["https:\/\/mcp.infusionsoft.com\/go\/2ndcha"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":-5}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Windows Phone","author":{"avatar":"https:\/\/graph.facebook.com\/100004800278915\/picture","id":"100004800278915","link":"http:\/\/www.facebook.com\/profile.php?id=100004800278915","name":"Chuck Brown","type":"user"},"created_at":"Sat, 22 Mar 2014 22:51:31 +0000","description":"Tonight! Come out to Magnolia Motor Lounge around 9:30 or so! We'll play you rock and roll songs before the great Patrick Sweany Music! Hooray!!","id":"100004800278915_266054613564546","link":"http:\/\/www.facebook.com\/TheApache5\/posts\/10152325503479868","name":"The Apache 5","picture":"http:\/\/profile.ak.fbcdn.net\/hprofile-ak-prn2\/t1.0-1\/p100x100\/1797601_10152224411094868_229046817_a.jpg","source":"Facebook for Windows Phone (135892916448833)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004800278915\/picture","id":"100004800278915","link":"http:\/\/www.facebook.com\/profile.php?id=100004800
 278915","name":"Chuck Brown","type":"user"},"content":"Tonight! Come out to Magnolia Motor Lounge around 9:30 or so! We'll play you rock and roll songs before the great Patrick Sweany Music! Hooray!!","created_at":"Sat, 22 Mar 2014 22:51:31 +0000","id":"1e3b21482839ab80e066efe3200d7e24","link":"http:\/\/www.facebook.com\/100004800278915_266054613564546","received_at":4743640079700650151,"schema":{"version":3},"source":"Facebook for Windows Phone (135892916448833)","subtype":"link","title":"The Apache 5","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 19:20:40 +0000"],"hops":[["http:\/\/www.facebook.com\/TheApache5\/posts\/10152325503479868"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/TheApache5\/posts\/10152325503479868"],"retweet_count":[0],"title":["The Apache 5 - Tonight! Come out to Magnolia Motor Lounge... | Facebook"],"u
 rl":["https:\/\/www.facebook.com\/TheApache5\/posts\/10152325503479868"]},"salience":{"content":{"sentiment":12},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Video","author":{"avatar":"https:\/\/graph.facebook.com\/100006082453476\/picture","id":"100006082453476","link":"http:\/\/www.facebook.com\/profile.php?id=100006082453476","name":"Libor Klinton","type":"user"},"created_at":"Sat, 22 Mar 2014 22:55:02 +0000","description":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq \n\n----------------------------------------------------------------\nFor war and weapons technologies - Military photos and videos www.facebook.com\/WarDocumentaries","id":"100006082453476_1480782535467814","link":"http:\/\/www.facebook.com\/photo.php?v=359071040872553","name":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Mi...","og":{"length":"4:10"},"picture":"http:\/\/vthumb.ak.fbcdn.net\/hvthumb-ak-prn1\/t15.0-10\/632456_359071314205859_359071040872553_64780_2217_t.jpg","source":"http:\/\/scontent.xx.fbcdn.net\/hvideo-prn1\/v\/t42.1790-2\/757342_359071264205864
 _773831534_n.mp4?oh=70dea43416eaff290d9dc3946457f066&oe=532F7679","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100006082453476\/picture","id":"100006082453476","link":"http:\/\/www.facebook.com\/profile.php?id=100006082453476","name":"Libor Klinton","type":"user"},"content":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq \n\n----------------------------------------------------------------\nFor war and weapons technologies - Military photos and videos www.facebook.com\/WarDocumentaries","created_at":"Sat, 22 Mar 2014 22:55:02 +0000","id":"1e3b2150047aa700e0665052b58ab34a","link":"http:\/\/www.facebook.com\/100006082453476_1480782535467814","schema":{"version":3},"source":"http:\/\/scontent.xx.fbcdn.net\/hvideo-prn1\/v\/t42.1790-2\/757342_359071264205864_773831534_n.mp4?oh=70dea43416eaff290d9dc3946457f066&oe=532F7679","subtype":"video","title":"Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Mi...","type":"f
 acebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 20:22:09 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?v=359071040872553"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Apache Gunship Takes Out 5 Armed Insurgents With 3 Hellfire Missiles In Iraq ----------------------------------------------------------------For war..."],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?v=359071040872553"],"retweet_count":[0],"title":["Apache Gunship Takes Out 5 Armed... - War Documentaries | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?v=359071040872553"]}}
-{"demographic":{"gender":"male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000692731781\/picture","id":"100000692731781","link":"http:\/\/www.facebook.com\/profile.php?id=100000692731781","name":"Dimitris Kolovos","type":"user"},"created_at":"Sat, 22 Mar 2014 23:08:23 +0000","id":"100000692731781_739630136070071","link":"http:\/\/youtu.be\/EzgbcyfJgfQ","message":"Best instrumental rock song ever","name":"The Shadows - Apache (1960)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQDa2tZfBZZxvkC0&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FEzgbcyfJgfQ%2Fmaxresdefault.jpg","source":"http:\/\/www.youtube.com\/v\/EzgbcyfJgfQ?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000692731781\/picture","id":"100000692731781","link":"http:\/\/www.facebook.com\/profile.php?id=100000692731781","name":"Dimitris Kolovos","type":"user"},"content":"Best instrumental rock song ever","created_at
 ":"Sat, 22 Mar 2014 23:08:23 +0000","id":"1e3b216ddb68ad80e0667fd817b1fa3a","link":"http:\/\/www.facebook.com\/100000692731781_739630136070071","received_at":4743640083920541503,"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/EzgbcyfJgfQ?autohide=1&version=3&autoplay=1","subtype":"video","title":"The Shadows - Apache (1960)","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 23:09:51 +0000"],"hops":[["http:\/\/youtu.be\/EzgbcyfJgfQ"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"","url":"http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ","title":"The Shadows - Apache (1960)","image":"http:\/\/i1.ytimg.com\/vi\/EzgbcyfJgfQ\/maxresdefault.jpg"}],"twitter":[{"player_width":"1440","description":"","player_height":"1080","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/Ezgbcy
 fJgfQ","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/EzgbcyfJgfQ","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ","title":"The Shadows - Apache (1960)","image":"http:\/\/i1.ytimg.com\/vi\/EzgbcyfJgfQ\/maxresdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/EzgbcyfJgfQ"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=EzgbcyfJgfQ"],"retweet_count":[0],"title":["The Shadows - Apache (1960) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=EzgbcyfJgfQ"]}}
-{"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/500728788\/picture","id":"500728788","link":"http:\/\/www.facebook.com\/profile.php?id=500728788","name":"JustinJustin Toca","type":"user"},"created_at":"Sat, 22 Mar 2014 23:15:04 +0000","description":"http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records","id":"500728788_10152086255343789","link":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","message":"Getting some driving music - Jump on it ! \n","name":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQAQT9vSNtgsLHVT&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FV-1mLguIFYQ%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/V-1mLguIFYQ?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/500728788\/picture","id":"500728788","link":"http:\/\/www.facebook.com\/profile.php?id=500728788","name":"JustinJusti
 n Toca","type":"user"},"content":"Getting some driving music - Jump on it ! \n","created_at":"Sat, 22 Mar 2014 23:15:04 +0000","id":"1e3b217ccba4ac00e066f5e6142ea0a6","link":"http:\/\/www.facebook.com\/500728788_10152086255343789","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/V-1mLguIFYQ?autohide=1&version=3&autoplay=1","subtype":"video","title":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 23:15:25 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records"],"keywords":[["incredible","bongo","band","apache","sugar","hill","gang","west","street","mob","break","dance","boogie","sir","mix-a-lot","jump","on","it","mix","remix","fatboy","slim","80s","bre..."]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","
 description":"http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records","url":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","title":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","image":"http:\/\/i1.ytimg.com\/vi\/V-1mLguIFYQ\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"http:\/\/www.mrbongo.com\/products\/bongo-rock 1973 \/ 2006 MGM , Mr Bongo Records","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/V-1mLguIFYQ","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/V-1mLguIFYQ","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ","title":"Incredible Bongo Band - Apache (Grandmaster Flash Mix)","image":"http:\/\/i1.ytimg.com\/vi\/V-1mLguIFYQ\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embe
 d\/V-1mLguIFYQ"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=V-1mLguIFYQ"],"retweet_count":[0],"title":["Incredible Bongo Band - Apache (Grandmaster Flash Mix) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=V-1mLguIFYQ"]}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Photos","author":{"avatar":"https:\/\/graph.facebook.com\/840913406\/picture","id":"840913406","link":"http:\/\/www.facebook.com\/profile.php?id=840913406","name":"James Thomas Blanton","type":"user"},"caption":"abaachi home xx","created_at":"Sat, 22 Mar 2014 23:41:00 +0000","icon":"http:\/\/static.ak.fbcdn.net\/rsrc.php\/v2\/yD\/r\/aS8ecmYRys0.gif","id":"840913406_10152308549513407","link":"http:\/\/www.facebook.com\/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1","name":"Photos from Vallibus Apache Sherwood's post in Cochise Chirichua","og":{"by":"Vallibus Apache Sherwood"},"picture":"http:\/\/photos-g.ak.fbcdn.net\/hphotos-ak-prn2\/t1.0-0\/10001324_480857308708959_468972925_s.jpg","source":"Photos (2305272732)","story":"James Thomas Blanton shared a photo.","story_tags":[[{"name":"James Thomas Blanton","length":20,"type":"user","id":"840913406","offset":0}]],"type":"photo"},"interaction":{"author":{"avatar
 ":"https:\/\/graph.facebook.com\/840913406\/picture","id":"840913406","link":"http:\/\/www.facebook.com\/profile.php?id=840913406","name":"James Thomas Blanton","type":"user"},"content":"James Thomas Blanton shared a photo.","created_at":"Sat, 22 Mar 2014 23:41:00 +0000","id":"1e3b21b6c2d0ae00e066ce9dccf570be","link":"http:\/\/www.facebook.com\/840913406_10152308549513407","received_at":4743640092152795077,"schema":{"version":3},"source":"Photos (2305272732)","subtype":"photo","title":"Photos from Vallibus Apache Sherwood's post in Cochise Chirichua","type":"facebook"},"language":{"confidence":97,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 23:41:43 +0000"],"hops":[["http:\/\/www.facebook.com\/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1"]],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["abaachi home xx"],"lang":["en"]},"normalized_url":["https:\/\/facebook.com\/photo.php?fbid=480857308708959&set=gm.
 1486179081603776&type=1"],"retweet_count":[0],"title":["Photos from Vallibus Apache Sherwood&#039;s... - Vallibus Apache Sherwood | Facebook"],"url":["https:\/\/www.facebook.com\/photo.php?fbid=480857308708959&set=gm.1486179081603776&type=1"]},"salience":{"content":{"entities":[{"name":"James Thomas Blanton","sentiment":0,"confident":1,"label":"Person","evidence":4,"type":"Person","about":1}],"sentiment":0},"title":{"entities":[{"name":"Vallibus Apache Sherwood","sentiment":0,"confident":1,"label":"Company","evidence":4,"type":"Company","about":1}],"sentiment":0}}}
-{"demographic":{"gender":"female"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000721662048\/picture","id":"100000721662048","link":"http:\/\/www.facebook.com\/profile.php?id=100000721662048","name":"Donna Cherylle Chesson","type":"user"},"created_at":"Sat, 22 Mar 2014 23:55:48 +0000","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","id":"2364123362_10152280355698363","likes":{"ids":["100000721662048"],"names":["Donna Cherylle Chesson"]},"link":"http:\/\/youtu.be\/vQObWW06VAM","name":"Sugarhill Gang Apache (Jump On It)","picture":"http:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQCoMqy44HbQW_nR&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FvQObWW06VAM%2Fhqdefault.jpg&l","source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","to":{"ids":["2364123362"],"names":["The Funky Fresh Fans of Felix Hernandez's Rhythm Revue"]},"type":"video"},"
 interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100000721662048\/picture","id":"100000721662048","link":"http:\/\/www.facebook.com\/profile.php?id=100000721662048","name":"Donna Cherylle Chesson","type":"user"},"content":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","created_at":"Sat, 22 Mar 2014 23:55:48 +0000","id":"1e3b21d7d771aa00e066dffa252677c8","link":"http:\/\/www.facebook.com\/2364123362_10152280355698363","mention_ids":["2364123362"],"mentions":["The Funky Fresh Fans of Felix Hernandez's Rhythm Revue"],"schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/vQObWW06VAM?autohide=1&version=3&autoplay=1","subtype":"video","title":"Sugarhill Gang Apache (Jump On It)","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sat, 22 Mar 2014 01:42:36 +0000"],"hops":[["http:\/\/youtu.be\/vQObWW06VAM"]],"meta":{"char
 set":["UTF-8"],"content_type":["text\/html"],"description":["Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!"],"keywords":[["Funky","Pop","Greatness","Awesome"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"Sugarhill Gang Brings You Apache (Jump On It) Enjoy, and thanks for the 1,400 some thousand views. It means a lot. Keep watching!","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VAM","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/vQObWW06VA
 M","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=vQObWW06VAM","title":"Sugarhill Gang Apache (Jump On It)","image":"http:\/\/i1.ytimg.com\/vi\/vQObWW06VAM\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/vQObWW06VAM"}]},"normalized_url":["http:\/\/youtube.com\/watch?v=vQObWW06VAM"],"retweet_count":[0],"title":["Sugarhill Gang Apache (Jump On It) - YouTube"],"url":["http:\/\/www.youtube.com\/watch?v=vQObWW06VAM"]}}
-{"demographic":{"gender":"mostly_male"},"facebook":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004682409587\/picture","id":"100004682409587","link":"http:\/\/www.facebook.com\/profile.php?id=100004682409587","name":"Jose Maria Martinez Leyva","type":"user"},"created_at":"Sun, 23 Mar 2014 00:33:00 +0000","id":"100004682409587_277921899040555","link":"https:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","message":"jajajajajaj esta conmadres\n","name":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQDiGN11mckrPt_6&w=130&h=130&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2Ffm5m5jfQ5ik%2Fhqdefault.jpg","source":"http:\/\/www.youtube.com\/v\/fm5m5jfQ5ik?autohide=1&version=3&autoplay=1","type":"video"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100004682409587\/picture","id":"100004682409587","link":"http:\/\/www.facebook.com\/profile.php?id=100004682409587","name":"Jose Maria Martin
 ez Leyva","type":"user"},"content":"jajajajajaj esta conmadres\n","created_at":"Sun, 23 Mar 2014 00:33:00 +0000","id":"1e3b222afd74a600e066797f81f716ee","link":"http:\/\/www.facebook.com\/100004682409587_277921899040555","schema":{"version":3},"source":"http:\/\/www.youtube.com\/v\/fm5m5jfQ5ik?autohide=1&version=3&autoplay=1","subtype":"video","title":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","type":"facebook"},"language":{"confidence":96,"tag":"es","tag_extended":"es"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:34:12 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"keywords":[["LOS","AMOS","DEL","CAMINO","tropicalisimo","apache","como","camionero","que","soy"]],"lang":["en"],"opengraph":[{"site_name":"YouTube","type":"video","description":"","url":"http:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","title":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","image":"https:\/\/i1.ytimg.com\/vi\
 /fm5m5jfQ5ik\/hqdefault.jpg"}],"twitter":[{"player_width":"640","description":"","player_height":"480","card":"player","app":{"iphone":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fm5m5jfQ5ik","id":"544007664"},"ipad":{"name":"YouTube","url":"vnd.youtube:\/\/watch\/fm5m5jfQ5ik","id":"544007664"},"googleplay":{"name":"YouTube","url":"http:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","id":"com.google.android.youtube"}},"site":"@youtube","url":"http:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik","title":"LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito)","image":"https:\/\/i1.ytimg.com\/vi\/fm5m5jfQ5ik\/hqdefault.jpg","player":"https:\/\/www.youtube.com\/embed\/fm5m5jfQ5ik"}]},"normalized_url":["https:\/\/youtube.com\/watch?v=fm5m5jfQ5ik"],"retweet_count":[0],"title":["LOS AMOS DEL CAMINO (tropicalisimo apache como camionero que soyv.languito) - YouTube"],"url":["https:\/\/www.youtube.com\/watch?v=fm5m5jfQ5ik"]}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"caption":"m.accuweather.com","created_at":"Sun, 23 Mar 2014 00:41:44 +0000","description":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","id":"100002325709380_610404682380383","link":"http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814","name":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fincludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wi
 ldflowers-antelope-valley-california.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"content":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","created_at":"Sun, 23 Mar 2014 00:41:44 +0000","id":"1e3b223e82b5a400e066632d393e4a54","link":"http:\/\/www.facebook.com\/100002325709380_610404682380383","received_at":4743640107400037610,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 20
 14 00:42:07 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":["Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com"],"keywords":[["Apache Junction","AZ 85120","15 day weather forecast","10 day weather forecast","weather forecast"]],"lang":["unknown"]},"normalized_url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"],"retweet_count":[0],"title":["Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120"],"url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"]},"salience":{"content":{"entities":[{"name":"AccuWeather.com","sentiment":0,"confident":1,"label":"Company","evidence":2,"type":"Company","about":1,"themes":["weather forecast","Extended forecast"]},{"name":"Apache Junction, AZ","sentiment":0,"confident":1,"label":"city","evidence":
 2,"type":"Place","about":1,"themes":["weather forecast","Extended forecast"]},{"name":"85120","sentiment":1,"confident":1,"label":"postcode","evidence":6,"type":"Place","about":1,"themes":["weather forecast","Extended forecast"]}],"sentiment":1,"topics":[{"name":"Weather","score":0.89863264560699,"additional":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","hits":0}]},"title":{"entities":[{"name":"85120","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0,"topics":[{"name":"Weather","score":0.9952420592308,"additional":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","hits":0}]}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"caption":"m.accuweather.com","created_at":"Sun, 23 Mar 2014 00:45:41 +0000","description":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","id":"100002325709380_610405619046956","link":"http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814","message":"Its actually 84 right now! For a month or more already!","name":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2Fpub%2Fi
 ncludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"content":"Its actually 84 right now! For a month or more already!","created_at":"Sun, 23 Mar 2014 00:45:41 +0000","id":"1e3b224756eaa880e066a75a6320b04a","link":"http:\/\/www.facebook.com\/100002325709380_610405619046956","received_at":4743640108424891046,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:42:07 +0000"],"meta":{"charset":["UTF-8"],"content_typ
 e":["text\/html"],"description":["Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com"],"keywords":[["Apache Junction","AZ 85120","15 day weather forecast","10 day weather forecast","weather forecast"]],"lang":["unknown"]},"normalized_url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"],"retweet_count":[0],"title":["Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120"],"url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"]},"salience":{"content":{"sentiment":0},"title":{"entities":[{"name":"85120","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0,"topics":[{"name":"Weather","score":0.9952420592308,"additional":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","hits":0}]}}}
-{"demographic":{"gender":"female"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"caption":"m.accuweather.com","created_at":"Sun, 23 Mar 2014 00:49:19 +0000","description":"Apache Junction weather forecast from AccuWeather.com. Extended forecast in Apache Junction, AZ 85120 for up to 25 days includes high temperature, RealFeel and chance of precipitation","id":"100002325709380_610406239046894","link":"http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814","message":"It's actually 84 right now and for the past month or more now!","name":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQA6FSpGj5OkHiXa&w=154&h=154&url=http%3A%2F%2Fvortex.accuweather.com%2Fadc2004%2F
 pub%2Fincludes%2Fcolumns%2Fthirdpartycontent%2F2014%2F300x140_03171454_1-wildflowers-antelope-valley-california.jpg","source":"Facebook for Android (350685531728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100002325709380\/picture","id":"100002325709380","link":"http:\/\/www.facebook.com\/profile.php?id=100002325709380","name":"Cynthia Bell","type":"user"},"content":"It's actually 84 right now and for the past month or more now!","created_at":"Sun, 23 Mar 2014 00:49:19 +0000","id":"1e3b224f75eda180e066b380e63809ce","link":"http:\/\/www.facebook.com\/100002325709380_610406239046894","received_at":4743640109365516567,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","type":"facebook"},"language":{"confidence":98,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:42:07 +0000"],"meta":{"charset":["UTF-8"
 ],"content_type":["text\/html"],"description":["Get the Apache Junction, AZ 85120 extended 15 day weather forecast including high temperature, RealFeel and chance of precipitation from AccuWeather.com"],"keywords":[["Apache Junction","AZ 85120","15 day weather forecast","10 day weather forecast","weather forecast"]],"lang":["unknown"]},"normalized_url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"],"retweet_count":[0],"title":["Weather in Apache Junction - AccuWeather Extended Forecast for AZ, 85120"],"url":["http:\/\/m.accuweather.com\/en\/us\/apache-junction-az\/85120\/extended-weather-forecast\/331814"]},"salience":{"content":{"sentiment":-1},"title":{"entities":[{"name":"85120","sentiment":0,"confident":1,"label":"postcode","evidence":4,"type":"Place","about":1}],"sentiment":0,"topics":[{"name":"Weather","score":0.9952420592308,"additional":"Weather in Apache Junction - AccuWeather Forecast for AZ 85120","hits":0}]}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100001298390976\/picture","id":"100001298390976","link":"http:\/\/www.facebook.com\/profile.php?id=100001298390976","name":"Wayne Lewis","type":"user"},"caption":"www.thesaltyshrimper.com","created_at":"Sun, 23 Mar 2014 00:57:09 +0000","description":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast.  At the docks in Venice were the twin boats the Apache Trails and the...","id":"100001298390976_643096572410283","link":"http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html","name":"The Apache Drums:  A  Model  Tribute","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCvjt9aP7_rnSKZ&w=154&h=154&url=http%3A%2F%2Fwww.thesaltyshrimper.com%2Fuploads%2F2%2F4%2F5%2F4%2F24542146%2F841191_orig.jpg","source":"Facebook for Android (35068553
 1728)","type":"link"},"interaction":{"author":{"avatar":"https:\/\/graph.facebook.com\/100001298390976\/picture","id":"100001298390976","link":"http:\/\/www.facebook.com\/profile.php?id=100001298390976","name":"Wayne Lewis","type":"user"},"content":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast.  At the docks in Venice were the twin boats the Apache Trails and the...","created_at":"Sun, 23 Mar 2014 00:57:09 +0000","id":"1e3b2260f832a080e066cb5e859afa7e","link":"http:\/\/www.facebook.com\/100001298390976_643096572410283","received_at":4743640111346820212,"schema":{"version":3},"source":"Facebook for Android (350685531728)","subtype":"link","title":"The Apache Drums:  A  Model  Tribute","type":"facebook"},"language":{"confidence":99,"tag":"en","tag_extended":"en"},"links":{"code":[200],"created_at":["Sun, 23 Mar 2014 00:57:49 +0000"],"meta":{"charset":["UTF-8"],"content_type":["text\/html"],"description":[
 "Articles and stories about shrimp and shrimping."],"lang":["unknown"],"opengraph":[{"site_name":"TheSaltyShrimper","description":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast. At the docks in Venice were the twin boats the Apache Trails and the...","url":"http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html","title":"The Apache Drums: A Model Tribute","image":"http:\/\/www.thesaltyshrimper.com\/uploads\/2\/4\/5\/4\/24542146\/9884800.jpg"}]},"normalized_url":["http:\/\/thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html"],"retweet_count":[0],"title":["The Apache Drums: A Model Tribute - TheSaltyShrimper"],"url":["http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html"]},"salience":{"content":{"sentiment":0},"title":{"sentiment":0}}}
-{"demographic":{"gender":"male"},"facebook":{"application":"Facebook for Android","author":{"avatar":"https:\/\/graph.facebook.com\/100001298390976\/picture","id":"100001298390976","link":"http:\/\/www.facebook.com\/profile.php?id=100001298390976","name":"Wayne Lewis","type":"user"},"caption":"www.thesaltyshrimper.com","created_at":"Sun, 23 Mar 2014 01:04:16 +0000","description":"Hurricane Katrina slammed into Louisiana on August 29th, 2005 - a date that will never be forgotten by many on the Gulf coast.  At the docks in Venice were the twin boats the Apache Trails and the...","id":"100001298390976_643107672409173","link":"http:\/\/www.thesaltyshrimper.com\/1\/post\/2014\/03\/the-apache-drums-a-model-tribute.html","name":"The Apache Drums:  A  Model  Tribute","picture":"http:\/\/external.ak.fbcdn.net\/safe_image.php?d=AQCvjt9aP7_rnSKZ&w=154&h=154&url=http%3A%2F%2Fwww.thesaltyshrimper.com%2Fuploads%2F2%2

<TRUNCATED>

[34/45] Fixed datasift test data files format

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/9fdcd8a5/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt b/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
index aff0c1c..946f968 100644
--- a/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
+++ b/streams-contrib/streams-provider-datasift/src/test/resources/twitter_datasift_json.txt
@@ -1,1000 +1,1000 @@
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"web\",\"author\":{\"username\":\"knknnmla\",\"name\":\"Mr.President\",\"id\":1926634310,\"avatar\":\"http://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg\",\"link\":\"http://twitter.com/knknnmla\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:34 +0000\",\"received_at\":1.4014686953022E9,\"content\":\"@AHGundarangan soccer player napala itsuuu hahaha\",\"id\":\"1e3e81aa833aaf00e074bb7a2fe8b77a\",\"link\":\"http://twitter.com/knknnmla/status/472420063447105536\",\"mentions\":[\"AHGundarangan\"],\"mention_ids\":[2270040210]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":97},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:34 +0000\",\"filter_level\":\"medium\",\"id\":\"472420063447105536\",\"in_reply_to_screen_name\":\"AHGundarangan\",\"in_reply_to_status_id\":\"472419291711561728\",\"in_reply_to_user_id\":\"2270040210\",\"lang\":\"tl\",\"menti
 on_ids\":[2270040210],\"mentions\":[\"AHGundarangan\"],\"source\":\"web\",\"text\":\"@AHGundarangan soccer player napala itsuuu hahaha\",\"user\":{\"name\":\"Mr.President\",\"url\":\"http://www.Facebook.com/FING3R.BOARD\",\"description\":\"Fingerborder,beatboxer,Soccerplayer.#DUBSTEP #HIP-HOP #DOTA2 #GAMER Clockwerk ng mundo\",\"location\":\"San Francisco, California\",\"statuses_count\":5602,\"followers_count\":393,\"friends_count\":403,\"screen_name\":\"knknnmla\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/460720489283862528/gjztG6NW_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Beijing\",\"utc_offset\":28800,\"listed_count\":0,\"id\":1926634310,\"id_str\":\"1926634310\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1319,\"created_at\":\"Wed, 02 Oct 2013 11:50:37 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"amberhopf13\",\"name\":\"Amber\",\"id\":2257041132,\"avatar\":\"http://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg\",\"link\":\"http://twitter.com/amberhopf13\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:37 +0000\",\"received_at\":1.4014686975912E9,\"content\":\"@KayKay9972 I've seen better tennis playing in a tampon commercial...\",\"id\":\"1e3e81aa9fd7a280e074f411f586dd00\",\"link\":\"http://twitter.com/amberhopf13/status/472420073106595840\",\"mentions\":[\"KayKay9972\"],\"mention_ids\":[593298084]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:37 +0000\",\"filter_level\":\"medium\",\"id\":\"472420073106595840\",\"in_reply_to_screen_name\":\"KayKay9972\",\"in_reply_to_status_id\":\"4724198817246
 86336\",\"in_reply_to_user_id\":\"593298084\",\"lang\":\"en\",\"mention_ids\":[593298084],\"mentions\":[\"KayKay9972\"],\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"text\":\"@KayKay9972 I've seen better tennis playing in a tampon commercial...\",\"user\":{\"name\":\"Amber\",\"statuses_count\":439,\"followers_count\":157,\"friends_count\":407,\"screen_name\":\"amberhopf13\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/471146616426987520/6Zl6RJt9_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":2257041132,\"id_str\":\"2257041132\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":792,\"created_at\":\"Sat, 21 Dec 2013 23:30:00 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Sprout Social\",\"author\":{\"username\":\"MrSuperFatso\",\"name\":\"Mister Fatso\",\"id\":2306729970,\"avatar\":\"http://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg\",\"link\":\"http://twitter.com/MrSuperFatso\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:11 +0000\",\"received_at\":1.4014686715201E9,\"content\":\"Who doesn't love a good sweater vest? #Golf fashion advice for women via @GolfDigestMag http://t.co/ghmJGqncms\",\"id\":\"1e3e81a9a7e2a980e074f613deb99c34\",\"link\":\"http://twitter.com/MrSuperFatso/status/472419963701952512\",\"mentions\":[\"GolfDigestMag\"],\"mention_ids\":[22146985],\"hashtags\":[\"Golf\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 15:28:02 +0000\"],\"hops\":[[\"http://golfdig.st/1tX2c9F\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[
 \"text/html\"],\"description\":[\"By Ashley Mayo As part of my quest to help female golfers look more stylish and feel more comfortable on the course, I’m going to highlight one outfit per week, from Memorial Day through Labor Day. Last week, I...\"],\"keywords\":[[\"ashley mayo\",\"athleta\",\"gfore\",\"lija\",\"style for her\",\"true linkswear\"]],\"lang\":[\"en-us\"],\"opengraph\":[{\"image\":\"http://subscribe.condenet.com/images_covers/cover_golfdigest_80.jpg?fbrefresh=20140530\",\"site_name\":\"Golf Digest\",\"title\":\"Style For Her: Long live the sweater vest: The Loop\",\"url\":\"http://www.golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html\",\"type\":\"article\"}]},\"normalized_url\":[\"http://golfdigest.com/blogs/the-loop/2014/05/style-for-her-long-live-the-sw.html\"],\"retweet_count\":[0],\"title\":[\"Style For Her: Long Live The Sweater Vest: The Loop : Golf Digest\"],\"url\":[\"http://www.golfdigest.com/blogs/the-loop/2014/05/style-for-her-long
 -live-the-sw.html\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:11 +0000\",\"display_urls\":[\"golfdig.st/1tX2c9F\"],\"domains\":[\"golfdig.st\"],\"filter_level\":\"medium\",\"hashtags\":[\"Golf\"],\"id\":\"472419963701952512\",\"lang\":\"en\",\"links\":[\"http://golfdig.st/1tX2c9F\"],\"mention_ids\":[22146985],\"mentions\":[\"GolfDigestMag\"],\"source\":\"<a href=\\\"http://sproutsocial.com\\\" rel=\\\"nofollow\\\">Sprout Social</a>\",\"text\":\"Who doesn't love a good sweater vest? #Golf fashion advice for women via @GolfDigestMag http://t.co/ghmJGqncms\",\"user\":{\"name\":\"Mister Fatso\",\"url\":\"http://superstrokeusa.com\",\"description\":\"Sinking putts. Being Super. Let's hit the green, you and me. @SuperStrokeGolf\",\"location\":\"USA\",\"statuses_count\":106,\"followers_count\":58,\"friends_count\":8,\"screen_name\":\"MrSuperFatso\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg\",\"profile_image_url_https\":
 \"https://pbs.twimg.com/profile_images/426372971255459840/BO8w52Bk_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Central Time (US & Canada)\",\"utc_offset\":-18000,\"listed_count\":1,\"id\":2306729970,\"id_str\":\"2306729970\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":42,\"created_at\":\"Thu, 23 Jan 2014 14:53:18 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"dlvr.it\",\"author\":{\"username\":\"PasadenaCAPatch\",\"name\":\"Pasadena CA Patch\",\"id\":807836286,\"avatar\":\"http://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg\",\"link\":\"http://twitter.com/PasadenaCAPatch\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:37 +0000\",\"received_at\":1.4014686973454E9,\"content\":\"Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree http://t.co/dNy3uwA60c\",\"id\":\"1e3e81aa9fd7a280e074fb2e9dbb1b3c\",\"link\":\"http://twitter.com/PasadenaCAPatch/status/472420072363798528\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:51:38 +0000\"],\"hops\":[[\"http://dlvr.it/5qc3Y9\",\"http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004?utm_source=d
 lvr.it&utm_medium=twitter\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"The appropriately named California Chrome could be the first triple crown winner in 36 years. After all, he was the first Californian to win the Kentu\"],\"lang\":[\"unknown\"],\"opengraph\":[{\"image\":\"http://pasadena-ca.patch.com/img/facebook-icon.png\"}]},\"normalized_url\":[\"http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004\"],\"retweet_count\":[0],\"title\":[\"Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree - Sports - Pasadena, CA Patch\"],\"url\":[\"http://pasadena-ca.patch.com/groups/sports/p/triple-crown-hopes-of-entire-state-rest-on-a-horse-of-modest-pedigree3343004\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:37 +0000\",\"display_urls\":[\"dlvr.it/5qc3Y9\"],\"domains\":[\"dlvr.it\"],\"filter_level\":\"medium\",\"id\":\"472420072363798528\",\"lang\":\"
 en\",\"links\":[\"http://dlvr.it/5qc3Y9\"],\"source\":\"<a href=\\\"http://dlvr.it\\\" rel=\\\"nofollow\\\">dlvr.it</a>\",\"text\":\"Triple Crown: Hopes of Entire State Rest on a Horse of Modest Pedigree http://t.co/dNy3uwA60c\",\"user\":{\"name\":\"Pasadena CA Patch\",\"url\":\"http://Pasadena-CA.Patch.com\",\"description\":\"#PasadenaCA #Patch (Pasadena-CA@Patch.com) is your source for all things local. See news, share events, photos.\",\"location\":\"Pasadena, CA\",\"statuses_count\":2918,\"followers_count\":1394,\"friends_count\":110,\"screen_name\":\"PasadenaCAPatch\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/2628322255/dc48372baa1e741a811dc80ff239ef19_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Atlantic Time (Canada)\",\"utc_offset\":-10800,\"listed_count\":29,\"id\":807836286,\"id_str\":\"807836286\",\"geo_enabled\":false,\"verified\
 ":false,\"favourites_count\":104,\"created_at\":\"Fri, 07 Sep 2012 00:04:02 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"AndrewYee96\",\"name\":\"Andrew Yee\",\"id\":304849703,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg\",\"link\":\"http://twitter.com/AndrewYee96\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:38 +0000\",\"received_at\":1.4014686989583E9,\"content\":\"Great day for Canadian tennis. Good luck to @milosraonic and @geniebouchard #FrenchOpen #deuce\",\"id\":\"1e3e81aaa960a900e074c8a9dd94b27a\",\"link\":\"http://twitter.com/AndrewYee96/status/472420079125016577\",\"mentions\":[\"milosraonic\",\"geniebouchard\"],\"mention_ids\":[35441526,52818366],\"hashtags\":[\"FrenchOpen\",\"deuce\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":97},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:38 +0000\",\"filter_level\":\"mediu
 m\",\"hashtags\":[\"FrenchOpen\",\"deuce\"],\"id\":\"472420079125016577\",\"lang\":\"en\",\"mention_ids\":[35441526,52818366],\"mentions\":[\"milosraonic\",\"geniebouchard\"],\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"text\":\"Great day for Canadian tennis. Good luck to @milosraonic and @geniebouchard #FrenchOpen #deuce\",\"user\":{\"name\":\"Andrew Yee\",\"description\":\"This is the verified account for Andrew Yee.\",\"statuses_count\":434,\"followers_count\":72,\"friends_count\":282,\"screen_name\":\"AndrewYee96\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000639703520/bb2a9f53fa5014dd9e423436b778d01b_normal.jpeg\",\"lang\":\"en\",\"listed_count\":1,\"id\":304849703,\"id_str\":\"304849703\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":7,\"cre
 ated_at\":\"Wed, 25 May 2011 06:34:24 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPad\",\"author\":{\"username\":\"khalisxx\",\"name\":\"☠\",\"id\":536501749,\"avatar\":\"http://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg\",\"link\":\"http://twitter.com/khalisxx\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:38 +0000\",\"received_at\":1.401468698727E9,\"content\":\"RT @england: Gerrard scores @England's second with a left-foot cracker v Trinidad &amp; Tobago at the 2006 World Cup in a 2-0 win http://t.co/KdirmxVmgV\",\"id\":\"1e3e81aaa960a900e0745beb9b0d31f2\",\"link\":\"http://twitter.com/khalisxx/status/472420078060068864\",\"mentions\":[\"england\",\"england\"],\"mention_ids\":[1903382054]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"id\":\"472420078060068864\",\"retweet\":{\"text\":\"Gerrard scores @England's second with a left-foot cracker v Trinidad &amp; Tobago at the 2006 World C
 up in a 2-0 win http://t.co/KdirmxVmgV\",\"id\":\"472420078060068864\",\"user\":{\"name\":\"☠\",\"url\":\"http://instagram.com/khaliskuasa2\",\"description\":\"Ain't it cool...!! Anak Pak Kamsul in da house..! ♥ #LFC #YNWA\",\"location\":\"jangan nak sebok la..\",\"statuses_count\":70771,\"followers_count\":178,\"friends_count\":163,\"screen_name\":\"khalisxx\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/417998772908871680/8yDeFdRx_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Kuala Lumpur\",\"utc_offset\":28800,\"listed_count\":0,\"id\":536501749,\"id_str\":\"536501749\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":103,\"created_at\":\"Sun, 25 Mar 2012 17:44:57 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/#!/download/ipad\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\",\"count\":146,\"created_at\":\"Fri, 30 May 2014 16:51:38 +0000\
 ",\"mentions\":[\"england\",\"england\"],\"mention_ids\":[1903382054],\"media\":[{\"id\":472325338131742721,\"id_str\":\"472325338131742721\",\"media_url\":\"http://pbs.twimg.com/media/Bo4JZH3CQAEYbkX.jpg\",\"media_url_https\":\"https://pbs.twimg.com/media/Bo4JZH3CQAEYbkX.jpg\",\"url\":\"http://t.co/KdirmxVmgV\",\"display_url\":\"pic.twitter.com/KdirmxVmgV\",\"expanded_url\":\"http://twitter.com/england/status/472325339025530880/photo/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":339,\"h\":221,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":599,\"h\":390,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":625,\"resize\":\"fit\"}}}],\"filter_level\":\"low\",\"lang\":\"en\"},\"retweeted\":{\"id\":\"472325339025530880\",\"user\":{\"name\":\"England\",\"url\":\"http://www.TheFA.com/England\",\"description\":\"The official feed of the England Football Team with the latest news and updates from all the Three Lions squads\",\"location\":\"Wembley S
 tadium, England\",\"statuses_count\":395,\"followers_count\":134957,\"friends_count\":85,\"screen_name\":\"england\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/441233401081647106/1o3VA7cl_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/441233401081647106/1o3VA7cl_normal.jpeg\",\"lang\":\"en-gb\",\"time_zone\":\"London\",\"utc_offset\":3600,\"listed_count\":468,\"id\":1903382054,\"id_str\":\"1903382054\",\"geo_enabled\":false,\"verified\":true,\"favourites_count\":133,\"created_at\":\"Wed, 25 Sep 2013 08:23:07 +0000\"},\"source\":\"web\",\"created_at\":\"Fri, 30 May 2014 10:35:10 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"n_abouhanna\",\"name\":\"nicolas abouhanna \",\"id\":705491522,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg\",\"link\":\"http://twitter.com/n_abouhanna\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:39 +0000\",\"received_at\":1.4014687000811E9,\"content\":\"The funniest thing are girls that think they know hockey but really just wanna sleep with hockey players\",\"id\":\"1e3e81aab2e9af80e074ee9f9e30a6d6\",\"link\":\"http://twitter.com/n_abouhanna/status/472420082707349505\",\"geo\":{\"latitude\":45.27294124,\"longitude\":-75.7372412}},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":99},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:39 +0000\",\"filter_level\":\"medium\",\"geo\":{\"latitude\":45.27294124,\"longit
 ude\":-75.7372412},\"id\":\"472420082707349505\",\"lang\":\"en\",\"place\":{\"id\":\"38d5974e82ed1a6c\",\"url\":\"https://api.twitter.com/1.1/geo/id/38d5974e82ed1a6c.json\",\"place_type\":\"city\",\"country\":\"Canada\",\"country_code\":\"CA\",\"full_name\":\"Ottawa, Ontario\",\"name\":\"Ottawa\",\"attributes\":{}},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"text\":\"The funniest thing are girls that think they know hockey but really just wanna sleep with hockey players\",\"user\":{\"name\":\"nicolas abouhanna \",\"description\":\"#teamfollowback\",\"statuses_count\":113,\"followers_count\":91,\"friends_count\":173,\"screen_name\":\"n_abouhanna\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000848601681/08fdcd2d8e84b65fa503f69f49d0b375_normal.jpeg\",\"lang\":\"en\"
 ,\"time_zone\":\"Atlantic Time (Canada)\",\"utc_offset\":-10800,\"listed_count\":0,\"id\":705491522,\"id_str\":\"705491522\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":50,\"created_at\":\"Thu, 19 Jul 2012 17:49:44 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for BlackBerry®\",\"author\":{\"username\":\"Bellotsoho\",\"name\":\"#BokoHaramIsNotIslam\",\"id\":493031077,\"avatar\":\"http://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg\",\"link\":\"http://twitter.com/Bellotsoho\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:39 +0000\",\"received_at\":1.4014686998544E9,\"content\":\"RT @ESPNFC: No. 39 - Italy's rock at the back, GK Gigi Buffon will play in his 4th World Cup #WorldCupRank http://t.co/e4GarGMt3d http://t.co/WMsROdzOZX\",\"id\":\"1e3e81aab2e9af80e0741ee6a96d3540\",\"link\":\"http://twitter.com/Bellotsoho/status/472420081579073536\",\"mentions\":[\"ESPNFC\"],\"hashtags\":[\"WorldCupRank\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:45:31 +0000\"],\"hops\":[[\"http://es.pn/1kQYYRS\",\"http://www.espnfc.com/news/st
 ory/_/id/1819471/2014-world-cup-#worldcuprank-no-39-gianluigi-buffon-italy-juventus?cc=5901&cc=5901\"]],\"meta\":{\"charset\":[\"CP1252\"],\"content_type\":[\"text/html\"],\"description\":[\"Ranking the Top 50 players likely to shine at the 2014 World Cup\"],\"lang\":[\"unknown\"],\"opengraph\":[{\"title\":\"#WorldCupRank: No. 39 Gianluigi Buffon\",\"url\":\"http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-#worldcuprank-no-39-gianluigi-buffon-italy-juventus\",\"description\":\"Ranking the Top 50 players likely to shine at the 2014 World Cup\",\"site_name\":\"ESPNFC\"}]},\"normalized_url\":[\"http://espnfc.com/news/story/_/id/1819471/2014-world-cup-\"],\"retweet_count\":[0],\"title\":[\"2014 World Cup - #WorldCupRank - No. 39 Gianluigi Buffon of Italy and Juventus - ESPN FC\"],\"url\":[\"http://www.espnfc.com/news/story/_/id/1819471/2014-world-cup-\"]},\"twitter\":{\"id\":\"472420081579073536\",\"retweet\":{\"text\":\"No. 39 - Italy's rock at the back, GK Gigi Buffon will
  play in his 4th World Cup #WorldCupRank http://t.co/e4GarGMt3d http://t.co/WMsROdzOZX\",\"id\":\"472420081579073536\",\"user\":{\"name\":\"#BokoHaramIsNotIslam\",\"description\":\"It's my life,I'll live it,I'll love it,and I won't care what you think of it.\",\"location\":\"Sokoto,Nigeria.\",\"statuses_count\":9309,\"followers_count\":197,\"friends_count\":698,\"screen_name\":\"Bellotsoho\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/426512832973533184/5EjmmFeQ_normal.jpeg\",\"lang\":\"en\",\"listed_count\":1,\"id\":493031077,\"id_str\":\"493031077\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":9,\"created_at\":\"Wed, 15 Feb 2012 11:20:10 +0000\"},\"source\":\"<a href=\\\"http://blackberry.com/twitter\\\" rel=\\\"nofollow\\\">Twitter for BlackBerry®</a>\",\"count\":30,\"created_at\":\"Fri, 30 May 2014 16:51:39 +0000\",\"mentions\":[\"ESPNFC\"
 ],\"links\":[\"http://es.pn/1kQYYRS\"],\"display_urls\":[\"es.pn/1kQYYRS\"],\"domains\":[\"es.pn\"],\"hashtags\":[\"WorldCupRank\"],\"media\":[{\"id\":472418530491498496,\"id_str\":\"472418530491498496\",\"media_url\":\"http://pbs.twimg.com/media/Bo5eJodCAAA6jZP.jpg\",\"media_url_https\":\"https://pbs.twimg.com/media/Bo5eJodCAAA6jZP.jpg\",\"url\":\"http://t.co/WMsROdzOZX\",\"display_url\":\"pic.twitter.com/WMsROdzOZX\",\"expanded_url\":\"http://twitter.com/ESPNFC/status/472418530994827264/photo/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":463,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":262,\"resize\":\"fit\"},\"large\":{\"w\":1023,\"h\":791,\"resize\":\"fit\"}}}],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472418530994827264\",\"user\":{\"name\":\"ESPN FC\",\"url\":\"http://www.espnfc.com\",\"description\":\"All the latest football news and opinion\",\"location\":\"At the football, mainly\",\"statuses_count\":48528
 ,\"followers_count\":415079,\"friends_count\":281,\"screen_name\":\"ESPNFC\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000861375426/iRq_tDyJ_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000861375426/iRq_tDyJ_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"London\",\"utc_offset\":3600,\"listed_count\":5621,\"id\":18091004,\"id_str\":\"18091004\",\"geo_enabled\":false,\"verified\":true,\"favourites_count\":55,\"created_at\":\"Sat, 13 Dec 2008 01:33:04 +0000\"},\"source\":\"<a href=\\\"http://poptip.com\\\" rel=\\\"nofollow\\\">Poptip</a>\",\"created_at\":\"Fri, 30 May 2014 16:45:29 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Sendible\",\"author\":{\"username\":\"rugbybizz\",\"name\":\"Rugbybiz\",\"id\":2489867288,\"avatar\":\"http://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png\",\"link\":\"http://twitter.com/rugbybizz\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:38 +0000\",\"received_at\":1.4014686990793E9,\"content\":\"RT @HarveyLZ: Leaving campus now to head upstate for NY State Rugby Championships.  Match tomorrow at 2:00. #rugby\",\"id\":\"1e3e81aaa960a900e074f91cd905be10\",\"link\":\"http://twitter.com/rugbybizz/status/472420078764703744\",\"mentions\":[\"HarveyLZ\"],\"hashtags\":[\"rugby\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"id\":\"472420078764703744\",\"retweet\":{\"text\":\"Leaving campus now to head upstate for NY State Rugby Championships.  Match tomorrow at 2:00. #rugby\",\"id\":\"472420078764703744\",\"user\":{\"name\":\
 "Rugbybiz\",\"url\":\"http://www.byaonline.co.uk\",\"description\":\"Promoting SME business in locally in Rugby & Nationally through the BYAO network\",\"location\":\"Rugby\",\"statuses_count\":1124,\"followers_count\":418,\"friends_count\":869,\"screen_name\":\"rugbybizz\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/465490319497113600/WqYgjPHE_normal.png\",\"lang\":\"en\",\"listed_count\":1,\"id\":2489867288,\"id_str\":\"2489867288\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1,\"created_at\":\"Sun, 11 May 2014 13:44:25 +0000\"},\"source\":\"<a href=\\\"http://sendible.com\\\" rel=\\\"nofollow\\\">Sendible</a>\",\"count\":1,\"created_at\":\"Fri, 30 May 2014 16:51:38 +0000\",\"mentions\":[\"HarveyLZ\"],\"hashtags\":[\"rugby\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472416935184179200\",\"user\":{\"name\":\"Philip Lazzaro\",\"description\":\
 "Head of Upper School @ The Harvey School - an independent 6-12 school in Westchester County\",\"statuses_count\":823,\"followers_count\":176,\"friends_count\":413,\"screen_name\":\"HarveyLZ\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/3167815962/12bdb73d9c28cd2f520e1d1018a23e61_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/3167815962/12bdb73d9c28cd2f520e1d1018a23e61_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"utc_offset\":-14400,\"listed_count\":0,\"id\":1024888153,\"id_str\":\"1024888153\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":588,\"created_at\":\"Thu, 20 Dec 2012 19:35:03 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"created_at\":\"Fri, 30 May 2014 16:39:09 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"female\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"ValCoppola79\",\"name\":\"Valeria Coppola\",\"id\":1596774792,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg\",\"link\":\"http://twitter.com/ValCoppola79\",\"language\":\"es\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:25 +0000\",\"received_at\":1.4014686858901E9,\"content\":\"RT @MotoGP: #MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \\nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI\",\"id\":\"1e3e81aa2d66a480e07418fc274b9266\",\"link\":\"http://twitter.com/ValCoppola79/status/472420022699446273\",\"mentions\":[\"ValeYellow46\",\"MotoGP\"],\"mention_ids\":[386420143],\"hashtags\":[\"MotoGP\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"F
 ri, 30 May 2014 16:22:57 +0000\"],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news.\"],\"keywords\":[[\"MotoGP World Championship\",\"MotoGP\",\"Moto2\",\"Moto3\",\"Official Website\",\"motogp.com\",\"Live Video\",\"Live Timing\",\"Live Experience\",\"High Resolution\",\"VideoPass\",\"Valentino Rossi\",\"Marc Marquez\",\"Honda\",\"Jorge Lorenzo\",\"Motorbike\",\"race tickets\",\"paddock girls\",\"vip village\",\"Calendar\",\"after the flag\",\"no spoiler\",\"Time Schedule\",\"News\",\"RSS\",\"BMW\",\"Tissot\",\"Aperol\",\"Bridgestone\",\"Dani Pedrosa\",\"Casey Stoner\",\"Toni Elias\"]],\"lang\":[\"en\"],\"opengraph\":[{\"title\":\"motogp.com · Latest Photos\",\"description\":\"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news.\"}],\"twitter\":[{\"card\":\"summa
 ry\",\"site\":\"@motogp\",\"url\":\"http://www.motogp.com/en/photos/latest photos\",\"title\":\"motogp.com · Latest Photos\",\"description\":\"The official website of MotoGP, Moto2 and Moto3, includes Live Video coverage, premium content and all the latest news.\"}]},\"normalized_url\":[\"http://motogp.com/en/photos/latest+photos\"],\"retweet_count\":[0],\"title\":[\"motogp.com · Latest Photos\"],\"url\":[\"http://www.motogp.com/en/photos/latest+photos\"]},\"twitter\":{\"id\":\"472420022699446273\",\"retweet\":{\"text\":\"#MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \\nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI\",\"id\":\"472420022699446273\",\"user\":{\"name\":\"Valeria Coppola\",\"statuses_count\":58,\"followers_count\":5,\"friends_count\":16,\"screen_name\":\"ValCoppola79\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg\",\"profile_image_url_https\":\
 "https://pbs.twimg.com/profile_images/378800000139397513/50ce4e71031a958851879fb536035450_normal.jpeg\",\"lang\":\"es\",\"listed_count\":0,\"id\":1596774792,\"id_str\":\"1596774792\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":101,\"created_at\":\"Mon, 15 Jul 2013 21:30:40 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"count\":475,\"created_at\":\"Fri, 30 May 2014 16:51:25 +0000\",\"mentions\":[\"ValeYellow46\",\"MotoGP\"],\"mention_ids\":[386420143],\"links\":[\"http://www.motogp.com/en/photos/latest+photos\"],\"display_urls\":[\"motogp.com/en/photos/late…\"],\"domains\":[\"www.motogp.com\"],\"hashtags\":[\"MotoGP\"],\"media\":[{\"id\":472412807162769408,\"id_str\":\"472412807162769408\",\"media_url\":\"http://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg\",\"media_url_https\":\"https://pbs.twimg.com/media/Bo5Y8fZIMAARAG5.jpg\",\"url\":\"http://t.co/vynRa1k4zI\",\"display_url\":\"pic.twitter.com
 /vynRa1k4zI\",\"expanded_url\":\"http://twitter.com/MotoGP/status/472412808504967168/photo/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"medium\":{\"w\":599,\"h\":337,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"}}}],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472412808504967168\",\"user\":{\"name\":\"MotoGP™\",\"url\":\"http://www.motogp.com\",\"description\":\"Official Twitter Feed of the MotoGP™ World Championship\",\"location\":\"All around the world\",\"statuses_count\":15839,\"followers_count\":945262,\"friends_count\":403,\"screen_name\":\"MotoGP\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png\",\"lang\":\"en\",\"time_zone\":\"London\",\"utc_offset\":3600,\"listed_count\":7411,\"id\":14082692,\"id_str
 \":\"14082692\",\"geo_enabled\":true,\"verified\":true,\"favourites_count\":3,\"created_at\":\"Wed, 05 Mar 2008 11:19:05 +0000\"},\"source\":\"web\",\"created_at\":\"Fri, 30 May 2014 16:22:45 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"web\",\"author\":{\"username\":\"A_Fazhan\",\"name\":\"FazhanNnNnNn\",\"id\":319670217,\"avatar\":\"http://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg\",\"link\":\"http://twitter.com/A_Fazhan\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:42 +0000\",\"received_at\":1.4014687027717E9,\"content\":\"RT @TheTotalLFC: Good to see Liverpool trying to finalise 3/4 deals before the world cup. #lfc\",\"id\":\"1e3e81aacf86a300e074822e109ecf80\",\"link\":\"http://twitter.com/A_Fazhan/status/472420094492962817\",\"mentions\":[\"TheTotalLFC\"],\"hashtags\":[\"lfc\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"id\":\"472420094492962817\",\"retweet\":{\"text\":\"Good to see Liverpool trying to finalise 3/4 deals before the world cup. #lfc\",\"id\":\"472420094492962817\",\"user\":{\"name\":\"FazhanNnNnNn\",\"description\":\"♡The REDS 
 ♡ YNWA ♡ 98'\",\"statuses_count\":16710,\"followers_count\":655,\"friends_count\":485,\"screen_name\":\"A_Fazhan\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/471193854318632961/oBLVcwSV_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Kuala Lumpur\",\"utc_offset\":28800,\"listed_count\":0,\"id\":319670217,\"id_str\":\"319670217\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":1749,\"created_at\":\"Sat, 18 Jun 2011 14:39:37 +0000\"},\"source\":\"web\",\"count\":3,\"created_at\":\"Fri, 30 May 2014 16:51:42 +0000\",\"mentions\":[\"TheTotalLFC\"],\"hashtags\":[\"lfc\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472419990285459458\",\"user\":{\"name\":\"Total LFC\",\"description\":\"Real time updates about everything relating to Liverpool FC.News,Stats,Team sheets,Live  coverage,Pictures,Videos..etc\",\"location\":\"Liverpool\",\"statuses_count\":4354
 9,\"followers_count\":89245,\"friends_count\":1709,\"screen_name\":\"TheTotalLFC\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/2403633752/f21qqa6c7zopx7xmttn2_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/2403633752/f21qqa6c7zopx7xmttn2_normal.png\",\"lang\":\"en\",\"time_zone\":\"London\",\"utc_offset\":3600,\"listed_count\":752,\"id\":296750174,\"id_str\":\"296750174\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":313,\"created_at\":\"Wed, 11 May 2011 10:24:59 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"created_at\":\"Fri, 30 May 2014 16:51:17 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Facebook\",\"author\":{\"username\":\"unisourcesd\",\"name\":\"Unisource San Diego\",\"id\":288513475,\"avatar\":\"http://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg\",\"link\":\"http://twitter.com/unisourcesd\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:50:35 +0000\",\"received_at\":1.4014686362373E9,\"content\":\"Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a... http://t.co/2PFFarmQ7f\",\"id\":\"1e3e81a8508faf80e0743cad6d4797ca\",\"link\":\"http://twitter.com/unisourcesd/status/472419816020905984\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":99},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:51:42 +0000\"],\"hops\":[[\"http://fb.me/3iqEbKs4d\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\
 "Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a awesome beach cruiser for the silent auction!\"],\"lang\":[\"en\"]},\"normalized_url\":[\"https://facebook.com/photo.php?fbid=10152101665750614\"],\"retweet_count\":[0],\"title\":[\"Mobile Uploads - Unisource Solutions San Diego | Facebook\"],\"url\":[\"https://www.facebook.com/photo.php?fbid=10152101665750614\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:50:35 +0000\",\"display_urls\":[\"fb.me/3iqEbKs4d\"],\"domains\":[\"fb.me\"],\"filter_level\":\"medium\",\"id\":\"472419816020905984\",\"lang\":\"en\",\"links\":[\"http://fb.me/3iqEbKs4d\"],\"source\":\"<a href=\\\"http://www.facebook.com/twitter\\\" rel=\\\"nofollow\\\">Facebook</a>\",\"text\":\"Sponsoring the 15th Hole today at the IFMA San Diego Golf Tournament at The Rancho Bernardo Inn! Also brought a... http://t.co/2PFFarmQ7f\",\"user\":{\"name\":\"Unisource San Diego\",\"url\":\"http://www.unisourceit.com\
 ",\"description\":\"Welcome to Simple.\",\"statuses_count\":548,\"followers_count\":200,\"friends_count\":802,\"screen_name\":\"unisourcesd\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/2221176352/U_LOGO_normal.jpg\",\"lang\":\"en\",\"time_zone\":\"Arizona\",\"utc_offset\":-25200,\"listed_count\":0,\"id\":288513475,\"id_str\":\"288513475\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1,\"created_at\":\"Wed, 27 Apr 2011 00:16:54 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"mostly_female\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for BlackBerry\",\"author\":{\"username\":\"NeyHottie\",\"name\":\"12th of June\",\"id\":538452542,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg\",\"link\":\"http://twitter.com/NeyHottie\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:42 +0000\",\"received_at\":1.4014687027966E9,\"content\":\"598kilos of cocaine bound to brazil ahead of the world cup confiscated.\",\"id\":\"1e3e81aacf86a300e074606499c78598\",\"link\":\"http://twitter.com/NeyHottie/status/472420095009251329\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:42 +0000\",\"filter_level\":\"medium\",\"id\":\"472420095009251329\",\"lang\":\"en\",\"source\":\"<a href=\\\"http://www.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Blac
 kBerry</a>\",\"text\":\"598kilos of cocaine bound to brazil ahead of the world cup confiscated.\",\"user\":{\"name\":\"12th of June\",\"description\":\"Not looking for hookups|not tweetin to please\",\"location\":\"God's Feet\",\"statuses_count\":1239,\"followers_count\":89,\"friends_count\":167,\"screen_name\":\"NeyHottie\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000814878691/ec12e9e2cdea8b23d6c7fc28deb3a290_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":538452542,\"id_str\":\"538452542\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":16,\"created_at\":\"Tue, 27 Mar 2012 20:17:44 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"sbaynham87\",\"name\":\"Scott\",\"id\":464546734,\"avatar\":\"http://pbs.twimg.com/profile_images/1756396678/image_normal.jpg\",\"link\":\"http://twitter.com/sbaynham87\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:44 +0000\",\"received_at\":1.4014687044283E9,\"content\":\"RT @MercedesAMGF1: GET VOTING! Retweet for #TheMontREALdeal, favourite for #MapleBeLeaf to be our #CanadianGP hashtag! You have 40mins starting... now! #F1\",\"id\":\"1e3e81aae299a000e0740ce9532cb2c8\",\"link\":\"http://twitter.com/sbaynham87/status/472420102097604608\",\"mentions\":[\"MercedesAMGF1\"],\"hashtags\":[\"TheMontREALdeal\",\"MapleBeLeaf\",\"CanadianGP\",\"F1\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"id\":\"472420102097604608\",\"retweet\":{\"text\":\"GET VOTING! Retweet for
  #TheMontREALdeal, favourite for #MapleBeLeaf to be our #CanadianGP hashtag! You have 40mins starting... now! #F1\",\"id\":\"472420102097604608\",\"user\":{\"name\":\"Scott\",\"statuses_count\":29,\"followers_count\":16,\"friends_count\":101,\"screen_name\":\"sbaynham87\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/1756396678/image_normal.jpg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/1756396678/image_normal.jpg\",\"lang\":\"en\",\"listed_count\":0,\"id\":464546734,\"id_str\":\"464546734\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1,\"created_at\":\"Sun, 15 Jan 2012 10:39:02 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"count\":231,\"created_at\":\"Fri, 30 May 2014 16:51:44 +0000\",\"mentions\":[\"MercedesAMGF1\"],\"hashtags\":[\"TheMontREALdeal\",\"MapleBeLeaf\",\"CanadianGP\",\"F1\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472404651653218305\",\
 "user\":{\"name\":\"MERCEDES AMG F1\",\"url\":\"http://www.MercedesAMGF1.com\",\"description\":\"The official Twitter account of the MERCEDES AMG PETRONAS Formula One Team. Tweeting from Brackley and 20+ cool places around the world.\",\"location\":\"Brackley, Northants, UK\",\"statuses_count\":23650,\"followers_count\":475777,\"friends_count\":1532,\"screen_name\":\"MercedesAMGF1\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/1881059795/Star_Carbon_Background_normal.gif\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/1881059795/Star_Carbon_Background_normal.gif\",\"lang\":\"en\",\"time_zone\":\"London\",\"utc_offset\":3600,\"listed_count\":31739,\"id\":26235265,\"id_str\":\"26235265\",\"geo_enabled\":false,\"verified\":true,\"favourites_count\":1424,\"created_at\":\"Tue, 24 Mar 2009 13:24:04 +0000\"},\"source\":\"web\",\"created_at\":\"Fri, 30 May 2014 15:50:20 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"TenskiSam\",\"name\":\"TENSKI\",\"id\":2530829180,\"avatar\":\"http://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg\",\"link\":\"http://twitter.com/TenskiSam\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:42 +0000\",\"received_at\":1.4014687032737E9,\"content\":\"RT @GaryLineker: Wish Luis Suarez a speedy recovery from knee surgery. Hope he's fit and raring to go for Uruguay's World Cup game against Italy.\",\"id\":\"1e3e81aacf86a300e0749a7c06803e44\",\"link\":\"http://twitter.com/TenskiSam/status/472420096804417537\",\"mentions\":[\"GaryLineker\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":99},\"twitter\":{\"id\":\"472420096804417537\",\"retweet\":{\"text\":\"Wish Luis Suarez a speedy recovery from knee surgery. Hope he's fit and raring to go for Uruguay's World Cup game against Italy.\",\"id
 \":\"472420096804417537\",\"user\":{\"name\":\"TENSKI\",\"description\":\"we're nothing but atoms undergoing a series of reactions\",\"location\":\"England\",\"statuses_count\":998,\"followers_count\":567,\"friends_count\":49,\"screen_name\":\"TenskiSam\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/472415945403953152/8xoDVs6E_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":2530829180,\"id_str\":\"2530829180\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":5,\"created_at\":\"Wed, 28 May 2014 20:51:48 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"count\":1296,\"created_at\":\"Fri, 30 May 2014 16:51:42 +0000\",\"mentions\":[\"GaryLineker\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"469467147039940608\",\"user\":{\"name\":\"Gary Lineker\",\"description\":\"Once kicked 
 a ball about. Now talk about kicking a ball about. Still flogging spuds.\",\"statuses_count\":11938,\"followers_count\":2414917,\"friends_count\":534,\"screen_name\":\"GaryLineker\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/431019030804447233/I-om-WMc_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/431019030804447233/I-om-WMc_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Hawaii\",\"utc_offset\":-36000,\"listed_count\":6747,\"id\":471287735,\"id_str\":\"471287735\",\"geo_enabled\":false,\"verified\":true,\"favourites_count\":16,\"created_at\":\"Sun, 22 Jan 2012 18:07:24 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"created_at\":\"Thu, 22 May 2014 13:17:44 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"mostly_male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for Android\",\"author\":{\"username\":\"alexflynn_2\",\"name\":\"Alex Flynn\",\"id\":2187986741,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg\",\"link\":\"http://twitter.com/alexflynn_2\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:45 +0000\",\"received_at\":1.4014687062901E9,\"content\":\"@BradyOkeefe5 @Chef_Blazil that and Mr Nguyen on the tennis page are my best contributions to this yearbook\",\"id\":\"1e3e81aaec22a680e074c542d34807b8\",\"link\":\"http://twitter.com/alexflynn_2/status/472420109349187584\",\"mentions\":[\"BradyOkeefe5\",\"Chef_Blazil\"],\"mention_ids\":[306041919,164773731]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:45 +0000\",\"filter_level\":\"medium\",\"id\":\"4724
 20109349187584\",\"in_reply_to_screen_name\":\"BradyOkeefe5\",\"in_reply_to_status_id\":\"472412368295567360\",\"in_reply_to_user_id\":\"306041919\",\"lang\":\"en\",\"mention_ids\":[306041919,164773731],\"mentions\":[\"BradyOkeefe5\",\"Chef_Blazil\"],\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"text\":\"@BradyOkeefe5 @Chef_Blazil that and Mr Nguyen on the tennis page are my best contributions to this yearbook\",\"user\":{\"name\":\"Alex Flynn\",\"description\":\"Do you remember a band called Hüsker Dü?\",\"location\":\"Tacoma, WA\",\"statuses_count\":678,\"followers_count\":98,\"friends_count\":90,\"screen_name\":\"alexflynn_2\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000763111425/1070fa0bb288ac9c0f16a65114a7eb48_normal.jpeg\",\"lang\":\"en\",\"listed_count
 \":0,\"id\":2187986741,\"id_str\":\"2187986741\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":2954,\"created_at\":\"Tue, 19 Nov 2013 21:48:47 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"dlvr.it\",\"author\":{\"username\":\"iResalacom\",\"name\":\"iResala.com\",\"id\":265571683,\"avatar\":\"http://pbs.twimg.com/profile_images/1271393624/icon_normal.png\",\"link\":\"http://twitter.com/iResalacom\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:19 +0000\",\"received_at\":1.4014686799184E9,\"content\":\"aljazeera: Afghan basketball team beats odds to aim high http://t.co/7Cx3pv1tHh\",\"id\":\"1e3e81a9f42dad80e0749f492a38b1e2\",\"link\":\"http://twitter.com/iResalacom/status/472419999005429760\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:51:47 +0000\"],\"hops\":[[\"http://bit.ly/1kdcDmt\",\"http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high&utm_source=dlvr.it&utm_medium=twitter\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"
 text/html\"],\"description\":[\"A team of athletes from Afghanistan is in Italy to take part in an international basketball competition. Getting there has been a major...\"],\"lang\":[\"en\"],\"opengraph\":[{\"title\":\"Afghan basketball team beats odds to aim high\",\"description\":\"A team of athletes from Afghanistan is in Italy to take part in an international basketball competition. Getting there has been a major...\",\"url\":\"http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high\",\"type\":\"video\",\"image\":\"http://islamicfacebook.com/media/image.php?u=10855&p=90695&t\",\"site_name\":\"Muslim Social Network\"}]},\"normalized_url\":[\"http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+high\"],\"retweet_count\":[0],\"title\":[\"Afghan basketball team beats odds to aim high\"],\"url\":[\"http://islamicfacebook.com/photo.php?u=10855&p=90695&x=/Afghan+basketball+team+beats+odds+to+aim+
 high\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:19 +0000\",\"display_urls\":[\"bit.ly/1kdcDmt\"],\"domains\":[\"bit.ly\"],\"filter_level\":\"medium\",\"id\":\"472419999005429760\",\"lang\":\"en\",\"links\":[\"http://bit.ly/1kdcDmt\"],\"source\":\"<a href=\\\"http://dlvr.it\\\" rel=\\\"nofollow\\\">dlvr.it</a>\",\"text\":\"aljazeera: Afghan basketball team beats odds to aim high http://t.co/7Cx3pv1tHh\",\"user\":{\"name\":\"iResala.com\",\"url\":\"http://iResala.com\",\"statuses_count\":54724,\"followers_count\":49,\"friends_count\":0,\"screen_name\":\"iResalacom\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/1271393624/icon_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/1271393624/icon_normal.png\",\"lang\":\"en\",\"listed_count\":1,\"id\":265571683,\"id_str\":\"265571683\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":0,\"created_at\":\"Sun, 13 Mar 2011 19:52:37 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"IFTTT\",\"author\":{\"username\":\"AlmendraVelasco\",\"name\":\"Almendra Velasco\",\"id\":2414775619,\"avatar\":\"http://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg\",\"link\":\"http://twitter.com/AlmendraVelasco\",\"language\":\"es\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:19 +0000\",\"received_at\":1.4014686802702E9,\"content\":\"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? #MTV http://t.co/w3wANmHHLC\",\"id\":\"1e3e81a9f42dad80e074c79ff9b60a6c\",\"link\":\"http://twitter.com/AlmendraVelasco/status/472420000498974722\",\"hashtags\":[\"MTV\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:44:49 +0000\"],\"hops\":[[\"http://ift.tt/1gIMpbR\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"Justin Bieber posted a video of him hanging wi
 th prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt.\"],\"keywords\":[[\"justin bieber\",\"steve o\",\"skatepark\",\"tricycle\"]],\"lang\":[\"en-us\"],\"opengraph\":[{\"site_name\":\"MTV News\",\"title\":\"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More?\",\"url\":\"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/\",\"image\":\"http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:9310573?width=1200&height=675\",\"type\":\"article\",\"description\":\"Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt.\"}],\"twitter\":[{\"description\":\"Justin Bieber posted a video of him hanging with prank master Steve O at a skatepark and helping the clown nose-wearing &#039;Jackass&#039; alum recover from an epic tricycle stunt.\",\"title\":\"Justin Bie
 ber, Clowns, Skatepark, Tricycles, Need We Say More?\",\"image\":\"http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:9310573\",\"url\":\"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/\",\"card\":\"summary\"}]},\"normalized_url\":[\"http://mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark\"],\"retweet_count\":[0],\"title\":[\"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? - MTV\"],\"url\":[\"http://www.mtv.com/news/1835018/justin-bieber-steve-o-clown-skatepark/\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:19 +0000\",\"display_urls\":[\"ift.tt/1gIMpbR\"],\"domains\":[\"ift.tt\"],\"filter_level\":\"medium\",\"hashtags\":[\"MTV\"],\"id\":\"472420000498974722\",\"lang\":\"en\",\"links\":[\"http://ift.tt/1gIMpbR\"],\"source\":\"<a href=\\\"http://ifttt.com\\\" rel=\\\"nofollow\\\">IFTTT</a>\",\"text\":\"Justin Bieber, Clowns, Skatepark, Tricycles, Need We Say More? #MTV http://t.co/w3wANmHHLC\",\"user\":{\"name\":\"Almendra V
 elasco\",\"description\":\"Viajera musical en un mundo bicolor.\",\"statuses_count\":3105,\"followers_count\":71,\"friends_count\":87,\"screen_name\":\"AlmendraVelasco\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/449257945402847232/zkCtwRTB_normal.jpeg\",\"lang\":\"es\",\"listed_count\":1,\"id\":2414775619,\"id_str\":\"2414775619\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":0,\"created_at\":\"Thu, 27 Mar 2014 18:50:30 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for BlackBerry®\",\"author\":{\"username\":\"nayaamaliaaa\",\"name\":\"nαααee♔\",\"id\":2439641473,\"avatar\":\"http://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg\",\"link\":\"http://twitter.com/nayaamaliaaa\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:48 +0000\",\"received_at\":1.4014687083943E9,\"content\":\"RT @vidyanroktv: Hehe me too sayang♥{}\\\"@nayaamaliaaa: Syg bgt dh gua pokoknya ama @vidyanroktv :*:*♥ my little imuutsskuuu:*\\\"\",\"id\":\"1e3e81ab08beaa00e07468f7ae629c2e\",\"link\":\"http://twitter.com/nayaamaliaaa/status/472420118878625792\",\"mentions\":[\"nayaamaliaaa\",\"vidyanroktv\",\"vidyanroktv\"],\"mention_ids\":[2439641473,376752407]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"twitter\":{\"id\":\"472420118878625792\",\"retweet\":{\"text\":\"Hehe me too sayang♥{}\\\"@nayaamaliaaa: Syg bgt dh
  gua pokoknya ama @vidyanroktv :*:*♥ my little imuutsskuuu:*\\\"\",\"id\":\"472420118878625792\",\"user\":{\"name\":\"nαααee♔\",\"description\":\"follow twitter yang ini aja ya. yang nayaamaliaPG . @nayamaliaa itu ke hack! follback?just mention!:)\",\"statuses_count\":1599,\"followers_count\":58,\"friends_count\":52,\"screen_name\":\"nayaamaliaaa\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/468969246085881856/-Tc4PUkM_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":2439641473,\"id_str\":\"2439641473\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":34,\"created_at\":\"Sat, 12 Apr 2014 06:50:10 +0000\"},\"source\":\"<a href=\\\"http://blackberry.com/twitter\\\" rel=\\\"nofollow\\\">Twitter for BlackBerry®</a>\",\"count\":1,\"created_at\":\"Fri, 30 May 2014 16:51:48 +0000\",\"mentions\":[\"nayaamaliaaa\",\"vidyanroktv\",\"vidyanrokt
 v\"],\"mention_ids\":[2439641473,376752407],\"lang\":\"in\"},\"retweeted\":{\"id\":\"472418279999291394\",\"user\":{\"name\":\"Viya\",\"description\":\"STILL RICKYAZHAR♥ God,please protect my relationship from girl destroyer!\",\"location\":\"Peninggilan Village\",\"statuses_count\":12619,\"followers_count\":341,\"friends_count\":284,\"screen_name\":\"vidyanroktv\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/471299174026051584/tLbXvuJb_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/471299174026051584/tLbXvuJb_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Pacific Time (US & Canada)\",\"utc_offset\":-25200,\"listed_count\":0,\"id\":376752407,\"id_str\":\"376752407\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":33,\"created_at\":\"Tue, 20 Sep 2011 12:51:15 +0000\"},\"source\":\"<a href=\\\"http://blackberry.com/twitter\\\" rel=\\\"nofollow\\\">Twitter for BlackBerry®</a>\",\"created_at\":\"Fri, 30 May 2014 16:44:29 +0
 000\"}}}"
-"{\"demographic\":{\"gender\":\"unisex\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"web\",\"author\":{\"username\":\"AzapTraducoes\",\"name\":\"Azap Traduções Ofcl.\",\"id\":76999737,\"avatar\":\"http://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg\",\"link\":\"http://twitter.com/AzapTraducoes\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:36 +0000\",\"received_at\":1.4014686970102E9,\"content\":\"#FIFAWorldCup #Manaus Hey, English soccer fans! Know what to do in Manaus here: http://t.co/SBmMFCLegj\\nTake vitamin B12 to scare mosquitos.\",\"id\":\"1e3e81aa964dac00e0745206103f8436\",\"link\":\"http://twitter.com/AzapTraducoes/status/472420071152046080\",\"hashtags\":[\"FIFAWorldCup\",\"Manaus\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[500],\"created_at\":[\"Fri, 30 May 2014 16:51:48 +0000\"],\"hops\":[[\"http://www.manausonline.com
 \"]],\"normalized_url\":[null],\"retweet_count\":[0],\"title\":[null],\"url\":[\"http://www.manausonline.com\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:36 +0000\",\"display_urls\":[\"manausonline.com\"],\"domains\":[\"www.manausonline.com\"],\"filter_level\":\"medium\",\"hashtags\":[\"FIFAWorldCup\",\"Manaus\"],\"id\":\"472420071152046080\",\"lang\":\"en\",\"links\":[\"http://www.manausonline.com\"],\"source\":\"web\",\"text\":\"#FIFAWorldCup #Manaus Hey, English soccer fans! Know what to do in Manaus here: http://t.co/SBmMFCLegj\\nTake vitamin B12 to scare mosquitos.\",\"user\":{\"name\":\"Azap Traduções Ofcl.\",\"url\":\"http://www.azap.com.br\",\"description\":\"Professional translation and interpreting services for intl events. We are based in Rio de Janeiro, Brazil. Fones, cabines e tradutores especializados.\",\"location\":\"Rio de Janeiro, Brazil\",\"statuses_count\":309,\"followers_count\":90,\"friends_count\":848,\"screen_name\":\"AzapTraducoes\",\"profile_i
 mage_url\":\"http://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000152650333/37db03b668b6b43c0fdfe3cff5777a58_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"utc_offset\":-7200,\"listed_count\":0,\"id\":76999737,\"id_str\":\"76999737\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":86,\"created_at\":\"Thu, 24 Sep 2009 17:53:30 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"StephennNielsen\",\"name\":\"stephen.\",\"id\":1091042449,\"avatar\":\"http://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg\",\"link\":\"http://twitter.com/StephennNielsen\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:48 +0000\",\"received_at\":1.4014687088755E9,\"content\":\"@NickIsRadical tennis courts\",\"id\":\"1e3e81ab08beaa00e074ec78a5dd5e54\",\"link\":\"http://twitter.com/StephennNielsen/status/472420119537532929\",\"mentions\":[\"NickIsRadical\"],\"mention_ids\":[64299521]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":93},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:48 +0000\",\"filter_level\":\"medium\",\"id\":\"472420119537532929\",\"in_reply_to_screen_name\":\"NickIsRadical\",\"in_reply_to_status_id\":\"472408457531101184\",\"in_reply_to_u
 ser_id\":\"64299521\",\"lang\":\"fr\",\"mention_ids\":[64299521],\"mentions\":[\"NickIsRadical\"],\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"text\":\"@NickIsRadical tennis courts\",\"user\":{\"name\":\"stephen.\",\"url\":\"http://Instagram.com/steezaye\",\"description\":\"Horlick, 18, single.\",\"location\":\"Photographer | Film maker\",\"statuses_count\":2869,\"followers_count\":341,\"friends_count\":250,\"screen_name\":\"StephennNielsen\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/472001689244172288/czIhpbuj_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"utc_offset\":-14400,\"listed_count\":0,\"id\":1091042449,\"id_str\":\"1091042449\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":996,\"created_at\":\"Tue, 15 Jan 2013 04:35:33 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPad\",\"author\":{\"username\":\"VFagherazzi\",\"name\":\"valentin fagherazzi \",\"id\":2545563593,\"avatar\":\"http://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg\",\"link\":\"http://twitter.com/VFagherazzi\",\"language\":\"fr\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:10 +0000\",\"received_at\":1.4014686702916E9,\"content\":\"RT @MotoGP: #MotoGP @ValeYellow46 Rossi’s 300th Grand Prix weekend underway\\nhttp://t.co/p7IoMfyiIL http://t.co/2IQ0WxPCER\",\"id\":\"1e3e81a99e59a300e074e3d14c4173d0\",\"link\":\"http://twitter.com/VFagherazzi/status/472419958778261504\",\"mentions\":[\"ValeYellow46\",\"MotoGP\"],\"mention_ids\":[386420143],\"hashtags\":[\"MotoGP\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":97},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 15:27:37 +0000\"],\"meta\":{\"charset\"
 :[\"UTF-8\"],\"content_type\":[\"text/html\"],\"description\":[\"The visit to Mugello is always special for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor.\"],\"keywords\":[[\"MotoGP World Championship\",\"MotoGP\",\"Moto2\",\"Moto3\",\"Official Website\",\"motogp.com\",\"Live Video\",\"Live Timing\",\"Live Experience\",\"High Resolution\",\"VideoPass\",\"Valentino Rossi\",\"Marc Marquez\",\"Honda\",\"Jorge Lorenzo\",\"Motorbike\",\"race tickets\",\"paddock girls\",\"vip village\",\"Calendar\",\"after the flag\",\"no spoiler\",\"Time Schedule\",\"News\",\"RSS\",\"BMW\",\"Tissot\",\"Aperol\",\"Bridgestone\",\"Dani Pedrosa\",\"Casey Stoner\",\"Toni Elias\"]],\"lang\":[\"en\"],\"opengraph\":[{\"image\":\"http://photos.motogp.com/2014/05/30/46rossi_ds-_s1d9404_preview_big_169.jpg\",\"title\":\"motogp.com · Rossi’s 300th Grand Prix weekend underway\",\"description\":\"The visit to Mugello is always speci
 al for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor.\"}],\"twitter\":[{\"card\":\"summary\",\"site\":\"@motogp\",\"url\":\"http://www.motogp.com/en/news/2014/Rossis 300th Grand Prix weekend underway\",\"title\":\"motogp.com · Rossi’s 300th Grand Prix weekend underway\",\"description\":\"The visit to Mugello is always special for Valentino Rossi, as a nine-time winner at the track, but Friday’s activity in Tuscany was particularly poignant for The Doctor.\",\"image\":\"http://photos.motogp.com/2014/05/30/46rossi_ds-_s1d9404_preview_big_169.jpg\"}]},\"normalized_url\":[\"http://motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway\"],\"retweet_count\":[0],\"title\":[\"motogp.com · Rossi’s 300th Grand Prix weekend underway\"],\"url\":[\"http://www.motogp.com/en/news/2014/Rossis+300th+Grand+Prix+weekend+underway\"]},\"twitter\":{\"id\":\"472419958778261504\",\"retweet\":{\"text\":\"#Mo
 toGP @ValeYellow46 Rossi’s 300th Grand Prix weekend underway\\nhttp://t.co/p7IoMfyiIL http://t.co/2IQ0WxPCER\",\"id\":\"472419958778261504\",\"user\":{\"name\":\"valentin fagherazzi \",\"statuses_count\":11,\"followers_count\":3,\"friends_count\":40,\"screen_name\":\"VFagherazzi\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/466290308721176576/DtgeIOVZ_normal.jpeg\",\"lang\":\"fr\",\"listed_count\":0,\"id\":2545563593,\"id_str\":\"2545563593\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":11,\"created_at\":\"Tue, 13 May 2014 18:49:58 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/#!/download/ipad\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\",\"count\":410,\"created_at\":\"Fri, 30 May 2014 16:51:10 +0000\",\"mentions\":[\"ValeYellow46\",\"MotoGP\"],\"mention_ids\":[386420143],\"links\":[\"http://www.motogp.com/en/news/2014/Rossis+300th+
 Grand+Prix+weekend+underway\"],\"display_urls\":[\"motogp.com/en/news/2014/R…\"],\"domains\":[\"www.motogp.com\"],\"hashtags\":[\"MotoGP\"],\"media\":[{\"id\":472399586619686913,\"id_str\":\"472399586619686913\",\"media_url\":\"http://pbs.twimg.com/media/Bo5M69CCAAEvzfj.jpg\",\"media_url_https\":\"https://pbs.twimg.com/media/Bo5M69CCAAEvzfj.jpg\",\"url\":\"http://t.co/2IQ0WxPCER\",\"display_url\":\"pic.twitter.com/2IQ0WxPCER\",\"expanded_url\":\"http://twitter.com/MotoGP/status/472399587861610496/photo/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"medium\":{\"w\":599,\"h\":337,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"}}}],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472399587861610496\",\"user\":{\"name\":\"MotoGP™\",\"url\":\"http://www.motogp.com\",\"description\":\"Official Twitter Feed of the MotoGP™ World Championship\",\"location\":\"All around the world\
 ",\"statuses_count\":15839,\"followers_count\":945262,\"friends_count\":403,\"screen_name\":\"MotoGP\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/466637052885217280/sVktQhxZ_normal.png\",\"lang\":\"en\",\"time_zone\":\"London\",\"utc_offset\":3600,\"listed_count\":7411,\"id\":14082692,\"id_str\":\"14082692\",\"geo_enabled\":true,\"verified\":true,\"favourites_count\":3,\"created_at\":\"Wed, 05 Mar 2008 11:19:05 +0000\"},\"source\":\"web\",\"created_at\":\"Fri, 30 May 2014 15:30:13 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"web\",\"author\":{\"username\":\"ADMCascardo\",\"name\":\"Jorge Luiz Cascardo\",\"id\":71728158,\"avatar\":\"http://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg\",\"link\":\"http://twitter.com/ADMCascardo\",\"language\":\"pt\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:25 +0000\",\"received_at\":1.4014686856191E9,\"content\":\"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers(@LAClippers) por US$ 2 bi http://t.co/hR8ZroTXbW via @admnews #NBA\",\"id\":\"1e3e81aa2d66a480e074c9c330a1aae8\",\"link\":\"http://twitter.com/ADMCascardo/status/472420022376493056\",\"mentions\":[\"LAClippers\",\"admnews\"],\"mention_ids\":[19564719,20450814],\"hashtags\":[\"NBA\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:51:50 +0000\"],\"meta\":{\"charset\":[\"UTF
 -8\"],\"content_type\":[\"text/html\"],\"description\":[\"A oferta de Ballmer superou a de dois grupos; um deles, que ofereceu 1,6 bilhão de dólares, era liderado pelo magnata da mídia David Geffen e incluía a apresentadora de TV Oprah Winfrey e o presidente-executivo da Oracle, Larry Ellison\"],\"lang\":[\"pt\"],\"opengraph\":[{\"title\":\"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers por US$ 2 bi\",\"type\":\"article\",\"image\":\"http://www.administradores.com.br/_assets/themes/default/img/adm_facebook.png\",\"url\":\"http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/\",\"site_name\":\"Administradores.com\",\"description\":\"A oferta de Ballmer superou a de dois grupos; um deles, que ofereceu 1,6 bilhão de dólares, era liderado pelo magnata da mídia David Geffen e incluía a apresentadora de TV Oprah Winfrey e o presidente-executivo da Oracle, Larry Ellison\"}]},\"normalized
 _url\":[\"http://administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597\"],\"retweet_count\":[0],\"title\":[\"Ex-CEO da Microsoft, Steve Ballmer, compra Los Angeles Clippers por US$ 2 bi - Notícias - Negócios - Administradores.com\"],\"url\":[\"http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:51:25 +0000\",\"display_urls\":[\"administradores.com.br/noticias/negoc…\"],\"domains\":[\"www.administradores.com.br\"],\"filter_level\":\"medium\",\"hashtags\":[\"NBA\"],\"id\":\"472420022376493056\",\"lang\":\"pt\",\"links\":[\"http://www.administradores.com.br/noticias/negocios/ex-ceo-da-microsoft-steve-ballmer-compra-los-angeles-clippers-por-us-2-bi/88597/\"],\"mention_ids\":[19564719,20450814],\"mentions\":[\"LAClippers\",\"admnews\"],\"source\":\"web\",\"text\":\"Ex-CEO da Microsoft,
  Steve Ballmer, compra Los Angeles Clippers(@LAClippers) por US$ 2 bi http://t.co/hR8ZroTXbW via @admnews #NBA\",\"user\":{\"name\":\"Jorge Luiz Cascardo\",\"description\":\"Oficialmente Administrador - CRA/RJ 20-83064\",\"location\":\"Rio de Janeiro - Brasil\",\"statuses_count\":2894,\"followers_count\":534,\"friends_count\":722,\"screen_name\":\"ADMCascardo\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/428164972716097537/QQj4rLXJ_normal.jpeg\",\"lang\":\"pt\",\"time_zone\":\"Brasilia\",\"utc_offset\":-10800,\"listed_count\":22,\"id\":71728158,\"id_str\":\"71728158\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":106,\"created_at\":\"Sat, 05 Sep 2009 04:38:11 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"GavynnGrayson\",\"name\":\"Gavynn\",\"id\":1676503957,\"avatar\":\"http://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg\",\"link\":\"http://twitter.com/GavynnGrayson\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:09 +0000\",\"received_at\":1.4014687299968E9,\"content\":\"RT @emmy_xo_: I play rugby\",\"id\":\"1e3e81abd104a280e074ad11b9a16050\",\"link\":\"http://twitter.com/GavynnGrayson/status/472420209190395904\",\"mentions\":[\"emmy_xo_\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":94},\"twitter\":{\"id\":\"472420209190395904\",\"retweet\":{\"text\":\"I play rugby\",\"id\":\"472420209190395904\",\"user\":{\"name\":\"Gavynn\",\"description\":\"Real girls arent perfect and perfect girls arent real\",\"statuses_count\":5202,\"followers_count\":205,\"friends_count\":370,\"screen_name\":\"GavynnGr
 ayson\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/471761912498511872/pAyTA7KB_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":1676503957,\"id_str\":\"1676503957\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":1665,\"created_at\":\"Fri, 16 Aug 2013 19:29:49 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"count\":1,\"created_at\":\"Fri, 30 May 2014 16:52:09 +0000\",\"mentions\":[\"emmy_xo_\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472420166681120768\",\"user\":{\"name\":\"Emily Medeiros☀️\",\"description\":\"BearCreek\",\"statuses_count\":3126,\"followers_count\":402,\"friends_count\":370,\"screen_name\":\"emmy_xo_\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/471446298508668929/yPAmhOWo_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.t
 wimg.com/profile_images/471446298508668929/yPAmhOWo_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":610813667,\"id_str\":\"610813667\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":3359,\"created_at\":\"Sun, 17 Jun 2012 13:31:19 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"created_at\":\"Fri, 30 May 2014 16:51:59 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"twitterfeed\",\"author\":{\"username\":\"photoshop00000\",\"name\":\"photoshop\",\"id\":1390693447,\"avatar\":\"http://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg\",\"link\":\"http://twitter.com/photoshop00000\",\"language\":\"ru\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:08 +0000\",\"received_at\":1.4014687288115E9,\"content\":\"#news 5 Japan players to watch at the World Cup: TOKYO (AP) — Keisuke Honda and Shinji ... http://t.co/E69JtIx4hf http://t.co/6Si3P3zzT5\",\"id\":\"1e3e81abc77aac00e0746475f2c2fcd6\",\"link\":\"http://twitter.com/photoshop00000/status/472420203918159872\",\"hashtags\":[\"news\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":98},\"links\":{\"code\":[200,200],\"created_at\":[\"Fri, 30 May 2014 16:52:10 +0000\",\"Thu, 29 May 2014 23:46:51 +0000\"],\"hops\":[[\"http://yhoo.it/1hG6j2t\",\"https://uk.news.yahoo.com/5-ja
 pan-players-watch-world-cup-091550452.html?utm_medium=twitter&utm_source=twitterfeed\"],[\"http://www.xn--e1afvigz.su\",\"http://online.winner.com/promoRedirect?member=cashmoneyr&campaign=DEFAULT&channel=DEFAULT&zone=52299224&lp=52619734\"]],\"meta\":{\"charset\":[\"UTF-8\",\"UTF-8\"],\"content_type\":[\"text/html\",\"text/html\"],\"lang\":[\"en-gb\",\"en-us\"]},\"normalized_url\":[\"https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html\",\"http://poker.winner.com\"],\"retweet_count\":[0,0],\"title\":[\"5 Japan players to watch at the World Cup\",\"Play to Win at Winner.com Online Poker Room - Winner.com\"],\"url\":[\"https://uk.news.yahoo.com/5-japan-players-watch-world-cup-091550452.html\",\"http://poker.winner.com/\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:52:08 +0000\",\"display_urls\":[\"yhoo.it/1hG6j2t\",\"чипсет.su\"],\"domains\":[\"yhoo.it\",\"www.xn--e1afvigz.su\"],\"filter_level\":\"none\",\"hashtags\":[\"news\"],\"id\":\"47242020391815
 9872\",\"lang\":\"en\",\"links\":[\"http://yhoo.it/1hG6j2t\",\"http://www.xn--e1afvigz.su\"],\"possibly_sensitive\":true,\"source\":\"<a href=\\\"http://twitterfeed.com\\\" rel=\\\"nofollow\\\">twitterfeed</a>\",\"text\":\"#news 5 Japan players to watch at the World Cup: TOKYO (AP) — Keisuke Honda and Shinji ... http://t.co/E69JtIx4hf http://t.co/6Si3P3zzT5\",\"user\":{\"name\":\"photoshop\",\"url\":\"http://xn--e1afvigz.su/\",\"statuses_count\":244053,\"followers_count\":436,\"friends_count\":1243,\"screen_name\":\"photoshop00000\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/3593184593/b680fb5c07f6418797b9cad2c07b6984_normal.jpeg\",\"lang\":\"ru\",\"time_zone\":\"Abu Dhabi\",\"utc_offset\":14400,\"listed_count\":8,\"id\":1390693447,\"id_str\":\"1390693447\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":0,\"created_at\":\"Mon,
  29 Apr 2013 23:17:43 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"twitterfeed\",\"author\":{\"username\":\"dnbeatcreative\",\"name\":\"downbeat\",\"id\":55691156,\"avatar\":\"http://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg\",\"link\":\"http://twitter.com/dnbeatcreative\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:10 +0000\",\"received_at\":1.401468730409E9,\"content\":\"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/... http://t.co/7bpUMjROTM\",\"id\":\"1e3e81abda8da900e0742981237189ba\",\"link\":\"http://twitter.com/dnbeatcreative/status/472420210687758337\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":99},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:46:06 +0000\"],\"hops\":[[\"http://bit.ly/1mzrWEd\",\"http://www.techmeme.com/140530/p17#a140530p17\"]],\"meta\":{\"charset\":[\"CP1252\"],\"content_type\":[\"text/html\"],\"descrip
 tion\":[\"The essential tech news of the moment. Technology's news site of record. Not for dummies.\"],\"lang\":[\"unknown\"],\"opengraph\":[{\"site_name\":\"Techmeme\",\"type\":\"article\",\"title\":\"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere\",\"description\":\"This story, by Rolfe Winkler / Wall Street Journal, appeared on Techmeme.\",\"image\":\"http://www.techmeme.com/img/techmeme_sq328.png\"}]},\"normalized_url\":[\"http://techmeme.com/140530/p17\"],\"retweet_count\":[0],\"title\":[\"Techmeme: Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/Wall Street Journal)\"],\"url\":[\"http://www.techmeme.com/140530/p17\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:52:10 +0000\",\"display_urls\":[\"bit.ly/1mzrWEd\"],\"domains\":[\"bit.ly\"],\"filter_level\":\"medium\",\"id\":\"472420210687758337\",\"lang\":\"en\",\"links\":[\"http://bit.ly/1mzrWEd\"],\"source\":\"<a 
 href=\\\"http://twitterfeed.com\\\" rel=\\\"nofollow\\\">twitterfeed</a>\",\"text\":\"Google's Motorola to close down Texas factory this year, will continue making Moto X elsewhere (Rolfe Winkler/... http://t.co/7bpUMjROTM\",\"user\":{\"name\":\"downbeat\",\"description\":\"We're a Conversation Marketing Agency in the heart of Music City. Think CMO with an emphasis on New Media!\",\"location\":\"Nashville, TN\",\"statuses_count\":13528,\"followers_count\":1549,\"friends_count\":1860,\"screen_name\":\"dnbeatcreative\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/316598383/d_tweet4_normal.jpg\",\"lang\":\"en\",\"time_zone\":\"Central Time (US & Canada)\",\"utc_offset\":-18000,\"listed_count\":32,\"id\":55691156,\"id_str\":\"55691156\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1,\"created_at\":\"Fri, 10 Jul 2009 23:03:01 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"SweetLaly\",\"name\":\"Laly #2 ⭐\",\"id\":42172919,\"avatar\":\"http://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg\",\"link\":\"http://twitter.com/SweetLaly\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:12 +0000\",\"received_at\":1.4014687326712E9,\"content\":\"Watchin tennis again Raonić vs Simon 👌\",\"id\":\"1e3e81abeda0a600e074f94f5be6ddea\",\"link\":\"http://twitter.com/SweetLaly/status/472420220519579648\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":97},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:52:12 +0000\",\"filter_level\":\"medium\",\"id\":\"472420220519579648\",\"lang\":\"ro\",\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"text\":\"Watchin tennis again Raonić vs Simon 👌\",\"user\":{\"name\":\"Laly #2 
 ⭐\",\"url\":\"http://theonlythingicanremember.tumblr.com/\",\"description\":\"Need MUSIC to live! I'm so southern so I feel the cold ❄️⭐️ Football lover ⚽ Cruzada, Red Devil, Rossoneri & Borussen ⚽\",\"location\":\"Happyland ✌⭐\",\"statuses_count\":203928,\"followers_count\":774,\"friends_count\":666,\"screen_name\":\"SweetLaly\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/469257086690689024/K-olLRpm_normal.jpeg\",\"lang\":\"en\",\"time_zone\":\"Santiago\",\"utc_offset\":-14400,\"listed_count\":26,\"id\":42172919,\"id_str\":\"42172919\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":9255,\"created_at\":\"Sun, 24 May 2009 05:56:59 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"dlvr.it\",\"author\":{\"username\":\"cameroondaily\",\"name\":\"cameroon daily\",\"id\":258614852,\"avatar\":\"http://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg\",\"link\":\"http://twitter.com/cameroondaily\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:10 +0000\",\"received_at\":1.4014687305187E9,\"content\":\"5 Cameroon players to watch at the World Cup: … attacking pace are vital to Cameroon's ambitions. Many Premier …... http://t.co/5NM6tQH8Zr\",\"id\":\"1e3e81abda8da900e07488b315ce6a4e\",\"link\":\"http://twitter.com/cameroondaily/status/472420211065229312\"},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":99},\"links\":{\"code\":[200],\"created_at\":[\"Fri, 30 May 2014 16:52:11 +0000\"],\"hops\":[[\"http://dlvr.it/5qc4BW\",\"http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ&utm_source=dlvr.it&utm_medium=twit
 ter\"]],\"meta\":{\"charset\":[\"UTF-8\"],\"content_type\":[\"text/html\"],\"lang\":[\"en-us\"]},\"normalized_url\":[\"http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ\"],\"retweet_count\":[0],\"title\":[\"5 Cameroon players to watch at the World Cup - World News Report\"],\"url\":[\"http://world.einnews.com/article/207199124/KiHHt6xQjaihcXF7?ref=rss&ecode=r8bjK-LOwJD_ISTZ\"]},\"twitter\":{\"created_at\":\"Fri, 30 May 2014 16:52:10 +0000\",\"display_urls\":[\"dlvr.it/5qc4BW\"],\"domains\":[\"dlvr.it\"],\"filter_level\":\"medium\",\"id\":\"472420211065229312\",\"lang\":\"en\",\"links\":[\"http://dlvr.it/5qc4BW\"],\"source\":\"<a href=\\\"http://dlvr.it\\\" rel=\\\"nofollow\\\">dlvr.it</a>\",\"text\":\"5 Cameroon players to watch at the World Cup: … attacking pace are vital to Cameroon's ambitions. Many Premier …... http://t.co/5NM6tQH8Zr\",\"user\":{\"name\":\"cameroon daily\",\"url\":\"http://www.cameroondaily.org\",\"description\":\"Fol
 low us to get all breaking news,latest cameroon ads,real estate,jobs  etc.Find all Cameroon related events worldwide on our website\",\"location\":\"Yaounde-Cameroon\",\"statuses_count\":3417,\"followers_count\":87,\"friends_count\":30,\"screen_name\":\"cameroondaily\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/1368387631/fb_normal.jpg\",\"lang\":\"en\",\"time_zone\":\"West Central Africa\",\"utc_offset\":3600,\"listed_count\":2,\"id\":258614852,\"id_str\":\"258614852\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":0,\"created_at\":\"Mon, 28 Feb 2011 02:58:56 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"mostly_male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for Android\",\"author\":{\"username\":\"HunterA0514\",\"name\":\"Hunter\",\"id\":1684509404,\"avatar\":\"http://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg\",\"link\":\"http://twitter.com/HunterA0514\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:14 +0000\",\"received_at\":1.401468734885E9,\"content\":\"RT @TweetLlkeAGuy: Volleyball butts &gt;\",\"id\":\"1e3e81ac00b3a300e07439925adbe524\",\"link\":\"http://twitter.com/HunterA0514/status/472420228031590400\",\"mentions\":[\"TweetLlkeAGuy\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":95},\"twitter\":{\"id\":\"472420228031590400\",\"retweet\":{\"text\":\"Volleyball butts &gt;\",\"id\":\"472420228031590400\",\"user\":{\"name\":\"Hunter\",\"description\":\"higley baseball jv all star\",\"statuses_count\":3066,\"followers_count\":133,\"frien
 ds_count\":143,\"screen_name\":\"HunterA0514\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/459871104681537536/Pu-swn88_normal.jpeg\",\"lang\":\"en\",\"listed_count\":0,\"id\":1684509404,\"id_str\":\"1684509404\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1759,\"created_at\":\"Tue, 20 Aug 2013 00:23:29 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\",\"count\":73,\"created_at\":\"Fri, 30 May 2014 16:52:14 +0000\",\"mentions\":[\"TweetLlkeAGuy\"],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472413430344089600\",\"user\":{\"name\":\"Tweet Like A Guy\",\"url\":\"http://theonlinemancave.com\",\"description\":\"Tweets only a guy could retweet.\",\"location\":\"Join the Mancave\",\"statuses_count\":5359,\"followers_count\":179972,\"friends_count\":0,\"screen_name\":\"TweetLlkeAGuy\
 ",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/378800000354569384/234c19531f582f4fb43acc256d0f3ba2_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/378800000354569384/234c19531f582f4fb43acc256d0f3ba2_normal.png\",\"lang\":\"en\",\"time_zone\":\"Central Time (US & Canada)\",\"utc_offset\":-18000,\"listed_count\":152,\"id\":899461928,\"id_str\":\"899461928\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":6,\"created_at\":\"Tue, 23 Oct 2012 07:54:38 +0000\"},\"source\":\"<a href=\\\"http://www.socialoomph.com\\\" rel=\\\"nofollow\\\">SocialOomph</a>\",\"created_at\":\"Fri, 30 May 2014 16:25:13 +0000\"}}}"
-"{\"demographic\":{\"gender\":\"mostly_male\"},\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"rsheiner\",\"name\":\"Ryan Sheiner\",\"id\":261076056,\"avatar\":\"http://pbs.twimg.com/profile_images/2341475014/image_normal.jpg\",\"link\":\"http://twitter.com/rsheiner\",\"language\":\"en\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:52:15 +0000\",\"received_at\":1.4014687355899E9,\"content\":\"RT @sh130toll: This time next week, #XGames will have taken over #Austin!! @XGamesAustin http://t.co/eNQdf7JdDv\",\"id\":\"1e3e81ac0a3ca980e074a5971ce35bd8\",\"link\":\"http://twitter.com/rsheiner/status/472420231462531073\",\"mentions\":[\"XGamesAustin\",\"sh130toll\"],\"mention_ids\":[1392537247],\"hashtags\":[\"XGames\",\"Austin\"]},\"language\":{\"tag\":\"en\",\"tag_extended\":\"en\",\"confidence\":97},\"twitter\":{\"id\":\"472420231462531073\",\"retweet\":{\"text\":\"This time next week, #XGames will have taken over #Au
 stin!! @XGamesAustin http://t.co/eNQdf7JdDv\",\"id\":\"472420231462531073\",\"user\":{\"name\":\"Ryan Sheiner\",\"statuses_count\":2507,\"followers_count\":61,\"friends_count\":112,\"screen_name\":\"rsheiner\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/2341475014/image_normal.jpg\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/2341475014/image_normal.jpg\",\"lang\":\"en\",\"listed_count\":0,\"id\":261076056,\"id_str\":\"261076056\",\"geo_enabled\":true,\"verified\":false,\"favourites_count\":625,\"created_at\":\"Sat, 05 Mar 2011 05:23:05 +0000\"},\"source\":\"<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\",\"count\":9,\"created_at\":\"Fri, 30 May 2014 16:52:15 +0000\",\"mentions\":[\"XGamesAustin\",\"sh130toll\"],\"mention_ids\":[1392537247],\"hashtags\":[\"XGames\",\"Austin\"],\"media\":[{\"id\":472360294661251072,\"id_str\":\"472360294661251072\",\"media_url\":\"http://pbs.twimg.com/media/Bo4pL3
 FIYAAPxDH.png\",\"media_url_https\":\"https://pbs.twimg.com/media/Bo4pL3FIYAAPxDH.png\",\"url\":\"http://t.co/eNQdf7JdDv\",\"display_url\":\"pic.twitter.com/eNQdf7JdDv\",\"expanded_url\":\"http://twitter.com/sh130toll/status/472360295747170305/photo/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":599,\"h\":222,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":337,\"h\":125,\"resize\":\"fit\"},\"large\":{\"w\":851,\"h\":315,\"resize\":\"fit\"}}}],\"lang\":\"en\"},\"retweeted\":{\"id\":\"472360295747170305\",\"user\":{\"name\":\"SH 130\",\"url\":\"http://mysh130.com\",\"description\":\"A better way between Austin and San Antonio. A new choice for Central Texas motorists. The fastest way to Circuit of the Americas. #CanYouLoveARoad\",\"location\":\"Central Texas\",\"statuses_count\":1190,\"followers_count\":617,\"friends_count\":387,\"screen_name\":\"sh130toll\",\"profile_image_url\":\"http://pbs.twimg.com/profile_images/451832502005403648/IBM
 l8_Mz_normal.png\",\"profile_image_url_https\":\"https://pbs.twimg.com/profile_images/451832502005403648/IBMl8_Mz_normal.png\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"utc_offset\":-14400,\"listed_count\":17,\"id\":813811567,\"id_str\":\"813811567\",\"geo_enabled\":false,\"verified\":false,\"favourites_count\":1065,\"created_at\":\"Sun, 09 Sep 2012 20:11:32 +0000\"},\"source\":\"web\",\"created_at\":\"Fri, 30 May 2014 12:54:05 +0000\"}}}"
-"{\"interaction\":{\"schema\":{\"version\":3},\"source\":\"Twitter for iPhone\",\"author\":{\"username\":\"hernanl29\",\"name\":\"HL VR46\",\"id\":164058521,\"avatar\":\"http://pbs.twimg.com/profile_images/471473082209943553/-Xr0vSw0_normal.jpeg\",\"link\":\"http://twitter.com/hernanl29\",\"language\":\"es\"},\"type\":\"twitter\",\"created_at\":\"Fri, 30 May 2014 16:51:35 +0000\",\"received_at\":1.4014686959523E9,\"content\":\"RT @MotoGP: #MotoGP @ValeYellow46's fellow premier class riders present him with a 300th Grand Prix cake! \\nhttp://t.co/3IqpRv2sQF http://t.co/vynRa1k4zI\",\"id\":\"1e3e81aa8cc4a580e0745f400262dbce\",\"link\":\"http://twitter.com/hernanl29/status/472420066110500865\",\"mentions\":[\"ValeYellow46\",\"M

<TRUNCATED>

[30/45] git commit: Fixed extensions.coordinates.coordinates to map properly to geojson format

Posted by mf...@apache.org.
Fixed extensions.coordinates.coordinates to map properly to geojson format


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/782fee42
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/782fee42
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/782fee42

Branch: refs/heads/master
Commit: 782fee4218733104a7186d36bf269b4d23a36169
Parents: ad595b4
Author: rebanks <re...@w2odigital.com>
Authored: Fri Jun 20 12:21:03 2014 -0500
Committer: rebanks <re...@w2odigital.com>
Committed: Fri Jun 20 12:21:03 2014 -0500

----------------------------------------------------------------------
 .../datasift/serializer/DatasiftTweetActivitySerializer.java    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/782fee42/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
index f5c4d12..3406eb4 100644
--- a/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
+++ b/streams-contrib/streams-provider-datasift/src/main/java/org/apache/streams/datasift/serializer/DatasiftTweetActivitySerializer.java
@@ -178,7 +178,10 @@ public class DatasiftTweetActivitySerializer extends DatasiftDefaultActivitySeri
         Map<String, Object> extensions = ensureExtensions(activity);
         Map<String, Object> location = Maps.newHashMap();
         double[] coordiantes = new double[] { twitter.getGeo().getLongitude(), twitter.getGeo().getLatitude() };
-        location.put("coordinates", coordiantes);
+        Map<String, Object> coords = Maps.newHashMap();
+        coords.put("coordinates", coordiantes);
+        coords.put("type", "geo_point");
+        location.put("coordinates", coords);
         extensions.put("location", location);
     }