# HG changeset patch
# User veltr
# Date 1336397152 -7200
# Node ID 10233337f6dad2d802435c7afe6cfde0cc6717b2
# Parent d35ad8111c5e67c466fec1b16ff2f2eb15e27e96
Refactoring tests
diff -r d35ad8111c5e -r 10233337f6da src/js/init.js
--- a/src/js/init.js Fri May 04 16:56:41 2012 +0200
+++ b/src/js/init.js Mon May 07 15:25:52 2012 +0200
@@ -27,13 +27,19 @@
IriSP.Metadataplayer.prototype.loadLibs = function() {
- var $L = $LAB.script(IriSP.getLib("underscore")).script(IriSP.getLib("Mustache")).script(IriSP.getLib("jQuery")).script(IriSP.getLib("swfObject")).wait().script(IriSP.getLib("jQueryUI"));
+ var $L = $LAB
+ .script(IriSP.getLib("underscore"))
+ .script(IriSP.getLib("Mustache"))
+ .script(IriSP.getLib("jQuery"))
+ .script(IriSP.getLib("swfObject"))
+ .wait()
+ .script(IriSP.getLib("jQueryUI"));
- if(this.config.player.type === "jwplayer" || this.config.player.type === "allocine" || this.config.player.type === "dailymotion") {
- // load our popcorn.js lookalike
+ if (this.config.player.type === "jwplayer" || this.config.player.type === "auto") {
$L.script(IriSP.getLib("jwplayer"));
- } else {
- // load the real popcorn
+ }
+
+ if (this.config.player.type !== "jwplayer" && this.config.player.type !== "allocine" && this.config.player.type !== "dailymotion") {
$L.script(IriSP.getLib("popcorn"));
}
@@ -142,7 +148,22 @@
var pop,
ret = this.layoutDivs("video"),
containerDiv = ret[0],
- spacerDiv = ret[1];
+ spacerDiv = ret[1],
+ _this = this,
+ _types = {
+ "html5" : /\.(ogv|webm|mp4)$/,
+ "youtube" : /^(https?:\/\/)?(www\.)?youtube\.com/,
+ "dailymotion" : /^(https?:\/\/)?(www\.)?dailymotion\.com/
+ };
+
+ if (this.config.player.type === "auto") {
+ this.config.player.type = "jwplayer";
+ IriSP._(_types).each(function(_v, _k) {
+ if (_v.test(_this.config.player.video)) {
+ _this.config.player.type = _k
+ }
+ });
+ }
switch(this.config.player.type) {
/*
diff -r d35ad8111c5e -r 10233337f6da src/js/players/player.allocine.js
--- a/src/js/players/player.allocine.js Fri May 04 16:56:41 2012 +0200
+++ b/src/js/players/player.allocine.js Mon May 07 15:25:52 2012 +0200
@@ -32,9 +32,15 @@
}
}
- window.onReady = IriSP.wrap(this, this.ready);
- window.onAllocineStateChange = IriSP.wrap(this, this.stateHandler);
- window.onTime = IriSP.wrap(this, this.progressHandler);
+ window.onReady = function() {
+ _this.ready();
+ };
+ window.onAllocineStateChange = function(_state) {
+ _this.stateHandler(_state)
+ }
+ window.onTime = function(_progress) {
+ _this.progressHandler(_progress)
+ };
var _flashVars = {
"streamFMS" : true,
diff -r d35ad8111c5e -r 10233337f6da src/js/players/player.dailymotion.js
--- a/src/js/players/player.dailymotion.js Fri May 04 16:56:41 2012 +0200
+++ b/src/js/players/player.dailymotion.js Mon May 07 15:25:52 2012 +0200
@@ -3,13 +3,16 @@
/** jwplayer player wrapper */
IriSP.PopcornReplacement.dailymotion = function(container, options) {
- console.log("Calling");
- /* appel du parent pour initialiser les structures communes à tous les players */
+ /* Appel du constructeur de la classe parente */
IriSP.PopcornReplacement.player.call(this, container, options);
var _this = this;
- /* Définition des fonctions de l'API - */
+ /* Définition des fonctions de commande :
+ this.playerFns.play, .pause, .getPosition, .seek,
+ .getMute, .setMute, .getVolume, .setVolume
+ doivent être rattachés aux fonctions du player
+ * */
this.playerFns = {
play : function() {
@@ -70,10 +73,20 @@
}
},
}
-
- window.onDailymotionPlayerReady = IriSP.wrap(this, this.ready);
- window.onDailymotionStateChange = IriSP.wrap(this, this.stateHandler);
- window.onDailymotionVideoProgress = IriSP.wrap(this, this.progressHandler);
+
+ /* Dailymotion utilise un système de fonctions référencées dans
+ * des variables globales pour la gestion des événements.
+ */
+
+ window.onDailymotionPlayerReady = function() {
+ _this.onReady();
+ };
+ window.onDailymotionStateChange = function(_state) {
+ _this.onStateChange(_state);
+ }
+ window.onDailymotionVideoProgress = function(_progress) {
+ _this.onProgress(_progress);
+ }
var params = {
"allowScriptAccess" : "always",
@@ -88,7 +101,7 @@
IriSP.PopcornReplacement.dailymotion.prototype = new IriSP.PopcornReplacement.player("", {});
-IriSP.PopcornReplacement.dailymotion.prototype.ready = function() {
+IriSP.PopcornReplacement.dailymotion.prototype.onReady = function() {
this.player = document.getElementById(this.container);
@@ -99,14 +112,14 @@
this.callbacks.onReady();
};
-IriSP.PopcornReplacement.dailymotion.prototype.progressHandler = function(progressInfo) {
+IriSP.PopcornReplacement.dailymotion.prototype.onProgress = function(progressInfo) {
this.callbacks.onTime({
position: progressInfo.mediaTime
});
}
-IriSP.PopcornReplacement.dailymotion.prototype.stateHandler = function(state) {
+IriSP.PopcornReplacement.dailymotion.prototype.onStateChange = function(state) {
switch(state) {
case 1:
@@ -122,12 +135,6 @@
position: this.player.getCurrentTime()
});
break;
-
- /*
- case 5:
- this.callbacks.onReady();
- break;
- */
}
};
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/dailymotion.htm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/dailymotion.htm Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,20 @@
+
+
+
+
+ Metadataplayer test with Dailymotion
+
+
+
+
+
+
+
+ Metadataplayer test with Dailymotion
+
+
+
+
+
diff -r d35ad8111c5e -r 10233337f6da test/index-videoelement.htm
--- a/test/index-videoelement.htm Fri May 04 16:56:41 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
SimplePlayer
- Iri SimplePlayer is a javascript's Widget interface to augment existing flash or html5 video player.
- It's made to show time annotation and different metadata on video.
- To implement it on your website it's 's really simple.
- You just need to insert a div and a script, like the exemple under this lines.
- This player was test on :
-
- Firefox 3.6.9
- Chrome 6.0.472.55
- Safari 5.0.2
- Internet Explore 8
-
- This Player is a freeSoftware under
CeCILL-C license.
- This program is made by
Institut de recherche et d innovation
- more information on
this page .
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/index-youtube.htm
--- a/test/index-youtube.htm Fri May 04 16:56:41 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
MetaData Player
- Iri MetaData is a javascript's Widget interface to augment existing flash or html5 video player.
- It's made to show time annotation and different metadata on video.
- To implement it on your website it's 's really simple.
- You just need to insert a div and a script, like the exemple under this lines.
-
/!\ This is the first beta version the code is not optimized ! But your feedback is needed !
- This player was test on :
-
- Firefox 3.6.9
- Chrome 6.0.472.55
- Safari 5.0.2
- Internet Explore 8
-
- This Player is a freeSoftware under
CeCILL-C license.
- This program is made by
Institut de recherche et d innovation
- more information on
this page .
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/index.htm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/index.htm Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,20 @@
+
+
+
+
+ Metadataplayer test configurations
+
+
+
+
+
+
+
+ Metadataplayer test configurations
+
+
+
diff -r d35ad8111c5e -r 10233337f6da test/json/ldt-dailymotion.json
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/json/ldt-dailymotion.json Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,5292 @@
+{
+ "views": [
+ ],
+ "tags": [
+ {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "citizen sensor",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "organic failure",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8b75a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "money",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "small and good",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84752-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "civic action",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "social network",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9dc52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "radio",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8ec84-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "public informations",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "electoral fraud",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "coordination",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "information mass",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.769035",
+ "dc:title": "citizenjournalism",
+ "dc:modified": "2012-05-07T10:11:06.769035",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.830969",
+ "dc:title": "tweet",
+ "dc:modified": "2012-05-07T10:11:06.830969",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d6ebc2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "commercial space",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8707e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "platform",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "human resource",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "public space",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8851e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information amplifier",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9cffa-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "soccer",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "free time",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "traffic map",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "distributed information",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "government",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "individual power",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8790c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "aggregation",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "inorganic failure",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8ab52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.761421",
+ "dc:title": "communities",
+ "dc:modified": "2012-05-07T10:11:06.761421",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "market value",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9887e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "professional journalism",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93e0a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "success",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84b44-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "motivated actors",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8b354-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "journalism",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c95f48-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.771135",
+ "dc:title": "Ushahidi",
+ "dc:modified": "2012-05-07T10:11:06.771135",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "music industry",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9ab10-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "citizen action",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "revolution",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f08a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "people",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "Ushaidi",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "Internet",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e0a4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "Wikipedia",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c85332-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "fail",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "political life",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.821961",
+ "dc:title": "clayshirky",
+ "dc:modified": "2012-05-07T10:11:06.821961",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d58b7e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "consumers",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.881698",
+ "dc:title": "democratizes",
+ "dc:modified": "2012-05-07T10:11:06.881698",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dea448-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "digital sharecropping",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c98414-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.730624",
+ "dc:title": "information management",
+ "dc:modified": "2012-05-07T10:11:06.730624",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "hybridisation",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c95a34-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.730624",
+ "dc:title": "participation",
+ "dc:modified": "2012-05-07T10:11:06.730624",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.886191",
+ "dc:title": "Pepsico",
+ "dc:modified": "2012-05-07T10:11:06.886191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5df53f2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Libya",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "free speech",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c874f2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "open communication",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "Microsoft",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information filter",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9d45a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "citizen organizations",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "citizens",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "coordinate actions",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9f944-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "action",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "plausible promess",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84360-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "contribution",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93162-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "sharing objects",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9b326-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "protests",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "communication",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "community",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8a6ca-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "tools",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8bb56-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "market",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c96362-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "social life",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "large and mediocre",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c83f64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "web phone gap",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.936514",
+ "dc:title": "hadopi",
+ "dc:modified": "2012-05-07T10:11:06.936514",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e70214-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "crowdsourcing",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93608-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.754973",
+ "dc:title": "iphone",
+ "dc:modified": "2012-05-07T10:11:06.754973",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.740402",
+ "dc:title": "pepsi refresh project",
+ "dc:modified": "2012-05-07T10:11:06.740402",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c914de-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information quality",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9d86a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "smart consumer",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "block party",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "talents",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "catalyst",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c836fe-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "voluntary participation",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "Nairobi",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "organizations",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "television",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f8dc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "counter democracy",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9fda4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "opportunity design",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "Egypt",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.922593",
+ "dc:title": "failcon",
+ "dc:modified": "2012-05-07T10:11:06.922593",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e4e646-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "printing democracy",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e892-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.945336",
+ "dc:title": "PUBLIC",
+ "dc:modified": "2012-05-07T10:11:06.945336",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e85a74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "usability",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.878489",
+ "dc:title": "sidibouzid",
+ "dc:modified": "2012-05-07T10:11:06.878489",
+ "dc:creator": "IRI"
+ },
+ "id": "f5de273e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "sharing information",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9af34-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "golden age for journalism but not for money",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93a18-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "share",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f486-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "malls",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c88104-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "synchronised crowded",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84f40-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "information",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Egypitia",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "media",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e496-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "cognitive surplus",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "Wikileaks",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8891a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "business model",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c97fc8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "gin crisis",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9a67e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "fascism",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8dc9e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.830969",
+ "dc:title": "addict",
+ "dc:modified": "2012-05-07T10:11:06.830969",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d6e6fe-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.774383",
+ "dc:title": "blendedtech",
+ "dc:modified": "2012-05-07T10:11:06.774383",
+ "dc:creator": "IRI"
+ },
+ "id": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "political informations",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "law",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c87d08-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "blend technology",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "democracy",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8d852-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Tunisia",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "political action",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.863215",
+ "dc:title": "nooffense",
+ "dc:modified": "2012-05-07T10:11:06.863215",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dbd6b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.868458",
+ "dc:title": "microsoft",
+ "dc:modified": "2012-05-07T10:11:06.868458",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dc9f68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "lists": [],
+ "medias": [
+ {
+ "origin": "0",
+ "url": "http://www.dailymotion.com/video/xljam5",
+ "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
+ "meta": {
+ "dc:contributor": "IRI",
+ "item": {
+ "name": "streamer",
+ "value": ""
+ },
+ "dc:created": "2011-02-14T15:06:34.829919",
+ "dc:duration": 1800000,
+ "dc:creator": "IRI",
+ "dc:created.contents": "2012-02-13",
+ "dc:title": "RSLN Clay Shirky",
+ "dc:creator.contents": "IRI",
+ "dc:modified": "2012-02-13T11:55:23.898905",
+ "dc:description": "RSLN Clay Shirky"
+ },
+ "id": "9a493932-3053-11e0-862b-00145ea49a02",
+ "unit": "ms"
+ }
+ ],
+ "meta": {
+ "dc:contributor": "admin",
+ "dc:created": "2011-02-14T15:15:52.602502",
+ "dc:creator": "admin",
+ "main_media": {
+ "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
+ },
+ "dc:description": "",
+ "dc:title": "RSLN Clay Shirky - Tweets",
+ "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
+ "dc:modified": "2012-04-29T15:41:55.858453"
+ },
+ "annotations": [
+ {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Introduction",
+ "color": "3355443",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 0,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 170000,
+ "tags": null,
+ "color": "3355443",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Introduction de Constance Parodi",
+ "color": "3355443",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 177457,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 410939,
+ "tags": null,
+ "color": "3355443",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_0C9E4E6B-043B-FCDE-D865-29ED81488D99"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Clay Shirky : début de conférence",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 503000,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 783000,
+ "tags": [
+ {
+ "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_D8459097-1DE3-F28A-34CF-293F5C6B62E1"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "3 features of Ushaidi",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 783462,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1000062,
+ "tags": [
+ {
+ "id-ref": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_B7F5CADC-465C-9E96-7279-29F8EAE07510"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "free time, talents, human resource, cognitive surplus, aggregation, communication",
+ "img": {
+ "src": ""
+ },
+ "title": "Coginitive surplus : free time",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1006108,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1078840,
+ "tags": [
+ {
+ "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_185D6DE8-980B-2ADB-0C3E-2A20D6E331EB"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "civic action, information, action, people, organizations, coordination, citizen sensor",
+ "img": {
+ "src": ""
+ },
+ "title": "Penser les actions civiques",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1078840,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1235162,
+ "tags": [
+ {
+ "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_2C466914-84E2-91AA-2BAC-2A2158B7892C"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "citizen sensor, government, traffic map, open communication",
+ "img": {
+ "src": ""
+ },
+ "title": "Les capteurs citoyens",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1235162,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1307028,
+ "tags": [
+ {
+ "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_BB6067B1-A4A7-6636-CE0E-2A216B94B896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "smart consumer, public informations, political informations, money, action, citizens",
+ "img": {
+ "src": ""
+ },
+ "title": "Consomateur inteligents",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1307028,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1407440,
+ "tags": [
+ {
+ "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_F54B6E7D-F262-6726-94CB-2A217EDE2052"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "government, information management, participation",
+ "img": {
+ "src": ""
+ },
+ "title": "Code for America",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1407440,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1512525,
+ "tags": [
+ {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_691C78EF-6904-430D-5DE0-2A218F780AE8"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Libya, soccer, government, protests, coordination, social life, political life, Tunisia, Egypitia",
+ "img": {
+ "src": ""
+ },
+ "title": "Platforme pour les actions civiques",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1512525,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1667170,
+ "tags": [
+ {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_9BA33565-786B-24A5-F2EF-2A21A959633F"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "coordination, political action, citizen action, citizen organizations",
+ "img": {
+ "src": ""
+ },
+ "title": "Le vrai grand changement",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1668051,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1753100,
+ "tags": [
+ {
+ "id-ref": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_874C9537-11F5-85A1-3E54-2A25590396D6"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "block party, platform, citizen organizations, consumers, cognitive surplus",
+ "img": {
+ "src": ""
+ },
+ "title": "Fetes des voisins",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1754200,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1800000,
+ "tags": [
+ {
+ "id-ref": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_CAE3C373-F725-A3CA-099A-2A2576315966"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln commence 8h50",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln commence 8h50",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 0,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 0,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 7000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 7000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 42000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 42000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 55000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 55000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
+ "color": "16763904",
+ "polemics": ["Q", "REF", "OK", "KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 62000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 62000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 127000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [77, 85], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3uztmc\", \"indices\": [88, 113], \"expanded_url\": null}]}, \"text\": \"Quelques r\\u00e8gles int\\u00e9ressantes pour le live-twitt de la conf\\u00e9rence #RSLN avec @cshirky : http://twitpic.com/3uztmc.\", \"created_at\": \"Mon Jan 31 07:53:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"location\": \"Boulogne-Billancourt\", \"utc_offset\": 3600, \"statuses_count\": 219, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null, \"listed_count\": 40}, \"id\": 31983280916004864, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983280916004864\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 127000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d0ba17c8-950f-4ae0-ae0d-32e04cde6941-31983280916004864"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 140000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [5, 10], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://yfrog.com/h0dbkxsj\", \"indices\": [29, 54], \"expanded_url\": null}]}, \"text\": \"Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj\", \"created_at\": \"Mon Jan 31 07:53:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5185, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983338092765184, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983338092765184\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 140000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "3f73186a-08df-4d38-821d-2a889a84f2c0-31983338092765184"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky @Microsoft #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Constance de 4barbes: Clay shirky @Microsoft #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 148000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [12, 22], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky @Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:53:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 57623127, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 53, \"protected\": false, \"id_str\": \"57623127\", \"profile_background_color\": \"131516\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 267, \"description\": \"Digital Humanities and Social Media: Community and Content Management\", \"friends_count\": 70, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/983938390/pic.php_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/155252455/avatar.jpg\", \"name\": \"Constance de 4barbes\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 8, \"screen_name\": \"c4barbes\", \"url\": \"http://4barbes.com\", \"created_at\": \"Fri Jul 17 11:53:38 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31983371265507328, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983371265507328\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 148000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "04578856-0359-4fb2-9fc7-6d5e2e4615b1-31983371265507328"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Alice Antheaume: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 149000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 149000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fbe9c058-e418-424b-8b0c-c23b89a48a92-31983376617439232"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 152000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [16, 28], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [118, 123], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:53:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6850, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31983387610718208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983387610718208\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 152000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6842cda1-817d-445e-8fb0-b8efd41ad264-31983387610718208"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
+ "img": {
+ "src": ""
+ },
+ "title": "jean-francois gervai: Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 193000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [30, 35], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Rencontre avec Clayton Shirky #RSLN, public nombreux d\\u00e8s \\\"potron minet\\\"\", \"created_at\": \"Mon Jan 31 07:54:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18998756, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 13, \"protected\": false, \"id_str\": \"18998756\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 6, \"description\": \"auteur d'ouvrages autour du web...\", \"friends_count\": 64, \"location\": \"france\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1176741038/04-0420-GERVAIS_JEAN-FRANCOIS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme1/bg.png\", \"name\": \"jean-francois gervai\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"jfgervais\", \"url\": \"http://www.jeanfrancoisgervais\", \"created_at\": \"Wed Jan 14 22:15:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31983557672960000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983557672960000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 193000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "25903be0-f0a6-401c-9068-b54a04c1ee89-31983557672960000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 209000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [18, 27], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [29, 34], \"text\": \"RSLN\"}, {\"indices\": [113, 120], \"text\": \"iphone\"}], \"urls\": []}, \"text\": \"\\u00c7a rousp\\u00e8te... RT @CyrilleF: #RSLN r\\u00e9sau wifi minimum est assur\\u00e9, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?\", \"created_at\": \"Mon Jan 31 07:54:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5186, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983626669260800, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983626669260800\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 209000,
+ "tags": [
+ {
+ "id-ref": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9583862e-51ea-440f-ab7a-b022412eebc2-31983626669260800"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
+ "img": {
+ "src": ""
+ },
+ "title": "Melissa Bounoua: RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 213000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [10, 18], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [83, 89], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [35, 40], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [57, 77], \"expanded_url\": null}]}, \"text\": \"Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:43:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13622572, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 2560, \"protected\": false, \"id_str\": \"13622572\", \"profile_background_color\": \"9AE4E8\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 8687, \"description\": \"Un peu de 20minutes.fr dans cet internet mondial\", \"friends_count\": 346, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1183719410/40794_420716233991_587318991_4855249_4249707_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/121055127/qgvzF.jpg\", \"name\": \"Charles Dufresne\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 7, \"screen_name\": \"rocknrobot\", \"url\": \"http://www.20minutes.fr\", \"created_at\": \"Mon Feb 18 13:32:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 170}, \"id\": 31980923448725504, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31980923448725504\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 14], \"id\": 13622572, \"screen_name\": \"rocknrobot\", \"name\": \"Charles Dufresne\", \"id_str\": \"13622572\"}, {\"indices\": [26, 34], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [99, 105], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [51, 56], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [73, 93], \"expanded_url\": null}]}, \"text\": \"RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:54:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50154, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6679, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31983643530362880, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31983643530362880\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 213000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9eb2aa47-8e9b-4dc2-b7a5-51daf5cddbe8-31983643530362880"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Introduction en français ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Bertil Hatt: #rsln Introduction en français ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 230000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Introduction en fran\\u00e7ais ?\", \"created_at\": \"Mon Jan 31 07:54:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 4985551, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 454, \"protected\": false, \"id_str\": \"4985551\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 42, \"utc_offset\": 3600, \"statuses_count\": 2678, \"description\": \"I do not control either LinkedIn profiles under my name.\\r\\nPhD Econ. \\u201cCompetition between Social Network Sites\\u201d @ U.Paris-Ouest Nanterre & independent consultant\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/22068682/DSC_6634_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/2947659/DSC02510-small.jpg\", \"name\": \"Bertil Hatt\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 436, \"screen_name\": \"bertil_hatt\", \"url\": \"http://www.quora.com/Bertil-Hatt\", \"created_at\": \"Tue Apr 17 11:25:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31983714204385280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983714204385280\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 230000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ff3f0903-4e89-4c28-a43a-71968aa3a5cc-31983714204385280"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 244000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Rappel sur la n\\u00e9cessit\\u00e9 d'Internet avec les \\u00e9v\\u00e9nements en \\u00c9gypte. Introduction Constance Parodi.\", \"created_at\": \"Mon Jan 31 07:55:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 27, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31983773893529601, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983773893529601\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 244000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "8c14ce29-705f-41ee-b320-a20a44ea399d-31983773893529601"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 252000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.\", \"created_at\": \"Mon Jan 31 07:55:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 692, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31983809054380032, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983809054380032\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 252000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "55dffae8-0dec-4aa5-9a75-2181f96d3f47-31983809054380032"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 294000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Dans un instant, la conf\\u00e9rence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus cr\\u00e9atif ?\", \"created_at\": \"Mon Jan 31 07:55:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 175, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 217, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31983982530793472, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983982530793472\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 294000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "78f208b8-04db-4613-8598-863fd424fd3e-31983982530793472"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "à la conférence de Clay Shirky au campus #Microsoft #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "la pinta: à la conférence de Clay Shirky au campus #Microsoft #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 321000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [42, 52], \"text\": \"Microsoft\"}, {\"indices\": [53, 58], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\u00e0 la conf\\u00e9rence de Clay Shirky au campus #Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:56:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3122, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31984097412784128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984097412784128\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 321000,
+ "tags": [
+ {
+ "id-ref": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2deb537a-0ce0-4dad-b178-aa944d1f5f0e-31984097412784128"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 325000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [5, 13], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Avec @cshirky, r\\u00e9flexions sur le temps de cerveau disponible, la cr\\u00e9ativit\\u00e9 et les nouvelles connexions. #RSLN\", \"created_at\": \"Mon Jan 31 07:56:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 220, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31984113330163712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984113330163712\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 325000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "74b3f478-5b5a-4ccc-91b0-f3c31a6dc790-31984113330163712"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
+ "color": "16763904",
+ "polemics": ["Q", "REF", "OK", "KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 333000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 84], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Il faut noter nos tweets \\\"++, ==, --, ??\\\".... \\u00c7a va ressembler \\u00e0 des gros mots #RSLN\", \"created_at\": \"Mon Jan 31 07:56:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984147253698560, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984147253698560\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 333000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "99f7a154-cd01-4acb-811c-de6d31e842fc-31984147253698560"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "MiKarmousMi3neb: RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 339000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"listed_count\": 758, \"utc_offset\": 3600, \"statuses_count\": 2372, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"location\": \"Paris\", \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 8266352, \"screen_name\": \"alicanth\", \"name\": \"Alice Antheaume\", \"id_str\": \"8266352\"}], \"hashtags\": [{\"indices\": [85, 90], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [57, 84], \"expanded_url\": null}]}, \"text\": \"RT @alicanth: \\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:56:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 110795718, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 110, \"protected\": false, \"id_str\": \"110795718\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 3, \"utc_offset\": -21600, \"statuses_count\": 1435, \"description\": \"J'aime les raisins mais je pr\\u00e9f\\u00e8re les figues.\", \"friends_count\": 150, \"location\": \"\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/947738452/3515e59d-838c-4639-940e-1715fd93806c_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/85303105/DSC01229.JPG\", \"name\": \"MiKarmousMi3neb\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"MiKarmousMi3neb\", \"url\": null, \"created_at\": \"Tue Feb 02 20:17:03 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31984171630989312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984171630989312\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 339000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "675567c6-556d-4324-b110-ac70cde5b203-31984171630989312"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Elisabeth Garrett: @ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 433000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 69], \"text\": \"communities\"}, {\"indices\": [121, 127], \"text\": \"Egypt\"}, {\"indices\": [128, 133], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 07:58:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Mobile Web \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 152375270, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 49, \"protected\": false, \"id_str\": \"152375270\", \"profile_background_color\": \"352726\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 269, \"description\": \"MBA @HECParis. Stagiaire @Soci\\u00e9t\\u00e9G\\u00e9n\\u00e9rale. social marketer. photographer. petite gourmande. wine-cinema-NYC-travel-karaoke-f\\u00fatbol enthusiast. amazed by grace.\", \"friends_count\": 45, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/962811111/23230_106524_7896_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"Elisabeth Garrett\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"EliGarrett\", \"url\": \"http://eligarrett.wordpress.com\", \"created_at\": \"Sat Jun 05 19:51:45 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 0}, \"id\": 31984564570169344, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984564570169344\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 433000,
+ "tags": [
+ {
+ "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "f3d4a265-fbaa-4e8b-8ed4-0b19a7df34b5-31984564570169344"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Trois barres de wifi -- -- --- #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Trois barres de wifi -- -- --- #RSLN",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 438000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [31, 36], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Trois barres de wifi -- -- --- #RSLN\", \"created_at\": \"Mon Jan 31 07:58:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984585231310849, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984585231310849\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 438000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "89887a2e-b0db-461c-aef1-b9435f6bda53-31984585231310849"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 493000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 959, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 493000,
+ "tags": [
+ {
+ "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "814a2ed8-2756-4b21-bf7f-43033845c97d-31984816979189760"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 495000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [59, 64], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 07:59:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1917, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31984825082576896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984825082576896\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 495000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ab5e1489-1d78-40de-bd9f-041e93a177cd-31984825082576896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay Shirky in conference at Microsoft's campus",
+ "img": {
+ "src": ""
+ },
+ "title": "Dany Vilela: #rsln Clay Shirky in conference at Microsoft's campus",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 513000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky in conference at Microsoft's campus\", \"created_at\": \"Mon Jan 31 07:59:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 21152901, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1493, \"protected\": false, \"id_str\": \"21152901\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 140, \"utc_offset\": 3600, \"statuses_count\": 7618, \"description\": \"Dyvantity, home of creativity by Dany Vilela (@Dy_Vilela)\", \"friends_count\": 1198, \"location\": \"Grenoble\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/960161513/dy_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/108589554/TwitterTemplate_copie.jpg\", \"name\": \"Dany Vilela\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dyvantity\", \"url\": \"http://dyvantity.com\", \"created_at\": \"Wed Feb 18 00:48:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984902601707520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984902601707520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 513000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "1fa8cece-d261-4290-931d-7ccc775858e0-31984902601707520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 528000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [80, 88], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky\", \"created_at\": \"Mon Jan 31 07:59:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31984965352685568, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984965352685568\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 528000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "1cf29524-3087-4f6a-a52a-6fbcbd35dbc6-31984965352685568"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 560000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky \\\"optimistic about what new tools bring for citizens\\\" ++\", \"created_at\": \"Mon Jan 31 08:00:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 28, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31985100929372160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985100929372160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 560000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "cf12841e-e3e6-484f-9e71-1c7a3eade1fd-31985100929372160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Gustavo González: !!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 636000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [7, 18], \"id\": 152375270, \"screen_name\": \"EliGarrett\", \"name\": \"Elisabeth Garrett\", \"id_str\": \"152375270\"}], \"hashtags\": [{\"indices\": [62, 74], \"text\": \"communities\"}, {\"indices\": [126, 132], \"text\": \"Egypt\"}, {\"indices\": [133, 138], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 08:01:32 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"\\u00dcberTwitter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 43939616, \"verified\": false, \"profile_sidebar_fill_color\": \"EADEAA\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 308, \"protected\": false, \"id_str\": \"43939616\", \"profile_background_color\": \"8B542B\", \"location\": \"\\u00dcT: 48.819156,2.291199\", \"utc_offset\": -16200, \"statuses_count\": 5670, \"description\": \"Sibarita caraque\\u00f1o living in Paris. MBA participant at HEC-Paris. Movies&Wine&Food lover qui s'amuse \\u00e0 en parler et partager avec les amis...\", \"friends_count\": 356, \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/819879158/untitled_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/195050882/Word_Cloud.JPG\", \"name\": \"Gustavo Gonz\\u00e1lez\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 12, \"screen_name\": \"gustavogb83\", \"url\": null, \"created_at\": \"Mon Jun 01 18:31:30 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"profile_sidebar_border_color\": \"D9B17E\", \"following\": null, \"listed_count\": 13}, \"id\": 31985419721637890, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985419721637890\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 636000,
+ "tags": [
+ {
+ "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2dc5e9ff-e370-4c06-9ac5-33cc636b14e7-31985419721637890"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Anthony: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 655000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 17759, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null, \"listed_count\": 133}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 655000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e4b2ba41-d151-44ec-8269-eee99a951019-31985498780078080"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Graham Hay: RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 666000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [88, 93], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:49:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31982379551686656, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982379551686656\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 08:02:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 83917557, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 29, \"protected\": false, \"id_str\": \"83917557\", \"profile_background_color\": \"C0DEED\", \"location\": \"Auckland, New Zealand\", \"utc_offset\": 43200, \"statuses_count\": 44, \"description\": \"\", \"friends_count\": 101, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1100908900/graham_hay_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Graham Hay\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"graham_hay\", \"url\": null, \"created_at\": \"Tue Oct 20 20:19:49 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Wellington\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 2}, \"id\": 31985545622069248, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985545622069248\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 666000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "92d56631-8ec7-43bd-9038-ff95a5629d3d-31985545622069248"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Melissa Bounoua: La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 672000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [11, 19], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"La conf de @cshirky commence sur le m\\u00eame ex que sa conf ted de juin dernier \\u00e0 Cannes: la plateforme ushahidi #rsln\", \"created_at\": \"Mon Jan 31 08:02:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50152, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6681, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31985570716581888, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985570716581888\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 672000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "37ade492-143b-46dc-a2e9-4e566a4f85e4-31985570716581888"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 719000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi\", \"created_at\": \"Mon Jan 31 08:02:55 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 693, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31985765323898880, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985765323898880\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 719000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "25d80b84-cb4e-48de-8a0f-018bb5996ea5-31985765323898880"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 754000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [89, 107], \"text\": \"citizenjournalism\"}, {\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://j.mp/3y0kHS\", \"indices\": [116, 134], \"expanded_url\": null}]}, \"text\": \"@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS\", \"created_at\": \"Mon Jan 31 08:03:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31985910551678976, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985910551678976\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 754000,
+ "tags": [
+ {
+ "id-ref": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2fdf7de8-4126-417d-ae90-bfd4b2882e4b-31985910551678976"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln hushaidi ++ desaster as a social object",
+ "img": {
+ "src": ""
+ },
+ "title": "Lionel Natarianni: #rsln hushaidi ++ desaster as a social object",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 760000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln hushaidi ++ desaster as a social object\", \"created_at\": \"Mon Jan 31 08:03:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 1599, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31985939437850624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985939437850624\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 760000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b992e2a8-9d93-4921-bb1a-af45dd015b56-31985939437850624"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 765000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay aborde le probl\\u00e8me de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas\", \"created_at\": \"Mon Jan 31 08:03:41 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 866, \"description\": \"\", \"friends_count\": 107, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 13}, \"id\": 31985960119959552, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985960119959552\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 765000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "30263902-1a82-4620-9d2a-19f8961ecbb2-31985960119959552"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 767000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [84, 89], \"text\": \"RSLN\"}, {\"indices\": [90, 99], \"text\": \"Ushahidi\"}], \"urls\": [{\"url\": \"http://yfrog.com/gz5mvxjj\", \"indices\": [100, 125], \"expanded_url\": null}]}, \"text\": \"Clay Shirky raconte comment les blogueurs se sont mobilis\\u00e9s au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj\", \"created_at\": \"Mon Jan 31 08:03:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 221, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31985966457552896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985966457552896\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 767000,
+ "tags": [
+ {
+ "id-ref": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a3c773f6-fc2c-4bc2-aa4c-e695f8b5670d-31985966457552896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 768000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln la cartographie de la violence en temps r\\u00e9el, utile en situation de guerre mais anxiog\\u00e8ne partout ailleurs --\", \"created_at\": \"Mon Jan 31 08:03:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 81, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31985972707074049, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985972707074049\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 768000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "84adc135-86e1-4f1f-bb6b-3ed7f407caba-31985972707074049"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky on stage #RSLN http://plixi.com/p/73750856",
+ "img": {
+ "src": ""
+ },
+ "title": "Alice Antheaume: Clay shirky on stage #RSLN http://plixi.com/p/73750856",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 791000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73750856\", \"indices\": [28, 55], \"expanded_url\": null}]}, \"text\": \"Clay shirky on stage #RSLN http://plixi.com/p/73750856\", \"created_at\": \"Mon Jan 31 08:04:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31986069742292992, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986069742292992\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 791000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9d440698-8e91-4542-b978-8cb22b811d56-31986069742292992"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 818000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [62, 67], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"En bon americain, Clay Shirky commence par une belle histoire #rsln ++\", \"created_at\": \"Mon Jan 31 08:04:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1919, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31986179578527744, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986179578527744\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 818000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7abf0e3b-afe9-424c-a49e-22dbae9de393-31986179578527744"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "img": {
+ "src": ""
+ },
+ "title": "Christophe Prieuur: RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 833000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 18], \"id\": 28351245, \"screen_name\": \"GarrettGoodman\", \"name\": \"Garrett Goodman\", \"id_str\": \"28351245\"}, {\"indices\": [20, 28], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [116, 121], \"text\": \"RSLN\"}, {\"indices\": [122, 127], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"RT @GarrettGoodman: @cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 08:04:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 6, \"utc_offset\": 3600, \"statuses_count\": 244, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31986242954461184, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986242954461184\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 833000,
+ "tags": [
+ {
+ "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "dfa4ebef-b70e-4ded-b410-91cf632b8f11-31986242954461184"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 842000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 842000,
+ "tags": [
+ {
+ "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "148e5b7b-1f5a-4221-a9d9-f3ad4bd6670b-31986280501874688"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Richard Ying: Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 846000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"location\": \"Paris\", \"profile_background_color\": \"352726\", \"id_str\": \"104293463\", \"utc_offset\": 3600, \"statuses_count\": 1432, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"notifications\": null, \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 29}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [92, 97], \"text\": \"rsln\"}], \"urls\": []}, \"contributors\": null, \"truncated\": false, \"text\": \"Ushahidi \\\"technologie apparue \\u00e0 Nairobi, Kenya, et qui s'est r\\u00e9pandue dans le monde entier\\\" #rsln ++\", \"created_at\": \"Mon Jan 31 08:05:02 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31986297836933121, \"source\": \"TweetDeck \", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31986297836933121\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 846000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c4a6d9f0-29af-49f3-a6ae-e926f1084a36-31986297836933121"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les sms pour amener le web dans la brousse !",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #rsln les sms pour amener le web dans la brousse !",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 848000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les sms pour amener le web dans la brousse !\", \"created_at\": \"Mon Jan 31 08:05:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 867, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986306355564545, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986306355564545\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 848000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b7ec955a-9669-492b-8917-ec144e514191-31986306355564545"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "guigui bat: RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 871000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"listed_count\": 133, \"utc_offset\": 3600, \"statuses_count\": 17761, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"location\": \"Paris, France\", \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 9132482, \"screen_name\": \"kanthos\", \"name\": \"Anthony\", \"id_str\": \"9132482\"}, {\"indices\": [16, 25], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [86, 91], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:05:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 33849214, \"verified\": false, \"profile_sidebar_fill_color\": \"F7DA93\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 288, \"protected\": false, \"id_str\": \"33849214\", \"profile_background_color\": \"000000\", \"listed_count\": 8, \"utc_offset\": -10800, \"statuses_count\": 1024, \"description\": \"Pigiste (radio latina, voltage...) - Journaliste (ex-G\\u00e9n\\u00e9rations 88.2 fm)\", \"friends_count\": 962, \"location\": \"Paris (France)\", \"profile_link_color\": \"CC3300\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1172856658/GUIGUI_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/173146979/Eastbound_and_Down_Season_2_Debuted_in_HBO.jpg\", \"name\": \"guigui bat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 5, \"screen_name\": \"guillaumebat\", \"url\": null, \"created_at\": \"Tue Apr 21 08:15:17 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"FFFFFF\", \"following\": null}, \"id\": 31986404686827520, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986404686827520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 871000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b089c539-c908-4399-87f6-27fd12fb11f5-31986404686827520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Christian Porri: http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 887000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [83, 88], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3v3p6o\", \"indices\": [0, 25], \"expanded_url\": null}]}, \"text\": \"http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN\", \"created_at\": \"Mon Jan 31 08:05:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Windows Phone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36630982, \"verified\": false, \"profile_sidebar_fill_color\": \"dedede\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 456, \"protected\": false, \"id_str\": \"36630982\", \"profile_background_color\": \"dedede\", \"listed_count\": 11, \"utc_offset\": 3600, \"statuses_count\": 1476, \"description\": \"= French graphic and interactive designer * (GUI + UX + Video games gameplay (\\u2665PC gaming) + Science-fiction + Type + Computing culture + ...)\", \"friends_count\": 614, \"location\": \"On the taskbar\", \"profile_link_color\": \"0a3aff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/239549703/logoTF_twitter_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/15559291/fond-twitter.jpg\", \"name\": \"Christian Porri\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"Tamantafamiglia\", \"url\": \"http://www.christianporri.com\", \"created_at\": \"Thu Apr 30 09:53:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"f8f7f7\", \"following\": null}, \"id\": 31986470629675008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986470629675008\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 887000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a3a42252-81f3-4555-abff-e1273080d7ef-31986470629675008"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "img": {
+ "src": ""
+ },
+ "title": "SandraValerii: RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 897000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 10], \"id\": 6284172, \"screen_name\": \"versac\", \"name\": \"NicolasVanbremeersch\", \"id_str\": \"6284172\"}], \"hashtags\": [{\"indices\": [99, 111], \"text\": \"blendedtech\"}, {\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [74, 98], \"expanded_url\": null}]}, \"text\": \"RT @versac: Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:05:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 51, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31986513839394816, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986513839394816\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 897000,
+ "tags": [
+ {
+ "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "99afc6f7-1840-49a7-80aa-2522e7cf6296-31986513839394816"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 905000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [120, 125], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [43, 63], \"expanded_url\": null}]}, \"text\": \"Ushahidi, une plateforme invent\\u00e9e au Kenya http://bit.ly/dCSATj L'\\u00e9quivalent nu\\u00e9mrique du d\\u00e9veloppement du micro-cr\\u00e9dit #RSLN\", \"created_at\": \"Mon Jan 31 08:06:01 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5189, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986544894025728, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986544894025728\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 905000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "93ac26d2-8571-4ea7-8af8-823f2b53949c-31986544894025728"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 929000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 929000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d665d937-20e1-4281-aa3f-d311478ad9fe-31986647222452224"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "peopleare: #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 947000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln\", \"created_at\": \"Mon Jan 31 08:06:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14177974, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 10, \"protected\": false, \"id_str\": \"14177974\", \"profile_background_color\": \"1A1B1F\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 1, \"description\": \"\", \"friends_count\": 17, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/128858275/Av_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme9/bg.gif\", \"name\": \"peopleare\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"peopleare\", \"url\": null, \"created_at\": \"Wed Mar 19 16:54:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 0}, \"id\": 31986723009339392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986723009339392\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 947000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "523773b2-940d-49b4-b927-e9c5754a42fa-31986723009339392"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: \"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 976000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [102, 110], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [111, 116], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"La technologie doit donner envie de participer, m\\u00eame aux n\\u00e9ophytes, et de faire des choses utiles\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:07:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 222, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31986844849672192, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986844849672192\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 976000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "4f660231-ecec-486d-b834-0d49dcb77126-31986844849672192"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Christophe Prieuur: Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 979000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [68, 73], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Nicolas Hulot a invit\\u00e9 Clay Shirky \\u00e0 pr\\u00e9senter sa nouvelle \\u00e9mission #rsln\", \"created_at\": \"Mon Jan 31 08:07:15 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 245, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 6}, \"id\": 31986856920883200, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986856920883200\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 979000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "0f2f20ef-f0ea-44ca-af4d-ca04de0c0887-31986856920883200"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 986000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...\", \"created_at\": \"Mon Jan 31 08:07:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 29, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31986884519403520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986884519403520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 986000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "580cca57-71b6-4ac3-9466-5b4eaf1c1a5c-31986884519403520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "chaffiotte: Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 994000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Ushahidi ... Invent\\u00e9 \\u00e0 Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\\n#RSLN\", \"created_at\": \"Mon Jan 31 08:07:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 26260924, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 326, \"protected\": false, \"id_str\": \"26260924\", \"profile_background_color\": \"131516\", \"listed_count\": 16, \"utc_offset\": -10800, \"statuses_count\": 666, \"description\": \"ceo of JWT Paris/ I love the social media revolution and I want to be part of it : vive la revolution !!!/master class in hyper island /runner & biker\", \"friends_count\": 708, \"location\": \"paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1219068025/IMG_0928_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/171909728/twilk_background_4ce11ca768fe7.jpg\", \"name\": \"chaffiotte\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 191, \"screen_name\": \"clachaf\", \"url\": \"http://chaff.unblog.fr\", \"created_at\": \"Tue Mar 24 15:49:07 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"ededed\", \"following\": null}, \"id\": 31986919567003648, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986919567003648\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 994000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ad674d93-be78-46d1-ade9-1b88352156f7-31986919567003648"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Richard Ying: Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 997000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay Shirky sur Ushahidi \\\"pas besoin de venir de Mountain View, Californie, pour se d\\u00e9velopper dans le monde\\\" #rsln\", \"created_at\": \"Mon Jan 31 08:07:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"id_str\": \"104293463\", \"profile_background_color\": \"352726\", \"listed_count\": 29, \"utc_offset\": 3600, \"statuses_count\": 1433, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31986931373965312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986931373965312\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 997000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7b8cdc48-a872-484c-a556-9866ffbc42d9-31986931373965312"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 998000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [119, 124], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [47, 67], \"expanded_url\": null}]}, \"text\": \"Enti\\u00e8rement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le t\\u00e9l\\u00e9phone de base #RSLN\", \"created_at\": \"Mon Jan 31 08:07:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5190, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986936306475008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986936306475008\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 998000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ee47d8e1-2312-48ee-887f-68d06ba3c24b-31986936306475008"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: @CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1004000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [53, 58], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(\", \"created_at\": \"Mon Jan 31 08:07:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31983580863270912\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36027828\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": 31983580863270912, \"in_reply_to_screen_name\": \"CyrilleF\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6852, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986959354171392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986959354171392\", \"in_reply_to_user_id\": 36027828}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1004000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2bcbfb84-ad91-4309-875f-1ff4a158323c-31986959354171392"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1016000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [132, 140], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky\", \"created_at\": \"Mon Jan 31 08:07:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4632, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31987011116077056, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987011116077056\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1016000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e0de5ce3-a9fe-4b1d-8828-63b8c1100327-31987011116077056"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1028000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay ouvre sa conf\\u00e9rence avec les m\\u00eames exemples qu'\\u00e0 TED : Ushahidi et les autres exemples de crowdsourcing citoyen.\", \"created_at\": \"Mon Jan 31 08:08:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 176, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"location\": \"Paris - Ze capitale of ze love\", \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null}, \"id\": 31987061594529792, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987061594529792\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1028000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "5d6624a4-ab46-4f25-9212-15ea5e3c648b-31987061594529792"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1032000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1032000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a0eaec31-b3f3-473d-9d49-5db9c8108531-31987077629353984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1044000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [131, 136], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN\", \"created_at\": \"Mon Jan 31 08:08:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 961, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987129944899584, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987129944899584\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1044000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "56765e7a-5e78-4c90-99f0-9754a9ba5c3f-31987129944899584"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Guillaume Decugis: Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1047000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 19], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://ushahidi.com/\", \"indices\": [20, 40], \"expanded_url\": null}]}, \"text\": \"Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++\", \"created_at\": \"Mon Jan 31 08:08:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1705, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31987139579219970, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987139579219970\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1047000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fd898cbc-613c-483b-8cf2-ec51e04c3fdf-31987139579219970"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN cognitive surplus = Agregation of free time ++",
+ "img": {
+ "src": ""
+ },
+ "title": "steamwolf: #RSLN cognitive surplus = Agregation of free time ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1055000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN cognitive surplus = Agregation of free time ++\", \"created_at\": \"Mon Jan 31 08:08:31 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1037, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987173393694720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987173393694720\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1055000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fa78ba38-eccd-4aea-82f6-fafdeb768d79-31987173393694720"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1058000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [93, 98], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Des individus contribuent avec leurs moyens num\\u00e9riques et les contenus sont agr\\u00e9g\\u00e9s Ushahidi #RSLN\", \"created_at\": \"Mon Jan 31 08:08:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5191, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987185867558912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987185867558912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1058000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "4f56d1d0-71f6-4e08-9ca3-1a563c38e650-31987185867558912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1064000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 19], \"id\": 14430897, \"screen_name\": \"dominiquepiotet\", \"name\": \"dominiquepiotet\", \"id_str\": \"14430897\"}], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5192, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987211511537664, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987211511537664\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1064000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "97ef046f-8920-4440-8bf5-3e2feab0f554-31987211511537664"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Sane Lebrun: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1076000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [48, 53], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:08:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36333549, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 686, \"protected\": false, \"id_str\": \"36333549\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3487, \"description\": \"Product Manager (global) for a videogame publisher (iPhone, iPad, etc). Graduated from ESCP Europe (Master in Management). Electro music addict.\", \"friends_count\": 1204, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/190531233/n576390766_6339_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296072137/images/themes/theme1/bg.png\", \"name\": \"Sane Lebrun\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"SaneFive\", \"url\": \"http://www.playfive.fr\", \"created_at\": \"Wed Apr 29 11:06:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 25}, \"id\": 31987261545390080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987261545390080\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1076000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7ccde140-d71b-4941-8fbe-d089051caf8d-31987261545390080"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1082000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:08:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 906, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31987290372833280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987290372833280\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1082000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2cb968cf-9e18-450d-8970-06bc3cbef44d-31987290372833280"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1109000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [43, 52], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [102, 107], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Et le jean et la d\\u00e9gaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:09:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5193, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987400594948096, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987400594948096\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1109000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "54299691-eed0-495f-bf34-8041f905b6ff-31987400594948096"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1110000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [115, 120], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Utiliser \\u00e0 bon escient le temps libre pour faire des r\\u00e9alisations participatives, civiques, gr\\u00e2ce \\u00e0 l'information. #RSLN @cshirky\", \"created_at\": \"Mon Jan 31 08:09:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 223, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31987405376462848, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987405376462848\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1110000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "555aed43-371a-435a-a8f9-34d4f0943ce6-31987405376462848"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln clay speak about cognitive surplus @microsoft ==",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln clay speak about cognitive surplus @microsoft ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1142000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [41, 51], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln clay speak about cognitive surplus @microsoft ==\", \"created_at\": \"Mon Jan 31 08:09:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1664, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987540001034240, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987540001034240\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1142000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "0ba6928c-36ac-4bb9-8cf4-ac85ec2c5e53-31987540001034240"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN Cognitive Surplus utilisation : a form of civic action ++",
+ "img": {
+ "src": ""
+ },
+ "title": "steamwolf: #RSLN Cognitive Surplus utilisation : a form of civic action ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1153000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN Cognitive Surplus utilisation : a form of civic action ++\", \"created_at\": \"Mon Jan 31 08:10:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1038, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987584431300609, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987584431300609\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1153000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2ca29e25-fd73-4740-a738-692a59d685a8-31987584431300609"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1162000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln De l'information \\u00e0 l'action, le chemin n'est pas forc\\u00e9ment aussi direct --\", \"created_at\": \"Mon Jan 31 08:10:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 83, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987622867902464, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987622867902464\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1162000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "672067e8-d8ff-4f3c-8138-71ac8ee66af4-31987622867902464"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln == http://t.co/DWhd8FM",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln == http://t.co/DWhd8FM",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1193000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://t.co/DWhd8FM\", \"indices\": [9, 28], \"expanded_url\": \"http://twitpic.com/3v3qdr\", \"display_url\": \"twitpic.com/3v3qdr\"}]}, \"text\": \"#rsln == http://t.co/DWhd8FM\", \"created_at\": \"Mon Jan 31 08:10:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1665, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987754690678784, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987754690678784\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1193000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d6136d85-502d-4dbd-92c7-205a3fd488e6-31987754690678784"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1257000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1257000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "f1ec6223-723e-43ff-8271-261b3c92e031-31988022811561984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1285000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.\", \"created_at\": \"Mon Jan 31 08:12:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4633, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988138171703296, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988138171703296\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1285000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "065e2a82-df5a-48f8-b930-64f576918362-31988138171703296"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1288000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanit\\u00e9--\", \"created_at\": \"Mon Jan 31 08:12:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 84, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31988154219102208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988154219102208\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1288000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ebddeaf0-eee1-4802-b938-5302a2cd1f8f-31988154219102208"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"smart consumer\"... Ça doit être moi, ça... #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: \"smart consumer\"... Ça doit être moi, ça... #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1309000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"smart consumer\\\"... \\u00c7a doit \\u00eatre moi, \\u00e7a... #RSLN\", \"created_at\": \"Mon Jan 31 08:12:45 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5194, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31988242005884928, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988242005884928\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1309000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "63252f66-2e00-4308-b0e4-a35101384770-31988242005884928"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1327000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN\", \"created_at\": \"Mon Jan 31 08:13:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 907, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31988317780189185, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988317780189185\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1327000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7adfa340-c194-4df5-b785-a1b475ea7a30-31988317780189185"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1338000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [90, 95], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN\", \"created_at\": \"Mon Jan 31 08:13:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6853, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31988363938496513, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988363938496513\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1338000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d158ccd2-47e2-4a03-b367-54435bbf0d65-31988363938496513"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
+ "img": {
+ "src": ""
+ },
+ "title": "marjoriepaillon: RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1355000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 14974710, \"screen_name\": \"eni_kao\", \"name\": \"[Enikao]\", \"id_str\": \"14974710\"}, {\"indices\": [132, 136], \"id\": 4687901, \"screen_name\": \"CSH\", \"name\": \"Charles Harvey\", \"id_str\": \"4687901\"}], \"hashtags\": [{\"indices\": [125, 130], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @eni_kao: [Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@csh ...\", \"created_at\": \"Mon Jan 31 08:13:31 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 16039806, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 3807, \"protected\": false, \"id_str\": \"16039806\", \"profile_background_color\": \"EBEBEB\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1935, \"description\": \"Journaliste News, Web & Mag \\r\\n// R\\u00e9f\\u00e9rences: @ilovepolitics,BFMTV,France 5 \", \"friends_count\": 622, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/401202539/Image_1_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"marjoriepaillon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"marjoriepaillon\", \"url\": \"http://www.ilovepolitics.info\", \"created_at\": \"Fri Aug 29 09:08:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 346}, \"id\": 31988432993525761, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988432993525761\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1355000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "71f695ce-68b1-481a-96c1-19452097f2ec-31988432993525761"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1366000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln == \\\"citizen as sensor\\\" / \\\"smart consumer\\\" / ...\", \"created_at\": \"Mon Jan 31 08:13:42 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1666, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988479382519808, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988479382519808\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1366000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "224867c5-0c16-41be-9008-376786d28172-31988479382519808"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1422000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.\", \"created_at\": \"Mon Jan 31 08:14:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4634, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31988714007699456, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988714007699456\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1422000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a1bc35a2-85e6-4b33-b6fa-258d59f19979-31988714007699456"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "code for america : le réseau social collaboratif des villes US #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "la pinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1446000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1446000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c798f63b-b5f0-420c-8679-bce3e5e871b2-31988814801010688"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: \"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1452000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"Rendre la donn\\u00e9e publique pour que les citoyens \\u00e9clairent les d\\u00e9cisions politiques et prennent des d\\u00e9cisions \\u00e9clair\\u00e9es\\\" @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:15:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 224, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31988838863732736, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988838863732736\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1452000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6145c2ec-41f7-4bba-b617-494348d471d2-31988838863732736"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
+ "color": "16763904",
+ "polemics": ["Q", "KO", "OK", "REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1458000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question\", \"created_at\": \"Mon Jan 31 08:15:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1667, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988863538831361, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988863538831361\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1458000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c68cb5fb-f2e1-49a6-8adb-f18b81ca1f35-31988863538831361"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1465000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org-to-Org, Partnership, eg Code for America.\", \"created_at\": \"Mon Jan 31 08:15:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4635, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988892798291968, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988892798291968\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1465000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ff4cc5ef-239b-4b6f-9a5a-43980f1f74b6-31988892798291968"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1490000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"listed_count\": 159, \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"location\": \"Paris\", \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 17152456, \"screen_name\": \"flapinta\", \"name\": \"la pinta\", \"id_str\": \"17152456\"}], \"hashtags\": [{\"indices\": [77, 82], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @flapinta: code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 908, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31988999027429376, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988999027429376\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1490000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "104f925e-221c-4e97-a076-2405e5e14987-31988999027429376"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1544000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)\", \"created_at\": \"Mon Jan 31 08:16:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4636, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989228145479680, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989228145479680\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1544000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b55fb9b7-b082-4db6-a899-b2088f85c882-31989228145479680"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1554000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [81, 86], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"@cshirky : Govs are afraid of synchronized groups. That\\u2019s what changes politics. #rsln\", \"created_at\": \"Mon Jan 31 08:16:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 348, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 962, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31989270000439297, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989270000439297\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1554000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "676ae1cb-377f-441e-82d3-3e1069620518-31989270000439297"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1560000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --\", \"created_at\": \"Mon Jan 31 08:16:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 30, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989295094960128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989295094960128\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1560000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a688883e-99e5-4b56-b247-262cb9c188b3-31989295094960128"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1570000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln l'image culturelle produite par la foule est elle conforme \\u00e0 l'image culturelle que nous imaginons pour nos groupes sociaux ??\", \"created_at\": \"Mon Jan 31 08:17:06 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31989337163825152, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989337163825152\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1570000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "359e7c36-ad95-4001-aa56-b457c6559df3-31989337163825152"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: 'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1584000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [82, 87], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN\", \"created_at\": \"Mon Jan 31 08:17:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 909, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31989392583168000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989392583168000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1584000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d144b130-a959-4602-a2c5-2c2ccb8a5ef0-31989392583168000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1599000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1599000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b8cb2f37-0cb6-45c6-8e37-79da8f7d53b1-31989455556444160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1610000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"Les gouvernements n'ont pas peur des gens individuellement inform\\u00e9s, ils ont peur des groupes synchronis\\u00e9s\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:17:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9112, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31989502138388480, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989502138388480\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1610000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "23cd3ce7-35bc-4d8b-9909-d14a9ade0dba-31989502138388480"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Guillaume Decugis: \"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1637000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [101, 109], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\\\" @cshirky #rsln\", \"created_at\": \"Mon Jan 31 08:18:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1706, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31989616357679105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989616357679105\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1637000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "22741a60-5f15-4c3f-8439-5c6aea35fac5-31989616357679105"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1642000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Quelle est la n\\u00e9cessit\\u00e9 d'une structure organisationnelle pour traiter l'information \\u00e0 l'heure ou chaque citoyen est un informateur?\", \"created_at\": \"Mon Jan 31 08:18:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 177, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31989637765406720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989637765406720\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1642000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "65975110-6493-43b3-afe8-7002d8a5efd8-31989637765406720"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1652000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [123, 128], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"L'Internet, c'est un peu comme le foot : \\u00e7a aide \\u00e0 coordonner les sentiments. Tr\\u00e8s vrai pour les rues arabes actuellement. #RSLN\", \"created_at\": \"Mon Jan 31 08:18:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6854, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31989680345976832, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989680345976832\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1652000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "296f36b9-4c1c-4d2c-9686-64e40002fda7-31989680345976832"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"people talk abiut what they care about\" ++ #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "SandraValerii: \"people talk abiut what they care about\" ++ #rsln",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1684000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"people talk abiut what they care about\\\" ++ #rsln\", \"created_at\": \"Mon Jan 31 08:19:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 52, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31989814358179840, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989814358179840\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1684000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "700fc385-f74b-4990-9995-c449920ca767-31989814358179840"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
+ "img": {
+ "src": ""
+ },
+ "title": "Alexandre Monnin: #rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1696000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [44, 86], \"expanded_url\": null}]}, \"text\": \"#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==\", \"created_at\": \"Mon Jan 31 08:19:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"is_translator\": false, \"profile_text_color\": \"634047\", \"followers_count\": 317, \"protected\": false, \"id_str\": \"7409472\", \"profile_background_color\": \"EDECE9\", \"location\": \"Paris\", \"utc_offset\": -10800, \"statuses_count\": 2456, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 441, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296173346/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"following\": null, \"listed_count\": 59}, \"id\": 31989862680764417, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989862680764417\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1696000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e0b04beb-d86d-4767-9bce-7b20292652cf-31989862680764417"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1719000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les forums du moyen orient destin\\u00e9s \\u00e0 la base au football sont devenus des forums d'organisation anti gouvernement ! ++\", \"created_at\": \"Mon Jan 31 08:19:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 31, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989961112686592, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989961112686592\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1719000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "28ad17ee-7a32-453a-aeb3-69263c8ad9e2-31989961112686592"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
+ "img": {
+ "src": ""
+ },
+ "title": "Pierre Mounier: Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1720000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [46, 56], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Je suis aux rencontres #RSLN avec Clay Shirky @microsoft\", \"created_at\": \"Mon Jan 31 08:19:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14233770, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 629, \"protected\": false, \"id_str\": \"14233770\", \"profile_background_color\": \"352726\", \"listed_count\": 102, \"utc_offset\": 3600, \"statuses_count\": 2468, \"description\": \"Directeur adjoint du Cl\\u00e9o. Fondateur et principal auteur d'Homo Numericus.\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/52135065/pmounier_bd_moyen_normal.gif\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/190199985/twilk_background_4d287d7ccb851.jpg\", \"name\": \"Pierre Mounier\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 10, \"screen_name\": \"piotrr70\", \"url\": \"http://pierremounier.net\", \"created_at\": \"Thu Mar 27 08:45:11 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31989963117568000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989963117568000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1720000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ab421284-1030-445c-9513-0dd3ca060bcc-31989963117568000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1723000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [126, 134], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [135, 140], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont all\\u00e9s y parler des le\\u00e7ons de Sidibouzid\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:19:39 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3031, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9113, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31989978137370624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989978137370624\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1723000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2fbb7622-d712-42be-9c54-45d3c0c7fcf8-31989978137370624"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln ?? Technology = Politique ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln ?? Technology = Politique ?",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1747000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln ?? Technology = Politique ?\", \"created_at\": \"Mon Jan 31 08:20:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1668, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31990076544131074, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990076544131074\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1747000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "65db3699-f88b-49af-8a2f-94ae92352adf-31990076544131074"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Lionel Natarianni: Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1753000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky\", \"created_at\": \"Mon Jan 31 08:20:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1600, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 13}, \"id\": 31990101542182912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990101542182912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1753000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "68aee21b-5de2-4201-b3fd-bc5c557eabfc-31990101542182912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1758000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:20:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 32, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31990124346613762, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31990124346613762\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1758000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "588e89ba-3873-41d9-bd0e-9717b3ae6dc9-31990124346613762"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyril Attias: @SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1766000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [107, 112], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN\", \"created_at\": \"Mon Jan 31 08:20:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31987261545390080\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36333549\", \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": 31987261545390080, \"in_reply_to_screen_name\": \"SaneFive\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1944301, \"verified\": false, \"profile_sidebar_fill_color\": \"d0d0d0\", \"is_translator\": false, \"profile_text_color\": \"2d2d2d\", \"followers_count\": 3141, \"protected\": false, \"id_str\": \"1944301\", \"profile_background_color\": \"ffffff\", \"location\": \"Paris - France\", \"utc_offset\": 3600, \"statuses_count\": 6560, \"description\": \"French blogger, digital expert \\r\\n10 years on digital agency - Ogilvy Paris, TBWA\\\\PARIS - CEO at influence digitale, l'agence des m\\u00e9dias sociaux @1fluencedigital\", \"friends_count\": 1768, \"profile_link_color\": \"28b4ec\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1175910852/cattias_gravatar_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/167329311/new_twitter_theme_def2.jpg\", \"name\": \"Cyril Attias\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 40, \"screen_name\": \"cyril\", \"url\": \"http://www.attias.net/blog\", \"created_at\": \"Thu Mar 22 22:10:39 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"28b4ec\", \"following\": null, \"listed_count\": 295}, \"id\": 31990155749363712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990155749363712\", \"in_reply_to_user_id\": 36333549}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1766000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ee49a97b-e106-4233-9e28-294798e90527-31990155749363712"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1767000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}, {\"indices\": [113, 121], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:20:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"listed_count\": 116, \"utc_offset\": 3600, \"statuses_count\": 1920, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"location\": \"iPhone: 48.845192,2.237256\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null}, \"id\": 31990160874799105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990160874799105\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1767000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c89eea8d-e31e-4783-89b9-a682750f3e58-31990160874799105"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
+ "img": {
+ "src": ""
+ },
+ "title": "Alexis MONS: Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1778000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1147131, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"profile_text_color\": \"333333\", \"followers_count\": 675, \"protected\": false, \"location\": \"Limoges, France\", \"profile_background_color\": \"022330\", \"id_str\": \"1147131\", \"utc_offset\": 3600, \"statuses_count\": 1524, \"description\": \"Cofounder and VP Strategy of groupeReflect\", \"friends_count\": 321, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/304999987/AM2009_normal.jpeg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296156503/images/themes/theme15/bg.png\", \"name\": \"Alexis MONS\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 11, \"screen_name\": \"AlecM\", \"notifications\": null, \"url\": \"http://about.me/alexismons\", \"created_at\": \"Wed Mar 14 09:44:56 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 50}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [9, 14], \"text\": \"RSLN\"}], \"urls\": [{\"indices\": [58, 76], \"url\": \"http://ht.ly/3N4Ma\", \"expanded_url\": null}]}, \"contributors\": null, \"truncated\": false, \"text\": \"Le d\\u00e9bat #RSLN - Le livre num\\u00e9rique, c\\u2019est pour bient\\u00f4t ? http://ht.ly/3N4Ma\", \"created_at\": \"Mon Jan 31 08:20:34 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31990208165576705, \"source\": \"HootSuite \", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31990208165576705\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1778000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a99b2916-cd16-4322-af47-e14a862e5241-31990208165576705"
+ }
+ ],
+ "annotation-types": [
+ {
+ "dc:contributor": "perso",
+ "dc:creator": "perso",
+ "dc:title": "chapitrage",
+ "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:description": "",
+ "dc:modified": "2012-05-07T10:11:06.721324"
+ }, {
+ "dc:contributor": "perso",
+ "dc:creator": "perso",
+ "dc:title": "Tweets",
+ "id": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:description": "Tweets",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ }
+ ]
+}
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/json/ldt-jwplayer.json
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/json/ldt-jwplayer.json Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,5292 @@
+{
+ "views": [
+ ],
+ "tags": [
+ {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "citizen sensor",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "organic failure",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8b75a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "money",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "small and good",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84752-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "civic action",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "social network",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9dc52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "radio",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8ec84-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "public informations",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "electoral fraud",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "coordination",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "information mass",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.769035",
+ "dc:title": "citizenjournalism",
+ "dc:modified": "2012-05-07T10:11:06.769035",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.830969",
+ "dc:title": "tweet",
+ "dc:modified": "2012-05-07T10:11:06.830969",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d6ebc2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "commercial space",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8707e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "platform",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "human resource",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "public space",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8851e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information amplifier",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9cffa-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "soccer",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "free time",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "traffic map",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "distributed information",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "government",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "individual power",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8790c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "aggregation",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "inorganic failure",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8ab52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.761421",
+ "dc:title": "communities",
+ "dc:modified": "2012-05-07T10:11:06.761421",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "market value",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9887e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "professional journalism",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93e0a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "success",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84b44-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "motivated actors",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8b354-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "journalism",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c95f48-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.771135",
+ "dc:title": "Ushahidi",
+ "dc:modified": "2012-05-07T10:11:06.771135",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "music industry",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9ab10-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "citizen action",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "revolution",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f08a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "people",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "Ushaidi",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "Internet",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e0a4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "Wikipedia",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c85332-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "fail",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "political life",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.821961",
+ "dc:title": "clayshirky",
+ "dc:modified": "2012-05-07T10:11:06.821961",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d58b7e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "consumers",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.881698",
+ "dc:title": "democratizes",
+ "dc:modified": "2012-05-07T10:11:06.881698",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dea448-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "digital sharecropping",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c98414-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.730624",
+ "dc:title": "information management",
+ "dc:modified": "2012-05-07T10:11:06.730624",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "hybridisation",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c95a34-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.730624",
+ "dc:title": "participation",
+ "dc:modified": "2012-05-07T10:11:06.730624",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.886191",
+ "dc:title": "Pepsico",
+ "dc:modified": "2012-05-07T10:11:06.886191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5df53f2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Libya",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "free speech",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c874f2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "open communication",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "Microsoft",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information filter",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9d45a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "citizen organizations",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "citizens",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "coordinate actions",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9f944-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "action",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "plausible promess",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84360-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "contribution",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93162-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "sharing objects",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9b326-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "protests",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "communication",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "community",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8a6ca-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "tools",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8bb56-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "market",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c96362-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "social life",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "large and mediocre",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c83f64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "web phone gap",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.936514",
+ "dc:title": "hadopi",
+ "dc:modified": "2012-05-07T10:11:06.936514",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e70214-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "crowdsourcing",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93608-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.754973",
+ "dc:title": "iphone",
+ "dc:modified": "2012-05-07T10:11:06.754973",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.740402",
+ "dc:title": "pepsi refresh project",
+ "dc:modified": "2012-05-07T10:11:06.740402",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c914de-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information quality",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9d86a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "smart consumer",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "block party",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "talents",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "catalyst",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c836fe-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "voluntary participation",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "Nairobi",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "organizations",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "television",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f8dc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "counter democracy",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9fda4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "opportunity design",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "Egypt",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.922593",
+ "dc:title": "failcon",
+ "dc:modified": "2012-05-07T10:11:06.922593",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e4e646-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "printing democracy",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e892-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.945336",
+ "dc:title": "PUBLIC",
+ "dc:modified": "2012-05-07T10:11:06.945336",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e85a74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "usability",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.878489",
+ "dc:title": "sidibouzid",
+ "dc:modified": "2012-05-07T10:11:06.878489",
+ "dc:creator": "IRI"
+ },
+ "id": "f5de273e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "sharing information",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9af34-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "golden age for journalism but not for money",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93a18-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "share",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f486-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "malls",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c88104-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "synchronised crowded",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84f40-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "information",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Egypitia",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "media",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e496-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "cognitive surplus",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "Wikileaks",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8891a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "business model",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c97fc8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "gin crisis",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9a67e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "fascism",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8dc9e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.830969",
+ "dc:title": "addict",
+ "dc:modified": "2012-05-07T10:11:06.830969",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d6e6fe-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.774383",
+ "dc:title": "blendedtech",
+ "dc:modified": "2012-05-07T10:11:06.774383",
+ "dc:creator": "IRI"
+ },
+ "id": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "political informations",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "law",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c87d08-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "blend technology",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "democracy",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8d852-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Tunisia",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "political action",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.863215",
+ "dc:title": "nooffense",
+ "dc:modified": "2012-05-07T10:11:06.863215",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dbd6b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.868458",
+ "dc:title": "microsoft",
+ "dc:modified": "2012-05-07T10:11:06.868458",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dc9f68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "lists": [],
+ "medias": [
+ {
+ "origin": "0",
+ "url": "rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/ldtplatform/rsln_clay_shirky",
+ "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
+ "meta": {
+ "dc:contributor": "IRI",
+ "item": {
+ "name": "streamer",
+ "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
+ },
+ "dc:created": "2011-02-14T15:06:34.829919",
+ "dc:duration": 1800000,
+ "dc:creator": "IRI",
+ "dc:created.contents": "2012-02-13",
+ "dc:title": "RSLN Clay Shirky",
+ "dc:creator.contents": "IRI",
+ "dc:modified": "2012-02-13T11:55:23.898905",
+ "dc:description": "RSLN Clay Shirky"
+ },
+ "id": "9a493932-3053-11e0-862b-00145ea49a02",
+ "unit": "ms"
+ }
+ ],
+ "meta": {
+ "dc:contributor": "admin",
+ "dc:created": "2011-02-14T15:15:52.602502",
+ "dc:creator": "admin",
+ "main_media": {
+ "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
+ },
+ "dc:description": "",
+ "dc:title": "RSLN Clay Shirky - Tweets",
+ "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
+ "dc:modified": "2012-04-29T15:41:55.858453"
+ },
+ "annotations": [
+ {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Introduction",
+ "color": "3355443",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 0,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 170000,
+ "tags": null,
+ "color": "3355443",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Introduction de Constance Parodi",
+ "color": "3355443",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 177457,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 410939,
+ "tags": null,
+ "color": "3355443",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_0C9E4E6B-043B-FCDE-D865-29ED81488D99"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Clay Shirky : début de conférence",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 503000,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 783000,
+ "tags": [
+ {
+ "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_D8459097-1DE3-F28A-34CF-293F5C6B62E1"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "3 features of Ushaidi",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 783462,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1000062,
+ "tags": [
+ {
+ "id-ref": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_B7F5CADC-465C-9E96-7279-29F8EAE07510"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "free time, talents, human resource, cognitive surplus, aggregation, communication",
+ "img": {
+ "src": ""
+ },
+ "title": "Coginitive surplus : free time",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1006108,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1078840,
+ "tags": [
+ {
+ "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_185D6DE8-980B-2ADB-0C3E-2A20D6E331EB"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "civic action, information, action, people, organizations, coordination, citizen sensor",
+ "img": {
+ "src": ""
+ },
+ "title": "Penser les actions civiques",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1078840,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1235162,
+ "tags": [
+ {
+ "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_2C466914-84E2-91AA-2BAC-2A2158B7892C"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "citizen sensor, government, traffic map, open communication",
+ "img": {
+ "src": ""
+ },
+ "title": "Les capteurs citoyens",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1235162,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1307028,
+ "tags": [
+ {
+ "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_BB6067B1-A4A7-6636-CE0E-2A216B94B896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "smart consumer, public informations, political informations, money, action, citizens",
+ "img": {
+ "src": ""
+ },
+ "title": "Consomateur inteligents",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1307028,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1407440,
+ "tags": [
+ {
+ "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_F54B6E7D-F262-6726-94CB-2A217EDE2052"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "government, information management, participation",
+ "img": {
+ "src": ""
+ },
+ "title": "Code for America",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1407440,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1512525,
+ "tags": [
+ {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_691C78EF-6904-430D-5DE0-2A218F780AE8"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Libya, soccer, government, protests, coordination, social life, political life, Tunisia, Egypitia",
+ "img": {
+ "src": ""
+ },
+ "title": "Platforme pour les actions civiques",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1512525,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1667170,
+ "tags": [
+ {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_9BA33565-786B-24A5-F2EF-2A21A959633F"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "coordination, political action, citizen action, citizen organizations",
+ "img": {
+ "src": ""
+ },
+ "title": "Le vrai grand changement",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1668051,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1753100,
+ "tags": [
+ {
+ "id-ref": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_874C9537-11F5-85A1-3E54-2A25590396D6"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "block party, platform, citizen organizations, consumers, cognitive surplus",
+ "img": {
+ "src": ""
+ },
+ "title": "Fetes des voisins",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1754200,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1800000,
+ "tags": [
+ {
+ "id-ref": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_CAE3C373-F725-A3CA-099A-2A2576315966"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln commence 8h50",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln commence 8h50",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 0,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 0,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 7000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 7000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 42000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 42000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 55000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 55000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
+ "color": "16763904",
+ "polemics": ["Q", "REF", "OK", "KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 62000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 62000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 127000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [77, 85], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3uztmc\", \"indices\": [88, 113], \"expanded_url\": null}]}, \"text\": \"Quelques r\\u00e8gles int\\u00e9ressantes pour le live-twitt de la conf\\u00e9rence #RSLN avec @cshirky : http://twitpic.com/3uztmc.\", \"created_at\": \"Mon Jan 31 07:53:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"location\": \"Boulogne-Billancourt\", \"utc_offset\": 3600, \"statuses_count\": 219, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null, \"listed_count\": 40}, \"id\": 31983280916004864, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983280916004864\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 127000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d0ba17c8-950f-4ae0-ae0d-32e04cde6941-31983280916004864"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 140000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [5, 10], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://yfrog.com/h0dbkxsj\", \"indices\": [29, 54], \"expanded_url\": null}]}, \"text\": \"Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj\", \"created_at\": \"Mon Jan 31 07:53:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5185, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983338092765184, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983338092765184\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 140000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "3f73186a-08df-4d38-821d-2a889a84f2c0-31983338092765184"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky @Microsoft #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Constance de 4barbes: Clay shirky @Microsoft #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 148000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [12, 22], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky @Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:53:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 57623127, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 53, \"protected\": false, \"id_str\": \"57623127\", \"profile_background_color\": \"131516\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 267, \"description\": \"Digital Humanities and Social Media: Community and Content Management\", \"friends_count\": 70, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/983938390/pic.php_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/155252455/avatar.jpg\", \"name\": \"Constance de 4barbes\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 8, \"screen_name\": \"c4barbes\", \"url\": \"http://4barbes.com\", \"created_at\": \"Fri Jul 17 11:53:38 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31983371265507328, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983371265507328\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 148000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "04578856-0359-4fb2-9fc7-6d5e2e4615b1-31983371265507328"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Alice Antheaume: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 149000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 149000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fbe9c058-e418-424b-8b0c-c23b89a48a92-31983376617439232"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 152000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [16, 28], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [118, 123], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:53:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6850, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31983387610718208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983387610718208\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 152000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6842cda1-817d-445e-8fb0-b8efd41ad264-31983387610718208"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
+ "img": {
+ "src": ""
+ },
+ "title": "jean-francois gervai: Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 193000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [30, 35], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Rencontre avec Clayton Shirky #RSLN, public nombreux d\\u00e8s \\\"potron minet\\\"\", \"created_at\": \"Mon Jan 31 07:54:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18998756, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 13, \"protected\": false, \"id_str\": \"18998756\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 6, \"description\": \"auteur d'ouvrages autour du web...\", \"friends_count\": 64, \"location\": \"france\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1176741038/04-0420-GERVAIS_JEAN-FRANCOIS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme1/bg.png\", \"name\": \"jean-francois gervai\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"jfgervais\", \"url\": \"http://www.jeanfrancoisgervais\", \"created_at\": \"Wed Jan 14 22:15:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31983557672960000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983557672960000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 193000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "25903be0-f0a6-401c-9068-b54a04c1ee89-31983557672960000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 209000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [18, 27], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [29, 34], \"text\": \"RSLN\"}, {\"indices\": [113, 120], \"text\": \"iphone\"}], \"urls\": []}, \"text\": \"\\u00c7a rousp\\u00e8te... RT @CyrilleF: #RSLN r\\u00e9sau wifi minimum est assur\\u00e9, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?\", \"created_at\": \"Mon Jan 31 07:54:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5186, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983626669260800, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983626669260800\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 209000,
+ "tags": [
+ {
+ "id-ref": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9583862e-51ea-440f-ab7a-b022412eebc2-31983626669260800"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
+ "img": {
+ "src": ""
+ },
+ "title": "Melissa Bounoua: RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 213000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [10, 18], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [83, 89], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [35, 40], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [57, 77], \"expanded_url\": null}]}, \"text\": \"Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:43:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13622572, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 2560, \"protected\": false, \"id_str\": \"13622572\", \"profile_background_color\": \"9AE4E8\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 8687, \"description\": \"Un peu de 20minutes.fr dans cet internet mondial\", \"friends_count\": 346, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1183719410/40794_420716233991_587318991_4855249_4249707_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/121055127/qgvzF.jpg\", \"name\": \"Charles Dufresne\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 7, \"screen_name\": \"rocknrobot\", \"url\": \"http://www.20minutes.fr\", \"created_at\": \"Mon Feb 18 13:32:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 170}, \"id\": 31980923448725504, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31980923448725504\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 14], \"id\": 13622572, \"screen_name\": \"rocknrobot\", \"name\": \"Charles Dufresne\", \"id_str\": \"13622572\"}, {\"indices\": [26, 34], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [99, 105], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [51, 56], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [73, 93], \"expanded_url\": null}]}, \"text\": \"RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:54:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50154, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6679, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31983643530362880, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31983643530362880\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 213000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9eb2aa47-8e9b-4dc2-b7a5-51daf5cddbe8-31983643530362880"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Introduction en français ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Bertil Hatt: #rsln Introduction en français ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 230000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Introduction en fran\\u00e7ais ?\", \"created_at\": \"Mon Jan 31 07:54:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 4985551, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 454, \"protected\": false, \"id_str\": \"4985551\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 42, \"utc_offset\": 3600, \"statuses_count\": 2678, \"description\": \"I do not control either LinkedIn profiles under my name.\\r\\nPhD Econ. \\u201cCompetition between Social Network Sites\\u201d @ U.Paris-Ouest Nanterre & independent consultant\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/22068682/DSC_6634_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/2947659/DSC02510-small.jpg\", \"name\": \"Bertil Hatt\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 436, \"screen_name\": \"bertil_hatt\", \"url\": \"http://www.quora.com/Bertil-Hatt\", \"created_at\": \"Tue Apr 17 11:25:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31983714204385280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983714204385280\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 230000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ff3f0903-4e89-4c28-a43a-71968aa3a5cc-31983714204385280"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 244000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Rappel sur la n\\u00e9cessit\\u00e9 d'Internet avec les \\u00e9v\\u00e9nements en \\u00c9gypte. Introduction Constance Parodi.\", \"created_at\": \"Mon Jan 31 07:55:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 27, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31983773893529601, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983773893529601\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 244000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "8c14ce29-705f-41ee-b320-a20a44ea399d-31983773893529601"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 252000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.\", \"created_at\": \"Mon Jan 31 07:55:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 692, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31983809054380032, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983809054380032\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 252000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "55dffae8-0dec-4aa5-9a75-2181f96d3f47-31983809054380032"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 294000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Dans un instant, la conf\\u00e9rence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus cr\\u00e9atif ?\", \"created_at\": \"Mon Jan 31 07:55:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 175, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 217, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31983982530793472, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983982530793472\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 294000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "78f208b8-04db-4613-8598-863fd424fd3e-31983982530793472"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "à la conférence de Clay Shirky au campus #Microsoft #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "la pinta: à la conférence de Clay Shirky au campus #Microsoft #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 321000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [42, 52], \"text\": \"Microsoft\"}, {\"indices\": [53, 58], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\u00e0 la conf\\u00e9rence de Clay Shirky au campus #Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:56:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3122, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31984097412784128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984097412784128\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 321000,
+ "tags": [
+ {
+ "id-ref": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2deb537a-0ce0-4dad-b178-aa944d1f5f0e-31984097412784128"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 325000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [5, 13], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Avec @cshirky, r\\u00e9flexions sur le temps de cerveau disponible, la cr\\u00e9ativit\\u00e9 et les nouvelles connexions. #RSLN\", \"created_at\": \"Mon Jan 31 07:56:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 220, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31984113330163712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984113330163712\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 325000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "74b3f478-5b5a-4ccc-91b0-f3c31a6dc790-31984113330163712"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
+ "color": "16763904",
+ "polemics": ["Q", "REF", "OK", "KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 333000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 84], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Il faut noter nos tweets \\\"++, ==, --, ??\\\".... \\u00c7a va ressembler \\u00e0 des gros mots #RSLN\", \"created_at\": \"Mon Jan 31 07:56:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984147253698560, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984147253698560\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 333000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "99f7a154-cd01-4acb-811c-de6d31e842fc-31984147253698560"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "MiKarmousMi3neb: RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 339000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"listed_count\": 758, \"utc_offset\": 3600, \"statuses_count\": 2372, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"location\": \"Paris\", \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 8266352, \"screen_name\": \"alicanth\", \"name\": \"Alice Antheaume\", \"id_str\": \"8266352\"}], \"hashtags\": [{\"indices\": [85, 90], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [57, 84], \"expanded_url\": null}]}, \"text\": \"RT @alicanth: \\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:56:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 110795718, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 110, \"protected\": false, \"id_str\": \"110795718\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 3, \"utc_offset\": -21600, \"statuses_count\": 1435, \"description\": \"J'aime les raisins mais je pr\\u00e9f\\u00e8re les figues.\", \"friends_count\": 150, \"location\": \"\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/947738452/3515e59d-838c-4639-940e-1715fd93806c_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/85303105/DSC01229.JPG\", \"name\": \"MiKarmousMi3neb\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"MiKarmousMi3neb\", \"url\": null, \"created_at\": \"Tue Feb 02 20:17:03 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31984171630989312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984171630989312\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 339000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "675567c6-556d-4324-b110-ac70cde5b203-31984171630989312"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Elisabeth Garrett: @ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 433000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 69], \"text\": \"communities\"}, {\"indices\": [121, 127], \"text\": \"Egypt\"}, {\"indices\": [128, 133], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 07:58:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Mobile Web \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 152375270, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 49, \"protected\": false, \"id_str\": \"152375270\", \"profile_background_color\": \"352726\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 269, \"description\": \"MBA @HECParis. Stagiaire @Soci\\u00e9t\\u00e9G\\u00e9n\\u00e9rale. social marketer. photographer. petite gourmande. wine-cinema-NYC-travel-karaoke-f\\u00fatbol enthusiast. amazed by grace.\", \"friends_count\": 45, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/962811111/23230_106524_7896_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"Elisabeth Garrett\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"EliGarrett\", \"url\": \"http://eligarrett.wordpress.com\", \"created_at\": \"Sat Jun 05 19:51:45 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 0}, \"id\": 31984564570169344, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984564570169344\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 433000,
+ "tags": [
+ {
+ "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "f3d4a265-fbaa-4e8b-8ed4-0b19a7df34b5-31984564570169344"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Trois barres de wifi -- -- --- #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Trois barres de wifi -- -- --- #RSLN",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 438000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [31, 36], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Trois barres de wifi -- -- --- #RSLN\", \"created_at\": \"Mon Jan 31 07:58:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984585231310849, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984585231310849\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 438000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "89887a2e-b0db-461c-aef1-b9435f6bda53-31984585231310849"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 493000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 959, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 493000,
+ "tags": [
+ {
+ "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "814a2ed8-2756-4b21-bf7f-43033845c97d-31984816979189760"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 495000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [59, 64], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 07:59:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1917, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31984825082576896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984825082576896\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 495000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ab5e1489-1d78-40de-bd9f-041e93a177cd-31984825082576896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay Shirky in conference at Microsoft's campus",
+ "img": {
+ "src": ""
+ },
+ "title": "Dany Vilela: #rsln Clay Shirky in conference at Microsoft's campus",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 513000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky in conference at Microsoft's campus\", \"created_at\": \"Mon Jan 31 07:59:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 21152901, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1493, \"protected\": false, \"id_str\": \"21152901\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 140, \"utc_offset\": 3600, \"statuses_count\": 7618, \"description\": \"Dyvantity, home of creativity by Dany Vilela (@Dy_Vilela)\", \"friends_count\": 1198, \"location\": \"Grenoble\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/960161513/dy_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/108589554/TwitterTemplate_copie.jpg\", \"name\": \"Dany Vilela\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dyvantity\", \"url\": \"http://dyvantity.com\", \"created_at\": \"Wed Feb 18 00:48:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984902601707520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984902601707520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 513000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "1fa8cece-d261-4290-931d-7ccc775858e0-31984902601707520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 528000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [80, 88], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky\", \"created_at\": \"Mon Jan 31 07:59:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31984965352685568, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984965352685568\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 528000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "1cf29524-3087-4f6a-a52a-6fbcbd35dbc6-31984965352685568"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 560000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky \\\"optimistic about what new tools bring for citizens\\\" ++\", \"created_at\": \"Mon Jan 31 08:00:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 28, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31985100929372160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985100929372160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 560000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "cf12841e-e3e6-484f-9e71-1c7a3eade1fd-31985100929372160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Gustavo González: !!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 636000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [7, 18], \"id\": 152375270, \"screen_name\": \"EliGarrett\", \"name\": \"Elisabeth Garrett\", \"id_str\": \"152375270\"}], \"hashtags\": [{\"indices\": [62, 74], \"text\": \"communities\"}, {\"indices\": [126, 132], \"text\": \"Egypt\"}, {\"indices\": [133, 138], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 08:01:32 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"\\u00dcberTwitter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 43939616, \"verified\": false, \"profile_sidebar_fill_color\": \"EADEAA\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 308, \"protected\": false, \"id_str\": \"43939616\", \"profile_background_color\": \"8B542B\", \"location\": \"\\u00dcT: 48.819156,2.291199\", \"utc_offset\": -16200, \"statuses_count\": 5670, \"description\": \"Sibarita caraque\\u00f1o living in Paris. MBA participant at HEC-Paris. Movies&Wine&Food lover qui s'amuse \\u00e0 en parler et partager avec les amis...\", \"friends_count\": 356, \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/819879158/untitled_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/195050882/Word_Cloud.JPG\", \"name\": \"Gustavo Gonz\\u00e1lez\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 12, \"screen_name\": \"gustavogb83\", \"url\": null, \"created_at\": \"Mon Jun 01 18:31:30 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"profile_sidebar_border_color\": \"D9B17E\", \"following\": null, \"listed_count\": 13}, \"id\": 31985419721637890, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985419721637890\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 636000,
+ "tags": [
+ {
+ "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2dc5e9ff-e370-4c06-9ac5-33cc636b14e7-31985419721637890"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Anthony: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 655000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 17759, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null, \"listed_count\": 133}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 655000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e4b2ba41-d151-44ec-8269-eee99a951019-31985498780078080"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Graham Hay: RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 666000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [88, 93], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:49:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31982379551686656, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982379551686656\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 08:02:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 83917557, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 29, \"protected\": false, \"id_str\": \"83917557\", \"profile_background_color\": \"C0DEED\", \"location\": \"Auckland, New Zealand\", \"utc_offset\": 43200, \"statuses_count\": 44, \"description\": \"\", \"friends_count\": 101, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1100908900/graham_hay_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Graham Hay\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"graham_hay\", \"url\": null, \"created_at\": \"Tue Oct 20 20:19:49 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Wellington\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 2}, \"id\": 31985545622069248, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985545622069248\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 666000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "92d56631-8ec7-43bd-9038-ff95a5629d3d-31985545622069248"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Melissa Bounoua: La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 672000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [11, 19], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"La conf de @cshirky commence sur le m\\u00eame ex que sa conf ted de juin dernier \\u00e0 Cannes: la plateforme ushahidi #rsln\", \"created_at\": \"Mon Jan 31 08:02:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50152, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6681, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31985570716581888, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985570716581888\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 672000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "37ade492-143b-46dc-a2e9-4e566a4f85e4-31985570716581888"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 719000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi\", \"created_at\": \"Mon Jan 31 08:02:55 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 693, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31985765323898880, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985765323898880\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 719000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "25d80b84-cb4e-48de-8a0f-018bb5996ea5-31985765323898880"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 754000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [89, 107], \"text\": \"citizenjournalism\"}, {\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://j.mp/3y0kHS\", \"indices\": [116, 134], \"expanded_url\": null}]}, \"text\": \"@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS\", \"created_at\": \"Mon Jan 31 08:03:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31985910551678976, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985910551678976\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 754000,
+ "tags": [
+ {
+ "id-ref": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2fdf7de8-4126-417d-ae90-bfd4b2882e4b-31985910551678976"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln hushaidi ++ desaster as a social object",
+ "img": {
+ "src": ""
+ },
+ "title": "Lionel Natarianni: #rsln hushaidi ++ desaster as a social object",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 760000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln hushaidi ++ desaster as a social object\", \"created_at\": \"Mon Jan 31 08:03:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 1599, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31985939437850624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985939437850624\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 760000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b992e2a8-9d93-4921-bb1a-af45dd015b56-31985939437850624"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 765000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay aborde le probl\\u00e8me de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas\", \"created_at\": \"Mon Jan 31 08:03:41 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 866, \"description\": \"\", \"friends_count\": 107, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 13}, \"id\": 31985960119959552, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985960119959552\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 765000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "30263902-1a82-4620-9d2a-19f8961ecbb2-31985960119959552"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 767000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [84, 89], \"text\": \"RSLN\"}, {\"indices\": [90, 99], \"text\": \"Ushahidi\"}], \"urls\": [{\"url\": \"http://yfrog.com/gz5mvxjj\", \"indices\": [100, 125], \"expanded_url\": null}]}, \"text\": \"Clay Shirky raconte comment les blogueurs se sont mobilis\\u00e9s au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj\", \"created_at\": \"Mon Jan 31 08:03:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 221, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31985966457552896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985966457552896\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 767000,
+ "tags": [
+ {
+ "id-ref": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a3c773f6-fc2c-4bc2-aa4c-e695f8b5670d-31985966457552896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 768000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln la cartographie de la violence en temps r\\u00e9el, utile en situation de guerre mais anxiog\\u00e8ne partout ailleurs --\", \"created_at\": \"Mon Jan 31 08:03:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 81, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31985972707074049, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985972707074049\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 768000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "84adc135-86e1-4f1f-bb6b-3ed7f407caba-31985972707074049"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky on stage #RSLN http://plixi.com/p/73750856",
+ "img": {
+ "src": ""
+ },
+ "title": "Alice Antheaume: Clay shirky on stage #RSLN http://plixi.com/p/73750856",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 791000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73750856\", \"indices\": [28, 55], \"expanded_url\": null}]}, \"text\": \"Clay shirky on stage #RSLN http://plixi.com/p/73750856\", \"created_at\": \"Mon Jan 31 08:04:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31986069742292992, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986069742292992\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 791000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9d440698-8e91-4542-b978-8cb22b811d56-31986069742292992"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 818000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [62, 67], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"En bon americain, Clay Shirky commence par une belle histoire #rsln ++\", \"created_at\": \"Mon Jan 31 08:04:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1919, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31986179578527744, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986179578527744\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 818000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7abf0e3b-afe9-424c-a49e-22dbae9de393-31986179578527744"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "img": {
+ "src": ""
+ },
+ "title": "Christophe Prieuur: RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 833000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 18], \"id\": 28351245, \"screen_name\": \"GarrettGoodman\", \"name\": \"Garrett Goodman\", \"id_str\": \"28351245\"}, {\"indices\": [20, 28], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [116, 121], \"text\": \"RSLN\"}, {\"indices\": [122, 127], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"RT @GarrettGoodman: @cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 08:04:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 6, \"utc_offset\": 3600, \"statuses_count\": 244, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31986242954461184, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986242954461184\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 833000,
+ "tags": [
+ {
+ "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "dfa4ebef-b70e-4ded-b410-91cf632b8f11-31986242954461184"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 842000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 842000,
+ "tags": [
+ {
+ "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "148e5b7b-1f5a-4221-a9d9-f3ad4bd6670b-31986280501874688"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Richard Ying: Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 846000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"location\": \"Paris\", \"profile_background_color\": \"352726\", \"id_str\": \"104293463\", \"utc_offset\": 3600, \"statuses_count\": 1432, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"notifications\": null, \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 29}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [92, 97], \"text\": \"rsln\"}], \"urls\": []}, \"contributors\": null, \"truncated\": false, \"text\": \"Ushahidi \\\"technologie apparue \\u00e0 Nairobi, Kenya, et qui s'est r\\u00e9pandue dans le monde entier\\\" #rsln ++\", \"created_at\": \"Mon Jan 31 08:05:02 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31986297836933121, \"source\": \"TweetDeck \", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31986297836933121\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 846000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c4a6d9f0-29af-49f3-a6ae-e926f1084a36-31986297836933121"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les sms pour amener le web dans la brousse !",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #rsln les sms pour amener le web dans la brousse !",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 848000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les sms pour amener le web dans la brousse !\", \"created_at\": \"Mon Jan 31 08:05:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 867, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986306355564545, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986306355564545\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 848000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b7ec955a-9669-492b-8917-ec144e514191-31986306355564545"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "guigui bat: RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 871000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"listed_count\": 133, \"utc_offset\": 3600, \"statuses_count\": 17761, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"location\": \"Paris, France\", \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 9132482, \"screen_name\": \"kanthos\", \"name\": \"Anthony\", \"id_str\": \"9132482\"}, {\"indices\": [16, 25], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [86, 91], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:05:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 33849214, \"verified\": false, \"profile_sidebar_fill_color\": \"F7DA93\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 288, \"protected\": false, \"id_str\": \"33849214\", \"profile_background_color\": \"000000\", \"listed_count\": 8, \"utc_offset\": -10800, \"statuses_count\": 1024, \"description\": \"Pigiste (radio latina, voltage...) - Journaliste (ex-G\\u00e9n\\u00e9rations 88.2 fm)\", \"friends_count\": 962, \"location\": \"Paris (France)\", \"profile_link_color\": \"CC3300\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1172856658/GUIGUI_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/173146979/Eastbound_and_Down_Season_2_Debuted_in_HBO.jpg\", \"name\": \"guigui bat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 5, \"screen_name\": \"guillaumebat\", \"url\": null, \"created_at\": \"Tue Apr 21 08:15:17 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"FFFFFF\", \"following\": null}, \"id\": 31986404686827520, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986404686827520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 871000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b089c539-c908-4399-87f6-27fd12fb11f5-31986404686827520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Christian Porri: http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 887000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [83, 88], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3v3p6o\", \"indices\": [0, 25], \"expanded_url\": null}]}, \"text\": \"http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN\", \"created_at\": \"Mon Jan 31 08:05:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Windows Phone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36630982, \"verified\": false, \"profile_sidebar_fill_color\": \"dedede\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 456, \"protected\": false, \"id_str\": \"36630982\", \"profile_background_color\": \"dedede\", \"listed_count\": 11, \"utc_offset\": 3600, \"statuses_count\": 1476, \"description\": \"= French graphic and interactive designer * (GUI + UX + Video games gameplay (\\u2665PC gaming) + Science-fiction + Type + Computing culture + ...)\", \"friends_count\": 614, \"location\": \"On the taskbar\", \"profile_link_color\": \"0a3aff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/239549703/logoTF_twitter_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/15559291/fond-twitter.jpg\", \"name\": \"Christian Porri\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"Tamantafamiglia\", \"url\": \"http://www.christianporri.com\", \"created_at\": \"Thu Apr 30 09:53:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"f8f7f7\", \"following\": null}, \"id\": 31986470629675008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986470629675008\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 887000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a3a42252-81f3-4555-abff-e1273080d7ef-31986470629675008"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "img": {
+ "src": ""
+ },
+ "title": "SandraValerii: RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 897000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 10], \"id\": 6284172, \"screen_name\": \"versac\", \"name\": \"NicolasVanbremeersch\", \"id_str\": \"6284172\"}], \"hashtags\": [{\"indices\": [99, 111], \"text\": \"blendedtech\"}, {\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [74, 98], \"expanded_url\": null}]}, \"text\": \"RT @versac: Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:05:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 51, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31986513839394816, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986513839394816\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 897000,
+ "tags": [
+ {
+ "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "99afc6f7-1840-49a7-80aa-2522e7cf6296-31986513839394816"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 905000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [120, 125], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [43, 63], \"expanded_url\": null}]}, \"text\": \"Ushahidi, une plateforme invent\\u00e9e au Kenya http://bit.ly/dCSATj L'\\u00e9quivalent nu\\u00e9mrique du d\\u00e9veloppement du micro-cr\\u00e9dit #RSLN\", \"created_at\": \"Mon Jan 31 08:06:01 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5189, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986544894025728, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986544894025728\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 905000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "93ac26d2-8571-4ea7-8af8-823f2b53949c-31986544894025728"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 929000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 929000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d665d937-20e1-4281-aa3f-d311478ad9fe-31986647222452224"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "peopleare: #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 947000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln\", \"created_at\": \"Mon Jan 31 08:06:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14177974, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 10, \"protected\": false, \"id_str\": \"14177974\", \"profile_background_color\": \"1A1B1F\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 1, \"description\": \"\", \"friends_count\": 17, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/128858275/Av_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme9/bg.gif\", \"name\": \"peopleare\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"peopleare\", \"url\": null, \"created_at\": \"Wed Mar 19 16:54:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 0}, \"id\": 31986723009339392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986723009339392\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 947000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "523773b2-940d-49b4-b927-e9c5754a42fa-31986723009339392"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: \"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 976000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [102, 110], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [111, 116], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"La technologie doit donner envie de participer, m\\u00eame aux n\\u00e9ophytes, et de faire des choses utiles\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:07:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 222, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31986844849672192, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986844849672192\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 976000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "4f660231-ecec-486d-b834-0d49dcb77126-31986844849672192"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Christophe Prieuur: Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 979000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [68, 73], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Nicolas Hulot a invit\\u00e9 Clay Shirky \\u00e0 pr\\u00e9senter sa nouvelle \\u00e9mission #rsln\", \"created_at\": \"Mon Jan 31 08:07:15 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 245, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 6}, \"id\": 31986856920883200, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986856920883200\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 979000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "0f2f20ef-f0ea-44ca-af4d-ca04de0c0887-31986856920883200"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 986000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...\", \"created_at\": \"Mon Jan 31 08:07:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 29, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31986884519403520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986884519403520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 986000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "580cca57-71b6-4ac3-9466-5b4eaf1c1a5c-31986884519403520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "chaffiotte: Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 994000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Ushahidi ... Invent\\u00e9 \\u00e0 Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\\n#RSLN\", \"created_at\": \"Mon Jan 31 08:07:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 26260924, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 326, \"protected\": false, \"id_str\": \"26260924\", \"profile_background_color\": \"131516\", \"listed_count\": 16, \"utc_offset\": -10800, \"statuses_count\": 666, \"description\": \"ceo of JWT Paris/ I love the social media revolution and I want to be part of it : vive la revolution !!!/master class in hyper island /runner & biker\", \"friends_count\": 708, \"location\": \"paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1219068025/IMG_0928_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/171909728/twilk_background_4ce11ca768fe7.jpg\", \"name\": \"chaffiotte\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 191, \"screen_name\": \"clachaf\", \"url\": \"http://chaff.unblog.fr\", \"created_at\": \"Tue Mar 24 15:49:07 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"ededed\", \"following\": null}, \"id\": 31986919567003648, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986919567003648\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 994000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ad674d93-be78-46d1-ade9-1b88352156f7-31986919567003648"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Richard Ying: Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 997000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay Shirky sur Ushahidi \\\"pas besoin de venir de Mountain View, Californie, pour se d\\u00e9velopper dans le monde\\\" #rsln\", \"created_at\": \"Mon Jan 31 08:07:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"id_str\": \"104293463\", \"profile_background_color\": \"352726\", \"listed_count\": 29, \"utc_offset\": 3600, \"statuses_count\": 1433, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31986931373965312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986931373965312\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 997000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7b8cdc48-a872-484c-a556-9866ffbc42d9-31986931373965312"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 998000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [119, 124], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [47, 67], \"expanded_url\": null}]}, \"text\": \"Enti\\u00e8rement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le t\\u00e9l\\u00e9phone de base #RSLN\", \"created_at\": \"Mon Jan 31 08:07:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5190, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986936306475008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986936306475008\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 998000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ee47d8e1-2312-48ee-887f-68d06ba3c24b-31986936306475008"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: @CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1004000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [53, 58], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(\", \"created_at\": \"Mon Jan 31 08:07:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31983580863270912\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36027828\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": 31983580863270912, \"in_reply_to_screen_name\": \"CyrilleF\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6852, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986959354171392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986959354171392\", \"in_reply_to_user_id\": 36027828}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1004000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2bcbfb84-ad91-4309-875f-1ff4a158323c-31986959354171392"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1016000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [132, 140], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky\", \"created_at\": \"Mon Jan 31 08:07:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4632, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31987011116077056, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987011116077056\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1016000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e0de5ce3-a9fe-4b1d-8828-63b8c1100327-31987011116077056"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1028000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay ouvre sa conf\\u00e9rence avec les m\\u00eames exemples qu'\\u00e0 TED : Ushahidi et les autres exemples de crowdsourcing citoyen.\", \"created_at\": \"Mon Jan 31 08:08:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 176, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"location\": \"Paris - Ze capitale of ze love\", \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null}, \"id\": 31987061594529792, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987061594529792\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1028000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "5d6624a4-ab46-4f25-9212-15ea5e3c648b-31987061594529792"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1032000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1032000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a0eaec31-b3f3-473d-9d49-5db9c8108531-31987077629353984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1044000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [131, 136], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN\", \"created_at\": \"Mon Jan 31 08:08:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 961, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987129944899584, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987129944899584\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1044000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "56765e7a-5e78-4c90-99f0-9754a9ba5c3f-31987129944899584"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Guillaume Decugis: Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1047000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 19], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://ushahidi.com/\", \"indices\": [20, 40], \"expanded_url\": null}]}, \"text\": \"Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++\", \"created_at\": \"Mon Jan 31 08:08:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1705, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31987139579219970, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987139579219970\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1047000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fd898cbc-613c-483b-8cf2-ec51e04c3fdf-31987139579219970"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN cognitive surplus = Agregation of free time ++",
+ "img": {
+ "src": ""
+ },
+ "title": "steamwolf: #RSLN cognitive surplus = Agregation of free time ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1055000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN cognitive surplus = Agregation of free time ++\", \"created_at\": \"Mon Jan 31 08:08:31 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1037, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987173393694720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987173393694720\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1055000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fa78ba38-eccd-4aea-82f6-fafdeb768d79-31987173393694720"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1058000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [93, 98], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Des individus contribuent avec leurs moyens num\\u00e9riques et les contenus sont agr\\u00e9g\\u00e9s Ushahidi #RSLN\", \"created_at\": \"Mon Jan 31 08:08:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5191, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987185867558912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987185867558912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1058000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "4f56d1d0-71f6-4e08-9ca3-1a563c38e650-31987185867558912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1064000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 19], \"id\": 14430897, \"screen_name\": \"dominiquepiotet\", \"name\": \"dominiquepiotet\", \"id_str\": \"14430897\"}], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5192, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987211511537664, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987211511537664\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1064000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "97ef046f-8920-4440-8bf5-3e2feab0f554-31987211511537664"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Sane Lebrun: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1076000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [48, 53], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:08:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36333549, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 686, \"protected\": false, \"id_str\": \"36333549\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3487, \"description\": \"Product Manager (global) for a videogame publisher (iPhone, iPad, etc). Graduated from ESCP Europe (Master in Management). Electro music addict.\", \"friends_count\": 1204, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/190531233/n576390766_6339_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296072137/images/themes/theme1/bg.png\", \"name\": \"Sane Lebrun\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"SaneFive\", \"url\": \"http://www.playfive.fr\", \"created_at\": \"Wed Apr 29 11:06:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 25}, \"id\": 31987261545390080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987261545390080\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1076000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7ccde140-d71b-4941-8fbe-d089051caf8d-31987261545390080"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1082000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:08:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 906, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31987290372833280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987290372833280\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1082000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2cb968cf-9e18-450d-8970-06bc3cbef44d-31987290372833280"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1109000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [43, 52], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [102, 107], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Et le jean et la d\\u00e9gaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:09:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5193, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987400594948096, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987400594948096\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1109000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "54299691-eed0-495f-bf34-8041f905b6ff-31987400594948096"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1110000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [115, 120], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Utiliser \\u00e0 bon escient le temps libre pour faire des r\\u00e9alisations participatives, civiques, gr\\u00e2ce \\u00e0 l'information. #RSLN @cshirky\", \"created_at\": \"Mon Jan 31 08:09:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 223, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31987405376462848, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987405376462848\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1110000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "555aed43-371a-435a-a8f9-34d4f0943ce6-31987405376462848"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln clay speak about cognitive surplus @microsoft ==",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln clay speak about cognitive surplus @microsoft ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1142000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [41, 51], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln clay speak about cognitive surplus @microsoft ==\", \"created_at\": \"Mon Jan 31 08:09:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1664, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987540001034240, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987540001034240\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1142000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "0ba6928c-36ac-4bb9-8cf4-ac85ec2c5e53-31987540001034240"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN Cognitive Surplus utilisation : a form of civic action ++",
+ "img": {
+ "src": ""
+ },
+ "title": "steamwolf: #RSLN Cognitive Surplus utilisation : a form of civic action ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1153000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN Cognitive Surplus utilisation : a form of civic action ++\", \"created_at\": \"Mon Jan 31 08:10:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1038, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987584431300609, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987584431300609\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1153000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2ca29e25-fd73-4740-a738-692a59d685a8-31987584431300609"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1162000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln De l'information \\u00e0 l'action, le chemin n'est pas forc\\u00e9ment aussi direct --\", \"created_at\": \"Mon Jan 31 08:10:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 83, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987622867902464, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987622867902464\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1162000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "672067e8-d8ff-4f3c-8138-71ac8ee66af4-31987622867902464"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln == http://t.co/DWhd8FM",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln == http://t.co/DWhd8FM",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1193000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://t.co/DWhd8FM\", \"indices\": [9, 28], \"expanded_url\": \"http://twitpic.com/3v3qdr\", \"display_url\": \"twitpic.com/3v3qdr\"}]}, \"text\": \"#rsln == http://t.co/DWhd8FM\", \"created_at\": \"Mon Jan 31 08:10:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1665, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987754690678784, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987754690678784\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1193000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d6136d85-502d-4dbd-92c7-205a3fd488e6-31987754690678784"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1257000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1257000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "f1ec6223-723e-43ff-8271-261b3c92e031-31988022811561984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1285000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.\", \"created_at\": \"Mon Jan 31 08:12:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4633, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988138171703296, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988138171703296\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1285000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "065e2a82-df5a-48f8-b930-64f576918362-31988138171703296"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1288000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanit\\u00e9--\", \"created_at\": \"Mon Jan 31 08:12:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 84, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31988154219102208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988154219102208\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1288000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ebddeaf0-eee1-4802-b938-5302a2cd1f8f-31988154219102208"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"smart consumer\"... Ça doit être moi, ça... #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: \"smart consumer\"... Ça doit être moi, ça... #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1309000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"smart consumer\\\"... \\u00c7a doit \\u00eatre moi, \\u00e7a... #RSLN\", \"created_at\": \"Mon Jan 31 08:12:45 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5194, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31988242005884928, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988242005884928\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1309000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "63252f66-2e00-4308-b0e4-a35101384770-31988242005884928"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1327000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN\", \"created_at\": \"Mon Jan 31 08:13:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 907, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31988317780189185, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988317780189185\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1327000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7adfa340-c194-4df5-b785-a1b475ea7a30-31988317780189185"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1338000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [90, 95], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN\", \"created_at\": \"Mon Jan 31 08:13:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6853, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31988363938496513, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988363938496513\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1338000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d158ccd2-47e2-4a03-b367-54435bbf0d65-31988363938496513"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
+ "img": {
+ "src": ""
+ },
+ "title": "marjoriepaillon: RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1355000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 14974710, \"screen_name\": \"eni_kao\", \"name\": \"[Enikao]\", \"id_str\": \"14974710\"}, {\"indices\": [132, 136], \"id\": 4687901, \"screen_name\": \"CSH\", \"name\": \"Charles Harvey\", \"id_str\": \"4687901\"}], \"hashtags\": [{\"indices\": [125, 130], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @eni_kao: [Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@csh ...\", \"created_at\": \"Mon Jan 31 08:13:31 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 16039806, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 3807, \"protected\": false, \"id_str\": \"16039806\", \"profile_background_color\": \"EBEBEB\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1935, \"description\": \"Journaliste News, Web & Mag \\r\\n// R\\u00e9f\\u00e9rences: @ilovepolitics,BFMTV,France 5 \", \"friends_count\": 622, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/401202539/Image_1_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"marjoriepaillon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"marjoriepaillon\", \"url\": \"http://www.ilovepolitics.info\", \"created_at\": \"Fri Aug 29 09:08:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 346}, \"id\": 31988432993525761, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988432993525761\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1355000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "71f695ce-68b1-481a-96c1-19452097f2ec-31988432993525761"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1366000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln == \\\"citizen as sensor\\\" / \\\"smart consumer\\\" / ...\", \"created_at\": \"Mon Jan 31 08:13:42 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1666, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988479382519808, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988479382519808\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1366000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "224867c5-0c16-41be-9008-376786d28172-31988479382519808"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1422000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.\", \"created_at\": \"Mon Jan 31 08:14:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4634, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31988714007699456, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988714007699456\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1422000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a1bc35a2-85e6-4b33-b6fa-258d59f19979-31988714007699456"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "code for america : le réseau social collaboratif des villes US #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "la pinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1446000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1446000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c798f63b-b5f0-420c-8679-bce3e5e871b2-31988814801010688"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: \"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1452000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"Rendre la donn\\u00e9e publique pour que les citoyens \\u00e9clairent les d\\u00e9cisions politiques et prennent des d\\u00e9cisions \\u00e9clair\\u00e9es\\\" @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:15:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 224, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31988838863732736, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988838863732736\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1452000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6145c2ec-41f7-4bba-b617-494348d471d2-31988838863732736"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
+ "color": "16763904",
+ "polemics": ["Q", "KO", "OK", "REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1458000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question\", \"created_at\": \"Mon Jan 31 08:15:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1667, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988863538831361, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988863538831361\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1458000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c68cb5fb-f2e1-49a6-8adb-f18b81ca1f35-31988863538831361"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1465000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org-to-Org, Partnership, eg Code for America.\", \"created_at\": \"Mon Jan 31 08:15:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4635, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988892798291968, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988892798291968\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1465000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ff4cc5ef-239b-4b6f-9a5a-43980f1f74b6-31988892798291968"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1490000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"listed_count\": 159, \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"location\": \"Paris\", \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 17152456, \"screen_name\": \"flapinta\", \"name\": \"la pinta\", \"id_str\": \"17152456\"}], \"hashtags\": [{\"indices\": [77, 82], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @flapinta: code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 908, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31988999027429376, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988999027429376\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1490000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "104f925e-221c-4e97-a076-2405e5e14987-31988999027429376"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1544000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)\", \"created_at\": \"Mon Jan 31 08:16:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4636, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989228145479680, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989228145479680\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1544000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b55fb9b7-b082-4db6-a899-b2088f85c882-31989228145479680"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1554000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [81, 86], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"@cshirky : Govs are afraid of synchronized groups. That\\u2019s what changes politics. #rsln\", \"created_at\": \"Mon Jan 31 08:16:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 348, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 962, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31989270000439297, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989270000439297\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1554000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "676ae1cb-377f-441e-82d3-3e1069620518-31989270000439297"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1560000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --\", \"created_at\": \"Mon Jan 31 08:16:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 30, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989295094960128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989295094960128\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1560000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a688883e-99e5-4b56-b247-262cb9c188b3-31989295094960128"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1570000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln l'image culturelle produite par la foule est elle conforme \\u00e0 l'image culturelle que nous imaginons pour nos groupes sociaux ??\", \"created_at\": \"Mon Jan 31 08:17:06 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31989337163825152, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989337163825152\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1570000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "359e7c36-ad95-4001-aa56-b457c6559df3-31989337163825152"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: 'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1584000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [82, 87], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN\", \"created_at\": \"Mon Jan 31 08:17:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 909, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31989392583168000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989392583168000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1584000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d144b130-a959-4602-a2c5-2c2ccb8a5ef0-31989392583168000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1599000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1599000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b8cb2f37-0cb6-45c6-8e37-79da8f7d53b1-31989455556444160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1610000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"Les gouvernements n'ont pas peur des gens individuellement inform\\u00e9s, ils ont peur des groupes synchronis\\u00e9s\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:17:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9112, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31989502138388480, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989502138388480\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1610000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "23cd3ce7-35bc-4d8b-9909-d14a9ade0dba-31989502138388480"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Guillaume Decugis: \"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1637000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [101, 109], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\\\" @cshirky #rsln\", \"created_at\": \"Mon Jan 31 08:18:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1706, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31989616357679105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989616357679105\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1637000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "22741a60-5f15-4c3f-8439-5c6aea35fac5-31989616357679105"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1642000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Quelle est la n\\u00e9cessit\\u00e9 d'une structure organisationnelle pour traiter l'information \\u00e0 l'heure ou chaque citoyen est un informateur?\", \"created_at\": \"Mon Jan 31 08:18:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 177, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31989637765406720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989637765406720\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1642000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "65975110-6493-43b3-afe8-7002d8a5efd8-31989637765406720"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1652000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [123, 128], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"L'Internet, c'est un peu comme le foot : \\u00e7a aide \\u00e0 coordonner les sentiments. Tr\\u00e8s vrai pour les rues arabes actuellement. #RSLN\", \"created_at\": \"Mon Jan 31 08:18:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6854, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31989680345976832, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989680345976832\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1652000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "296f36b9-4c1c-4d2c-9686-64e40002fda7-31989680345976832"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"people talk abiut what they care about\" ++ #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "SandraValerii: \"people talk abiut what they care about\" ++ #rsln",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1684000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"people talk abiut what they care about\\\" ++ #rsln\", \"created_at\": \"Mon Jan 31 08:19:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 52, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31989814358179840, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989814358179840\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1684000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "700fc385-f74b-4990-9995-c449920ca767-31989814358179840"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
+ "img": {
+ "src": ""
+ },
+ "title": "Alexandre Monnin: #rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1696000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [44, 86], \"expanded_url\": null}]}, \"text\": \"#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==\", \"created_at\": \"Mon Jan 31 08:19:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"is_translator\": false, \"profile_text_color\": \"634047\", \"followers_count\": 317, \"protected\": false, \"id_str\": \"7409472\", \"profile_background_color\": \"EDECE9\", \"location\": \"Paris\", \"utc_offset\": -10800, \"statuses_count\": 2456, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 441, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296173346/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"following\": null, \"listed_count\": 59}, \"id\": 31989862680764417, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989862680764417\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1696000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e0b04beb-d86d-4767-9bce-7b20292652cf-31989862680764417"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1719000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les forums du moyen orient destin\\u00e9s \\u00e0 la base au football sont devenus des forums d'organisation anti gouvernement ! ++\", \"created_at\": \"Mon Jan 31 08:19:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 31, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989961112686592, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989961112686592\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1719000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "28ad17ee-7a32-453a-aeb3-69263c8ad9e2-31989961112686592"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
+ "img": {
+ "src": ""
+ },
+ "title": "Pierre Mounier: Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1720000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [46, 56], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Je suis aux rencontres #RSLN avec Clay Shirky @microsoft\", \"created_at\": \"Mon Jan 31 08:19:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14233770, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 629, \"protected\": false, \"id_str\": \"14233770\", \"profile_background_color\": \"352726\", \"listed_count\": 102, \"utc_offset\": 3600, \"statuses_count\": 2468, \"description\": \"Directeur adjoint du Cl\\u00e9o. Fondateur et principal auteur d'Homo Numericus.\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/52135065/pmounier_bd_moyen_normal.gif\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/190199985/twilk_background_4d287d7ccb851.jpg\", \"name\": \"Pierre Mounier\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 10, \"screen_name\": \"piotrr70\", \"url\": \"http://pierremounier.net\", \"created_at\": \"Thu Mar 27 08:45:11 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31989963117568000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989963117568000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1720000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ab421284-1030-445c-9513-0dd3ca060bcc-31989963117568000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1723000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [126, 134], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [135, 140], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont all\\u00e9s y parler des le\\u00e7ons de Sidibouzid\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:19:39 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3031, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9113, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31989978137370624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989978137370624\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1723000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2fbb7622-d712-42be-9c54-45d3c0c7fcf8-31989978137370624"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln ?? Technology = Politique ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln ?? Technology = Politique ?",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1747000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln ?? Technology = Politique ?\", \"created_at\": \"Mon Jan 31 08:20:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1668, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31990076544131074, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990076544131074\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1747000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "65db3699-f88b-49af-8a2f-94ae92352adf-31990076544131074"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Lionel Natarianni: Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1753000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky\", \"created_at\": \"Mon Jan 31 08:20:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1600, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 13}, \"id\": 31990101542182912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990101542182912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1753000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "68aee21b-5de2-4201-b3fd-bc5c557eabfc-31990101542182912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1758000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:20:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 32, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31990124346613762, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31990124346613762\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1758000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "588e89ba-3873-41d9-bd0e-9717b3ae6dc9-31990124346613762"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyril Attias: @SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1766000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [107, 112], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN\", \"created_at\": \"Mon Jan 31 08:20:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31987261545390080\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36333549\", \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": 31987261545390080, \"in_reply_to_screen_name\": \"SaneFive\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1944301, \"verified\": false, \"profile_sidebar_fill_color\": \"d0d0d0\", \"is_translator\": false, \"profile_text_color\": \"2d2d2d\", \"followers_count\": 3141, \"protected\": false, \"id_str\": \"1944301\", \"profile_background_color\": \"ffffff\", \"location\": \"Paris - France\", \"utc_offset\": 3600, \"statuses_count\": 6560, \"description\": \"French blogger, digital expert \\r\\n10 years on digital agency - Ogilvy Paris, TBWA\\\\PARIS - CEO at influence digitale, l'agence des m\\u00e9dias sociaux @1fluencedigital\", \"friends_count\": 1768, \"profile_link_color\": \"28b4ec\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1175910852/cattias_gravatar_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/167329311/new_twitter_theme_def2.jpg\", \"name\": \"Cyril Attias\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 40, \"screen_name\": \"cyril\", \"url\": \"http://www.attias.net/blog\", \"created_at\": \"Thu Mar 22 22:10:39 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"28b4ec\", \"following\": null, \"listed_count\": 295}, \"id\": 31990155749363712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990155749363712\", \"in_reply_to_user_id\": 36333549}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1766000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ee49a97b-e106-4233-9e28-294798e90527-31990155749363712"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1767000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}, {\"indices\": [113, 121], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:20:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"listed_count\": 116, \"utc_offset\": 3600, \"statuses_count\": 1920, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"location\": \"iPhone: 48.845192,2.237256\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null}, \"id\": 31990160874799105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990160874799105\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1767000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c89eea8d-e31e-4783-89b9-a682750f3e58-31990160874799105"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
+ "img": {
+ "src": ""
+ },
+ "title": "Alexis MONS: Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1778000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1147131, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"profile_text_color\": \"333333\", \"followers_count\": 675, \"protected\": false, \"location\": \"Limoges, France\", \"profile_background_color\": \"022330\", \"id_str\": \"1147131\", \"utc_offset\": 3600, \"statuses_count\": 1524, \"description\": \"Cofounder and VP Strategy of groupeReflect\", \"friends_count\": 321, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/304999987/AM2009_normal.jpeg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296156503/images/themes/theme15/bg.png\", \"name\": \"Alexis MONS\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 11, \"screen_name\": \"AlecM\", \"notifications\": null, \"url\": \"http://about.me/alexismons\", \"created_at\": \"Wed Mar 14 09:44:56 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 50}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [9, 14], \"text\": \"RSLN\"}], \"urls\": [{\"indices\": [58, 76], \"url\": \"http://ht.ly/3N4Ma\", \"expanded_url\": null}]}, \"contributors\": null, \"truncated\": false, \"text\": \"Le d\\u00e9bat #RSLN - Le livre num\\u00e9rique, c\\u2019est pour bient\\u00f4t ? http://ht.ly/3N4Ma\", \"created_at\": \"Mon Jan 31 08:20:34 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31990208165576705, \"source\": \"HootSuite \", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31990208165576705\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1778000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a99b2916-cd16-4322-af47-e14a862e5241-31990208165576705"
+ }
+ ],
+ "annotation-types": [
+ {
+ "dc:contributor": "perso",
+ "dc:creator": "perso",
+ "dc:title": "chapitrage",
+ "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:description": "",
+ "dc:modified": "2012-05-07T10:11:06.721324"
+ }, {
+ "dc:contributor": "perso",
+ "dc:creator": "perso",
+ "dc:title": "Tweets",
+ "id": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:description": "Tweets",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ }
+ ]
+}
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/json/ldt-youtube.json
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/json/ldt-youtube.json Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,5292 @@
+{
+ "views": [
+ ],
+ "tags": [
+ {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "citizen sensor",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "organic failure",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8b75a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "money",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "small and good",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84752-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "civic action",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "social network",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9dc52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "radio",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8ec84-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "public informations",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "electoral fraud",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "coordination",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "information mass",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.769035",
+ "dc:title": "citizenjournalism",
+ "dc:modified": "2012-05-07T10:11:06.769035",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.830969",
+ "dc:title": "tweet",
+ "dc:modified": "2012-05-07T10:11:06.830969",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d6ebc2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "commercial space",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8707e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "platform",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "human resource",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "public space",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8851e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information amplifier",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9cffa-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "soccer",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "free time",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "traffic map",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "distributed information",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "government",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "individual power",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8790c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "aggregation",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "inorganic failure",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8ab52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.761421",
+ "dc:title": "communities",
+ "dc:modified": "2012-05-07T10:11:06.761421",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "market value",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9887e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "professional journalism",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93e0a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "success",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84b44-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "motivated actors",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8b354-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "journalism",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c95f48-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.771135",
+ "dc:title": "Ushahidi",
+ "dc:modified": "2012-05-07T10:11:06.771135",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "music industry",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9ab10-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "citizen action",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "revolution",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f08a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "people",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "Ushaidi",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "Internet",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e0a4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "Wikipedia",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c85332-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "fail",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "political life",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.821961",
+ "dc:title": "clayshirky",
+ "dc:modified": "2012-05-07T10:11:06.821961",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d58b7e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "consumers",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.881698",
+ "dc:title": "democratizes",
+ "dc:modified": "2012-05-07T10:11:06.881698",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dea448-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "digital sharecropping",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c98414-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.730624",
+ "dc:title": "information management",
+ "dc:modified": "2012-05-07T10:11:06.730624",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "hybridisation",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c95a34-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.730624",
+ "dc:title": "participation",
+ "dc:modified": "2012-05-07T10:11:06.730624",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.886191",
+ "dc:title": "Pepsico",
+ "dc:modified": "2012-05-07T10:11:06.886191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5df53f2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Libya",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "free speech",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c874f2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.728501",
+ "dc:title": "open communication",
+ "dc:modified": "2012-05-07T10:11:06.728501",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "Microsoft",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information filter",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9d45a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "citizen organizations",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "citizens",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "coordinate actions",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9f944-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "action",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "plausible promess",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84360-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "contribution",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93162-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "sharing objects",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9b326-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "protests",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "communication",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "community",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8a6ca-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.737579",
+ "dc:title": "tools",
+ "dc:modified": "2012-05-07T10:11:06.737579",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8bb56-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.742174",
+ "dc:title": "market",
+ "dc:modified": "2012-05-07T10:11:06.742174",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c96362-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "social life",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "large and mediocre",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c83f64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "web phone gap",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.936514",
+ "dc:title": "hadopi",
+ "dc:modified": "2012-05-07T10:11:06.936514",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e70214-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "crowdsourcing",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93608-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.754973",
+ "dc:title": "iphone",
+ "dc:modified": "2012-05-07T10:11:06.754973",
+ "dc:creator": "IRI"
+ },
+ "id": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.740402",
+ "dc:title": "pepsi refresh project",
+ "dc:modified": "2012-05-07T10:11:06.740402",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c914de-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.745182",
+ "dc:title": "information quality",
+ "dc:modified": "2012-05-07T10:11:06.745182",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9d86a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "smart consumer",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.733775",
+ "dc:title": "block party",
+ "dc:modified": "2012-05-07T10:11:06.733775",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.726164",
+ "dc:title": "talents",
+ "dc:modified": "2012-05-07T10:11:06.726164",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "catalyst",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c836fe-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "voluntary participation",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.723388",
+ "dc:title": "Nairobi",
+ "dc:modified": "2012-05-07T10:11:06.723388",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "organizations",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "television",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f8dc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "counter democracy",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9fda4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "opportunity design",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.746248",
+ "dc:title": "Egypt",
+ "dc:modified": "2012-05-07T10:11:06.746248",
+ "dc:creator": "IRI"
+ },
+ "id": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.922593",
+ "dc:title": "failcon",
+ "dc:modified": "2012-05-07T10:11:06.922593",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e4e646-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "printing democracy",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e892-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.945336",
+ "dc:title": "PUBLIC",
+ "dc:modified": "2012-05-07T10:11:06.945336",
+ "dc:creator": "IRI"
+ },
+ "id": "f5e85a74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "usability",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.878489",
+ "dc:title": "sidibouzid",
+ "dc:modified": "2012-05-07T10:11:06.878489",
+ "dc:creator": "IRI"
+ },
+ "id": "f5de273e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "sharing information",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9af34-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.741128",
+ "dc:title": "golden age for journalism but not for money",
+ "dc:modified": "2012-05-07T10:11:06.741128",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c93a18-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "share",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8f486-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "malls",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c88104-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.734721",
+ "dc:title": "synchronised crowded",
+ "dc:modified": "2012-05-07T10:11:06.734721",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c84f40-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.727228",
+ "dc:title": "information",
+ "dc:modified": "2012-05-07T10:11:06.727228",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Egypitia",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "media",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8e496-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "cognitive surplus",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "Wikileaks",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8891a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.743138",
+ "dc:title": "business model",
+ "dc:modified": "2012-05-07T10:11:06.743138",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c97fc8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.744116",
+ "dc:title": "gin crisis",
+ "dc:modified": "2012-05-07T10:11:06.744116",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c9a67e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "fascism",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8dc9e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.830969",
+ "dc:title": "addict",
+ "dc:modified": "2012-05-07T10:11:06.830969",
+ "dc:creator": "IRI"
+ },
+ "id": "f5d6e6fe-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.774383",
+ "dc:title": "blendedtech",
+ "dc:modified": "2012-05-07T10:11:06.774383",
+ "dc:creator": "IRI"
+ },
+ "id": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.729461",
+ "dc:title": "political informations",
+ "dc:modified": "2012-05-07T10:11:06.729461",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.736191",
+ "dc:title": "law",
+ "dc:modified": "2012-05-07T10:11:06.736191",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c87d08-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.724876",
+ "dc:title": "blend technology",
+ "dc:modified": "2012-05-07T10:11:06.724876",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.738847",
+ "dc:title": "democracy",
+ "dc:modified": "2012-05-07T10:11:06.738847",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c8d852-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.731470",
+ "dc:title": "Tunisia",
+ "dc:modified": "2012-05-07T10:11:06.731470",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.732824",
+ "dc:title": "political action",
+ "dc:modified": "2012-05-07T10:11:06.732824",
+ "dc:creator": "IRI"
+ },
+ "id": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.863215",
+ "dc:title": "nooffense",
+ "dc:modified": "2012-05-07T10:11:06.863215",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dbd6b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "meta": {
+ "dc:contributor": "IRI",
+ "dc:created": "2012-05-07T10:11:06.868458",
+ "dc:title": "microsoft",
+ "dc:modified": "2012-05-07T10:11:06.868458",
+ "dc:creator": "IRI"
+ },
+ "id": "f5dc9f68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "lists": [],
+ "medias": [
+ {
+ "origin": "0",
+ "url": "http://www.youtube.com/watch?v=zdOuFOTT3_I",
+ "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
+ "meta": {
+ "dc:contributor": "IRI",
+ "item": {
+ "name": "streamer",
+ "value": ""
+ },
+ "dc:created": "2011-02-14T15:06:34.829919",
+ "dc:duration": 1800000,
+ "dc:creator": "IRI",
+ "dc:created.contents": "2012-02-13",
+ "dc:title": "RSLN Clay Shirky",
+ "dc:creator.contents": "IRI",
+ "dc:modified": "2012-02-13T11:55:23.898905",
+ "dc:description": "RSLN Clay Shirky"
+ },
+ "id": "9a493932-3053-11e0-862b-00145ea49a02",
+ "unit": "ms"
+ }
+ ],
+ "meta": {
+ "dc:contributor": "admin",
+ "dc:created": "2011-02-14T15:15:52.602502",
+ "dc:creator": "admin",
+ "main_media": {
+ "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
+ },
+ "dc:description": "",
+ "dc:title": "RSLN Clay Shirky - Tweets",
+ "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
+ "dc:modified": "2012-04-29T15:41:55.858453"
+ },
+ "annotations": [
+ {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Introduction",
+ "color": "3355443",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 0,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 170000,
+ "tags": null,
+ "color": "3355443",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Introduction de Constance Parodi",
+ "color": "3355443",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 177457,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 410939,
+ "tags": null,
+ "color": "3355443",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_0C9E4E6B-043B-FCDE-D865-29ED81488D99"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "Clay Shirky : début de conférence",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 503000,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 783000,
+ "tags": [
+ {
+ "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_D8459097-1DE3-F28A-34CF-293F5C6B62E1"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "",
+ "img": {
+ "src": ""
+ },
+ "title": "3 features of Ushaidi",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 783462,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1000062,
+ "tags": [
+ {
+ "id-ref": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_B7F5CADC-465C-9E96-7279-29F8EAE07510"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "free time, talents, human resource, cognitive surplus, aggregation, communication",
+ "img": {
+ "src": ""
+ },
+ "title": "Coginitive surplus : free time",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1006108,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1078840,
+ "tags": [
+ {
+ "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_185D6DE8-980B-2ADB-0C3E-2A20D6E331EB"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "civic action, information, action, people, organizations, coordination, citizen sensor",
+ "img": {
+ "src": ""
+ },
+ "title": "Penser les actions civiques",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1078840,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1235162,
+ "tags": [
+ {
+ "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_2C466914-84E2-91AA-2BAC-2A2158B7892C"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "citizen sensor, government, traffic map, open communication",
+ "img": {
+ "src": ""
+ },
+ "title": "Les capteurs citoyens",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1235162,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1307028,
+ "tags": [
+ {
+ "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_BB6067B1-A4A7-6636-CE0E-2A216B94B896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "smart consumer, public informations, political informations, money, action, citizens",
+ "img": {
+ "src": ""
+ },
+ "title": "Consomateur inteligents",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1307028,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1407440,
+ "tags": [
+ {
+ "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_F54B6E7D-F262-6726-94CB-2A217EDE2052"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "government, information management, participation",
+ "img": {
+ "src": ""
+ },
+ "title": "Code for America",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1407440,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1512525,
+ "tags": [
+ {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_691C78EF-6904-430D-5DE0-2A218F780AE8"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Libya, soccer, government, protests, coordination, social life, political life, Tunisia, Egypitia",
+ "img": {
+ "src": ""
+ },
+ "title": "Platforme pour les actions civiques",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1512525,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1667170,
+ "tags": [
+ {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_9BA33565-786B-24A5-F2EF-2A21A959633F"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "coordination, political action, citizen action, citizen organizations",
+ "img": {
+ "src": ""
+ },
+ "title": "Le vrai grand changement",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1668051,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1753100,
+ "tags": [
+ {
+ "id-ref": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_874C9537-11F5-85A1-3E54-2A25590396D6"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "block party, platform, citizen organizations, consumers, cognitive surplus",
+ "img": {
+ "src": ""
+ },
+ "title": "Fetes des voisins",
+ "color": "16711935",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1754200,
+ "meta": {
+ "dc:contributor": "perso",
+ "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:modified": "2012-05-07T10:11:06.721324",
+ "dc:creator": "perso"
+ },
+ "end": 1800000,
+ "tags": [
+ {
+ "id-ref": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16711935",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "s_CAE3C373-F725-A3CA-099A-2A2576315966"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln commence 8h50",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln commence 8h50",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 0,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 0,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 7000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 7000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 42000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 42000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 55000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 55000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
+ "color": "16763904",
+ "polemics": ["Q", "REF", "OK", "KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 62000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 62000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 127000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [77, 85], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3uztmc\", \"indices\": [88, 113], \"expanded_url\": null}]}, \"text\": \"Quelques r\\u00e8gles int\\u00e9ressantes pour le live-twitt de la conf\\u00e9rence #RSLN avec @cshirky : http://twitpic.com/3uztmc.\", \"created_at\": \"Mon Jan 31 07:53:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"location\": \"Boulogne-Billancourt\", \"utc_offset\": 3600, \"statuses_count\": 219, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null, \"listed_count\": 40}, \"id\": 31983280916004864, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983280916004864\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 127000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d0ba17c8-950f-4ae0-ae0d-32e04cde6941-31983280916004864"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 140000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [5, 10], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://yfrog.com/h0dbkxsj\", \"indices\": [29, 54], \"expanded_url\": null}]}, \"text\": \"Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj\", \"created_at\": \"Mon Jan 31 07:53:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5185, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983338092765184, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983338092765184\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 140000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "3f73186a-08df-4d38-821d-2a889a84f2c0-31983338092765184"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky @Microsoft #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Constance de 4barbes: Clay shirky @Microsoft #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 148000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [12, 22], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky @Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:53:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 57623127, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 53, \"protected\": false, \"id_str\": \"57623127\", \"profile_background_color\": \"131516\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 267, \"description\": \"Digital Humanities and Social Media: Community and Content Management\", \"friends_count\": 70, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/983938390/pic.php_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/155252455/avatar.jpg\", \"name\": \"Constance de 4barbes\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 8, \"screen_name\": \"c4barbes\", \"url\": \"http://4barbes.com\", \"created_at\": \"Fri Jul 17 11:53:38 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31983371265507328, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983371265507328\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 148000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "04578856-0359-4fb2-9fc7-6d5e2e4615b1-31983371265507328"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Alice Antheaume: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 149000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 149000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fbe9c058-e418-424b-8b0c-c23b89a48a92-31983376617439232"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 152000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [16, 28], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [118, 123], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:53:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6850, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31983387610718208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983387610718208\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 152000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6842cda1-817d-445e-8fb0-b8efd41ad264-31983387610718208"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
+ "img": {
+ "src": ""
+ },
+ "title": "jean-francois gervai: Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 193000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [30, 35], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Rencontre avec Clayton Shirky #RSLN, public nombreux d\\u00e8s \\\"potron minet\\\"\", \"created_at\": \"Mon Jan 31 07:54:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18998756, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 13, \"protected\": false, \"id_str\": \"18998756\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 6, \"description\": \"auteur d'ouvrages autour du web...\", \"friends_count\": 64, \"location\": \"france\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1176741038/04-0420-GERVAIS_JEAN-FRANCOIS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme1/bg.png\", \"name\": \"jean-francois gervai\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"jfgervais\", \"url\": \"http://www.jeanfrancoisgervais\", \"created_at\": \"Wed Jan 14 22:15:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31983557672960000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983557672960000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 193000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "25903be0-f0a6-401c-9068-b54a04c1ee89-31983557672960000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 209000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [18, 27], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [29, 34], \"text\": \"RSLN\"}, {\"indices\": [113, 120], \"text\": \"iphone\"}], \"urls\": []}, \"text\": \"\\u00c7a rousp\\u00e8te... RT @CyrilleF: #RSLN r\\u00e9sau wifi minimum est assur\\u00e9, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?\", \"created_at\": \"Mon Jan 31 07:54:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5186, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983626669260800, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983626669260800\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 209000,
+ "tags": [
+ {
+ "id-ref": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9583862e-51ea-440f-ab7a-b022412eebc2-31983626669260800"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
+ "img": {
+ "src": ""
+ },
+ "title": "Melissa Bounoua: RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 213000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [10, 18], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [83, 89], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [35, 40], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [57, 77], \"expanded_url\": null}]}, \"text\": \"Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:43:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13622572, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 2560, \"protected\": false, \"id_str\": \"13622572\", \"profile_background_color\": \"9AE4E8\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 8687, \"description\": \"Un peu de 20minutes.fr dans cet internet mondial\", \"friends_count\": 346, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1183719410/40794_420716233991_587318991_4855249_4249707_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/121055127/qgvzF.jpg\", \"name\": \"Charles Dufresne\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 7, \"screen_name\": \"rocknrobot\", \"url\": \"http://www.20minutes.fr\", \"created_at\": \"Mon Feb 18 13:32:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 170}, \"id\": 31980923448725504, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31980923448725504\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 14], \"id\": 13622572, \"screen_name\": \"rocknrobot\", \"name\": \"Charles Dufresne\", \"id_str\": \"13622572\"}, {\"indices\": [26, 34], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [99, 105], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [51, 56], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [73, 93], \"expanded_url\": null}]}, \"text\": \"RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:54:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50154, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6679, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31983643530362880, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31983643530362880\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 213000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9eb2aa47-8e9b-4dc2-b7a5-51daf5cddbe8-31983643530362880"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Introduction en français ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Bertil Hatt: #rsln Introduction en français ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 230000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Introduction en fran\\u00e7ais ?\", \"created_at\": \"Mon Jan 31 07:54:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 4985551, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 454, \"protected\": false, \"id_str\": \"4985551\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 42, \"utc_offset\": 3600, \"statuses_count\": 2678, \"description\": \"I do not control either LinkedIn profiles under my name.\\r\\nPhD Econ. \\u201cCompetition between Social Network Sites\\u201d @ U.Paris-Ouest Nanterre & independent consultant\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/22068682/DSC_6634_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/2947659/DSC02510-small.jpg\", \"name\": \"Bertil Hatt\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 436, \"screen_name\": \"bertil_hatt\", \"url\": \"http://www.quora.com/Bertil-Hatt\", \"created_at\": \"Tue Apr 17 11:25:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31983714204385280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983714204385280\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 230000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ff3f0903-4e89-4c28-a43a-71968aa3a5cc-31983714204385280"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 244000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Rappel sur la n\\u00e9cessit\\u00e9 d'Internet avec les \\u00e9v\\u00e9nements en \\u00c9gypte. Introduction Constance Parodi.\", \"created_at\": \"Mon Jan 31 07:55:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 27, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31983773893529601, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983773893529601\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 244000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "8c14ce29-705f-41ee-b320-a20a44ea399d-31983773893529601"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 252000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.\", \"created_at\": \"Mon Jan 31 07:55:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 692, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31983809054380032, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983809054380032\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 252000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "55dffae8-0dec-4aa5-9a75-2181f96d3f47-31983809054380032"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 294000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Dans un instant, la conf\\u00e9rence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus cr\\u00e9atif ?\", \"created_at\": \"Mon Jan 31 07:55:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 175, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 217, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31983982530793472, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983982530793472\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 294000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "78f208b8-04db-4613-8598-863fd424fd3e-31983982530793472"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "à la conférence de Clay Shirky au campus #Microsoft #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "la pinta: à la conférence de Clay Shirky au campus #Microsoft #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 321000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [42, 52], \"text\": \"Microsoft\"}, {\"indices\": [53, 58], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\u00e0 la conf\\u00e9rence de Clay Shirky au campus #Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:56:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3122, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31984097412784128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984097412784128\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 321000,
+ "tags": [
+ {
+ "id-ref": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2deb537a-0ce0-4dad-b178-aa944d1f5f0e-31984097412784128"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 325000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [5, 13], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Avec @cshirky, r\\u00e9flexions sur le temps de cerveau disponible, la cr\\u00e9ativit\\u00e9 et les nouvelles connexions. #RSLN\", \"created_at\": \"Mon Jan 31 07:56:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 220, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31984113330163712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984113330163712\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 325000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "74b3f478-5b5a-4ccc-91b0-f3c31a6dc790-31984113330163712"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
+ "color": "16763904",
+ "polemics": ["Q", "REF", "OK", "KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 333000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 84], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Il faut noter nos tweets \\\"++, ==, --, ??\\\".... \\u00c7a va ressembler \\u00e0 des gros mots #RSLN\", \"created_at\": \"Mon Jan 31 07:56:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984147253698560, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984147253698560\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 333000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "99f7a154-cd01-4acb-811c-de6d31e842fc-31984147253698560"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "MiKarmousMi3neb: RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 339000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"listed_count\": 758, \"utc_offset\": 3600, \"statuses_count\": 2372, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"location\": \"Paris\", \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 8266352, \"screen_name\": \"alicanth\", \"name\": \"Alice Antheaume\", \"id_str\": \"8266352\"}], \"hashtags\": [{\"indices\": [85, 90], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [57, 84], \"expanded_url\": null}]}, \"text\": \"RT @alicanth: \\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:56:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 110795718, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 110, \"protected\": false, \"id_str\": \"110795718\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 3, \"utc_offset\": -21600, \"statuses_count\": 1435, \"description\": \"J'aime les raisins mais je pr\\u00e9f\\u00e8re les figues.\", \"friends_count\": 150, \"location\": \"\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/947738452/3515e59d-838c-4639-940e-1715fd93806c_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/85303105/DSC01229.JPG\", \"name\": \"MiKarmousMi3neb\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"MiKarmousMi3neb\", \"url\": null, \"created_at\": \"Tue Feb 02 20:17:03 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31984171630989312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984171630989312\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 339000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "675567c6-556d-4324-b110-ac70cde5b203-31984171630989312"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Elisabeth Garrett: @ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 433000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 69], \"text\": \"communities\"}, {\"indices\": [121, 127], \"text\": \"Egypt\"}, {\"indices\": [128, 133], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 07:58:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Mobile Web \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 152375270, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 49, \"protected\": false, \"id_str\": \"152375270\", \"profile_background_color\": \"352726\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 269, \"description\": \"MBA @HECParis. Stagiaire @Soci\\u00e9t\\u00e9G\\u00e9n\\u00e9rale. social marketer. photographer. petite gourmande. wine-cinema-NYC-travel-karaoke-f\\u00fatbol enthusiast. amazed by grace.\", \"friends_count\": 45, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/962811111/23230_106524_7896_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"Elisabeth Garrett\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"EliGarrett\", \"url\": \"http://eligarrett.wordpress.com\", \"created_at\": \"Sat Jun 05 19:51:45 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 0}, \"id\": 31984564570169344, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984564570169344\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 433000,
+ "tags": [
+ {
+ "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "f3d4a265-fbaa-4e8b-8ed4-0b19a7df34b5-31984564570169344"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Trois barres de wifi -- -- --- #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Trois barres de wifi -- -- --- #RSLN",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 438000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [31, 36], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Trois barres de wifi -- -- --- #RSLN\", \"created_at\": \"Mon Jan 31 07:58:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984585231310849, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984585231310849\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 438000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "89887a2e-b0db-461c-aef1-b9435f6bda53-31984585231310849"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 493000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 959, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 493000,
+ "tags": [
+ {
+ "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "814a2ed8-2756-4b21-bf7f-43033845c97d-31984816979189760"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 495000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [59, 64], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 07:59:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1917, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31984825082576896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984825082576896\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 495000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ab5e1489-1d78-40de-bd9f-041e93a177cd-31984825082576896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay Shirky in conference at Microsoft's campus",
+ "img": {
+ "src": ""
+ },
+ "title": "Dany Vilela: #rsln Clay Shirky in conference at Microsoft's campus",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 513000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky in conference at Microsoft's campus\", \"created_at\": \"Mon Jan 31 07:59:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 21152901, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1493, \"protected\": false, \"id_str\": \"21152901\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 140, \"utc_offset\": 3600, \"statuses_count\": 7618, \"description\": \"Dyvantity, home of creativity by Dany Vilela (@Dy_Vilela)\", \"friends_count\": 1198, \"location\": \"Grenoble\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/960161513/dy_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/108589554/TwitterTemplate_copie.jpg\", \"name\": \"Dany Vilela\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dyvantity\", \"url\": \"http://dyvantity.com\", \"created_at\": \"Wed Feb 18 00:48:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984902601707520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984902601707520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 513000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "1fa8cece-d261-4290-931d-7ccc775858e0-31984902601707520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 528000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [80, 88], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky\", \"created_at\": \"Mon Jan 31 07:59:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31984965352685568, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984965352685568\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 528000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "1cf29524-3087-4f6a-a52a-6fbcbd35dbc6-31984965352685568"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 560000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky \\\"optimistic about what new tools bring for citizens\\\" ++\", \"created_at\": \"Mon Jan 31 08:00:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 28, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31985100929372160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985100929372160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 560000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "cf12841e-e3e6-484f-9e71-1c7a3eade1fd-31985100929372160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Gustavo González: !!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 636000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [7, 18], \"id\": 152375270, \"screen_name\": \"EliGarrett\", \"name\": \"Elisabeth Garrett\", \"id_str\": \"152375270\"}], \"hashtags\": [{\"indices\": [62, 74], \"text\": \"communities\"}, {\"indices\": [126, 132], \"text\": \"Egypt\"}, {\"indices\": [133, 138], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 08:01:32 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"\\u00dcberTwitter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 43939616, \"verified\": false, \"profile_sidebar_fill_color\": \"EADEAA\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 308, \"protected\": false, \"id_str\": \"43939616\", \"profile_background_color\": \"8B542B\", \"location\": \"\\u00dcT: 48.819156,2.291199\", \"utc_offset\": -16200, \"statuses_count\": 5670, \"description\": \"Sibarita caraque\\u00f1o living in Paris. MBA participant at HEC-Paris. Movies&Wine&Food lover qui s'amuse \\u00e0 en parler et partager avec les amis...\", \"friends_count\": 356, \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/819879158/untitled_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/195050882/Word_Cloud.JPG\", \"name\": \"Gustavo Gonz\\u00e1lez\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 12, \"screen_name\": \"gustavogb83\", \"url\": null, \"created_at\": \"Mon Jun 01 18:31:30 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"profile_sidebar_border_color\": \"D9B17E\", \"following\": null, \"listed_count\": 13}, \"id\": 31985419721637890, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985419721637890\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 636000,
+ "tags": [
+ {
+ "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
+ }, {
+ "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2dc5e9ff-e370-4c06-9ac5-33cc636b14e7-31985419721637890"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Anthony: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 655000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 17759, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null, \"listed_count\": 133}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 655000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e4b2ba41-d151-44ec-8269-eee99a951019-31985498780078080"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Graham Hay: RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 666000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [88, 93], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:49:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31982379551686656, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982379551686656\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 08:02:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 83917557, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 29, \"protected\": false, \"id_str\": \"83917557\", \"profile_background_color\": \"C0DEED\", \"location\": \"Auckland, New Zealand\", \"utc_offset\": 43200, \"statuses_count\": 44, \"description\": \"\", \"friends_count\": 101, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1100908900/graham_hay_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Graham Hay\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"graham_hay\", \"url\": null, \"created_at\": \"Tue Oct 20 20:19:49 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Wellington\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 2}, \"id\": 31985545622069248, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985545622069248\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 666000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "92d56631-8ec7-43bd-9038-ff95a5629d3d-31985545622069248"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Melissa Bounoua: La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 672000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [11, 19], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"La conf de @cshirky commence sur le m\\u00eame ex que sa conf ted de juin dernier \\u00e0 Cannes: la plateforme ushahidi #rsln\", \"created_at\": \"Mon Jan 31 08:02:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50152, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6681, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31985570716581888, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985570716581888\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 672000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "37ade492-143b-46dc-a2e9-4e566a4f85e4-31985570716581888"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 719000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi\", \"created_at\": \"Mon Jan 31 08:02:55 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 693, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31985765323898880, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985765323898880\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 719000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "25d80b84-cb4e-48de-8a0f-018bb5996ea5-31985765323898880"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 754000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [89, 107], \"text\": \"citizenjournalism\"}, {\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://j.mp/3y0kHS\", \"indices\": [116, 134], \"expanded_url\": null}]}, \"text\": \"@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS\", \"created_at\": \"Mon Jan 31 08:03:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31985910551678976, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985910551678976\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 754000,
+ "tags": [
+ {
+ "id-ref": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2fdf7de8-4126-417d-ae90-bfd4b2882e4b-31985910551678976"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln hushaidi ++ desaster as a social object",
+ "img": {
+ "src": ""
+ },
+ "title": "Lionel Natarianni: #rsln hushaidi ++ desaster as a social object",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 760000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln hushaidi ++ desaster as a social object\", \"created_at\": \"Mon Jan 31 08:03:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 1599, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31985939437850624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985939437850624\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 760000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b992e2a8-9d93-4921-bb1a-af45dd015b56-31985939437850624"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 765000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay aborde le probl\\u00e8me de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas\", \"created_at\": \"Mon Jan 31 08:03:41 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 866, \"description\": \"\", \"friends_count\": 107, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 13}, \"id\": 31985960119959552, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985960119959552\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 765000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "30263902-1a82-4620-9d2a-19f8961ecbb2-31985960119959552"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 767000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [84, 89], \"text\": \"RSLN\"}, {\"indices\": [90, 99], \"text\": \"Ushahidi\"}], \"urls\": [{\"url\": \"http://yfrog.com/gz5mvxjj\", \"indices\": [100, 125], \"expanded_url\": null}]}, \"text\": \"Clay Shirky raconte comment les blogueurs se sont mobilis\\u00e9s au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj\", \"created_at\": \"Mon Jan 31 08:03:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 221, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31985966457552896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985966457552896\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 767000,
+ "tags": [
+ {
+ "id-ref": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a3c773f6-fc2c-4bc2-aa4c-e695f8b5670d-31985966457552896"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 768000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln la cartographie de la violence en temps r\\u00e9el, utile en situation de guerre mais anxiog\\u00e8ne partout ailleurs --\", \"created_at\": \"Mon Jan 31 08:03:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 81, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31985972707074049, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985972707074049\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 768000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "84adc135-86e1-4f1f-bb6b-3ed7f407caba-31985972707074049"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky on stage #RSLN http://plixi.com/p/73750856",
+ "img": {
+ "src": ""
+ },
+ "title": "Alice Antheaume: Clay shirky on stage #RSLN http://plixi.com/p/73750856",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 791000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73750856\", \"indices\": [28, 55], \"expanded_url\": null}]}, \"text\": \"Clay shirky on stage #RSLN http://plixi.com/p/73750856\", \"created_at\": \"Mon Jan 31 08:04:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31986069742292992, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986069742292992\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 791000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "9d440698-8e91-4542-b978-8cb22b811d56-31986069742292992"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 818000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [62, 67], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"En bon americain, Clay Shirky commence par une belle histoire #rsln ++\", \"created_at\": \"Mon Jan 31 08:04:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1919, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31986179578527744, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986179578527744\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 818000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7abf0e3b-afe9-424c-a49e-22dbae9de393-31986179578527744"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "img": {
+ "src": ""
+ },
+ "title": "Christophe Prieuur: RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 833000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 18], \"id\": 28351245, \"screen_name\": \"GarrettGoodman\", \"name\": \"Garrett Goodman\", \"id_str\": \"28351245\"}, {\"indices\": [20, 28], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [116, 121], \"text\": \"RSLN\"}, {\"indices\": [122, 127], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"RT @GarrettGoodman: @cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 08:04:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 6, \"utc_offset\": 3600, \"statuses_count\": 244, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31986242954461184, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986242954461184\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 833000,
+ "tags": [
+ {
+ "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "dfa4ebef-b70e-4ded-b410-91cf632b8f11-31986242954461184"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 842000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 842000,
+ "tags": [
+ {
+ "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "148e5b7b-1f5a-4221-a9d9-f3ad4bd6670b-31986280501874688"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Richard Ying: Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 846000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"location\": \"Paris\", \"profile_background_color\": \"352726\", \"id_str\": \"104293463\", \"utc_offset\": 3600, \"statuses_count\": 1432, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"notifications\": null, \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 29}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [92, 97], \"text\": \"rsln\"}], \"urls\": []}, \"contributors\": null, \"truncated\": false, \"text\": \"Ushahidi \\\"technologie apparue \\u00e0 Nairobi, Kenya, et qui s'est r\\u00e9pandue dans le monde entier\\\" #rsln ++\", \"created_at\": \"Mon Jan 31 08:05:02 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31986297836933121, \"source\": \"TweetDeck \", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31986297836933121\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 846000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c4a6d9f0-29af-49f3-a6ae-e926f1084a36-31986297836933121"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les sms pour amener le web dans la brousse !",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyrille Fonvielle: #rsln les sms pour amener le web dans la brousse !",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 848000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les sms pour amener le web dans la brousse !\", \"created_at\": \"Mon Jan 31 08:05:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 867, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986306355564545, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986306355564545\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 848000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b7ec955a-9669-492b-8917-ec144e514191-31986306355564545"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "guigui bat: RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 871000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"listed_count\": 133, \"utc_offset\": 3600, \"statuses_count\": 17761, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"location\": \"Paris, France\", \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 9132482, \"screen_name\": \"kanthos\", \"name\": \"Anthony\", \"id_str\": \"9132482\"}, {\"indices\": [16, 25], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [86, 91], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:05:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 33849214, \"verified\": false, \"profile_sidebar_fill_color\": \"F7DA93\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 288, \"protected\": false, \"id_str\": \"33849214\", \"profile_background_color\": \"000000\", \"listed_count\": 8, \"utc_offset\": -10800, \"statuses_count\": 1024, \"description\": \"Pigiste (radio latina, voltage...) - Journaliste (ex-G\\u00e9n\\u00e9rations 88.2 fm)\", \"friends_count\": 962, \"location\": \"Paris (France)\", \"profile_link_color\": \"CC3300\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1172856658/GUIGUI_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/173146979/Eastbound_and_Down_Season_2_Debuted_in_HBO.jpg\", \"name\": \"guigui bat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 5, \"screen_name\": \"guillaumebat\", \"url\": null, \"created_at\": \"Tue Apr 21 08:15:17 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"FFFFFF\", \"following\": null}, \"id\": 31986404686827520, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986404686827520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 871000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b089c539-c908-4399-87f6-27fd12fb11f5-31986404686827520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Christian Porri: http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 887000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [83, 88], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3v3p6o\", \"indices\": [0, 25], \"expanded_url\": null}]}, \"text\": \"http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN\", \"created_at\": \"Mon Jan 31 08:05:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Windows Phone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36630982, \"verified\": false, \"profile_sidebar_fill_color\": \"dedede\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 456, \"protected\": false, \"id_str\": \"36630982\", \"profile_background_color\": \"dedede\", \"listed_count\": 11, \"utc_offset\": 3600, \"statuses_count\": 1476, \"description\": \"= French graphic and interactive designer * (GUI + UX + Video games gameplay (\\u2665PC gaming) + Science-fiction + Type + Computing culture + ...)\", \"friends_count\": 614, \"location\": \"On the taskbar\", \"profile_link_color\": \"0a3aff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/239549703/logoTF_twitter_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/15559291/fond-twitter.jpg\", \"name\": \"Christian Porri\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"Tamantafamiglia\", \"url\": \"http://www.christianporri.com\", \"created_at\": \"Thu Apr 30 09:53:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"f8f7f7\", \"following\": null}, \"id\": 31986470629675008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986470629675008\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 887000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a3a42252-81f3-4555-abff-e1273080d7ef-31986470629675008"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "img": {
+ "src": ""
+ },
+ "title": "SandraValerii: RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 897000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 10], \"id\": 6284172, \"screen_name\": \"versac\", \"name\": \"NicolasVanbremeersch\", \"id_str\": \"6284172\"}], \"hashtags\": [{\"indices\": [99, 111], \"text\": \"blendedtech\"}, {\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [74, 98], \"expanded_url\": null}]}, \"text\": \"RT @versac: Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:05:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 51, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31986513839394816, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986513839394816\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 897000,
+ "tags": [
+ {
+ "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
+ }
+ ],
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "99afc6f7-1840-49a7-80aa-2522e7cf6296-31986513839394816"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 905000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [120, 125], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [43, 63], \"expanded_url\": null}]}, \"text\": \"Ushahidi, une plateforme invent\\u00e9e au Kenya http://bit.ly/dCSATj L'\\u00e9quivalent nu\\u00e9mrique du d\\u00e9veloppement du micro-cr\\u00e9dit #RSLN\", \"created_at\": \"Mon Jan 31 08:06:01 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5189, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986544894025728, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986544894025728\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 905000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "93ac26d2-8571-4ea7-8af8-823f2b53949c-31986544894025728"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 929000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 929000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d665d937-20e1-4281-aa3f-d311478ad9fe-31986647222452224"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "peopleare: #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 947000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln\", \"created_at\": \"Mon Jan 31 08:06:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14177974, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 10, \"protected\": false, \"id_str\": \"14177974\", \"profile_background_color\": \"1A1B1F\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 1, \"description\": \"\", \"friends_count\": 17, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/128858275/Av_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme9/bg.gif\", \"name\": \"peopleare\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"peopleare\", \"url\": null, \"created_at\": \"Wed Mar 19 16:54:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 0}, \"id\": 31986723009339392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986723009339392\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 947000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "523773b2-940d-49b4-b927-e9c5754a42fa-31986723009339392"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: \"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 976000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [102, 110], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [111, 116], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"La technologie doit donner envie de participer, m\\u00eame aux n\\u00e9ophytes, et de faire des choses utiles\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:07:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 222, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31986844849672192, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986844849672192\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 976000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "4f660231-ecec-486d-b834-0d49dcb77126-31986844849672192"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Christophe Prieuur: Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 979000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [68, 73], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Nicolas Hulot a invit\\u00e9 Clay Shirky \\u00e0 pr\\u00e9senter sa nouvelle \\u00e9mission #rsln\", \"created_at\": \"Mon Jan 31 08:07:15 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 245, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 6}, \"id\": 31986856920883200, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986856920883200\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 979000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "0f2f20ef-f0ea-44ca-af4d-ca04de0c0887-31986856920883200"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 986000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...\", \"created_at\": \"Mon Jan 31 08:07:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 29, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31986884519403520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986884519403520\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 986000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "580cca57-71b6-4ac3-9466-5b4eaf1c1a5c-31986884519403520"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "chaffiotte: Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 994000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Ushahidi ... Invent\\u00e9 \\u00e0 Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\\n#RSLN\", \"created_at\": \"Mon Jan 31 08:07:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 26260924, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 326, \"protected\": false, \"id_str\": \"26260924\", \"profile_background_color\": \"131516\", \"listed_count\": 16, \"utc_offset\": -10800, \"statuses_count\": 666, \"description\": \"ceo of JWT Paris/ I love the social media revolution and I want to be part of it : vive la revolution !!!/master class in hyper island /runner & biker\", \"friends_count\": 708, \"location\": \"paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1219068025/IMG_0928_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/171909728/twilk_background_4ce11ca768fe7.jpg\", \"name\": \"chaffiotte\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 191, \"screen_name\": \"clachaf\", \"url\": \"http://chaff.unblog.fr\", \"created_at\": \"Tue Mar 24 15:49:07 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"ededed\", \"following\": null}, \"id\": 31986919567003648, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986919567003648\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 994000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ad674d93-be78-46d1-ade9-1b88352156f7-31986919567003648"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Richard Ying: Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 997000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay Shirky sur Ushahidi \\\"pas besoin de venir de Mountain View, Californie, pour se d\\u00e9velopper dans le monde\\\" #rsln\", \"created_at\": \"Mon Jan 31 08:07:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"id_str\": \"104293463\", \"profile_background_color\": \"352726\", \"listed_count\": 29, \"utc_offset\": 3600, \"statuses_count\": 1433, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31986931373965312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986931373965312\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 997000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7b8cdc48-a872-484c-a556-9866ffbc42d9-31986931373965312"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 998000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [119, 124], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [47, 67], \"expanded_url\": null}]}, \"text\": \"Enti\\u00e8rement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le t\\u00e9l\\u00e9phone de base #RSLN\", \"created_at\": \"Mon Jan 31 08:07:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5190, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986936306475008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986936306475008\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 998000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ee47d8e1-2312-48ee-887f-68d06ba3c24b-31986936306475008"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: @CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1004000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [53, 58], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(\", \"created_at\": \"Mon Jan 31 08:07:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31983580863270912\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36027828\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": 31983580863270912, \"in_reply_to_screen_name\": \"CyrilleF\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6852, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986959354171392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986959354171392\", \"in_reply_to_user_id\": 36027828}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1004000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2bcbfb84-ad91-4309-875f-1ff4a158323c-31986959354171392"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1016000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [132, 140], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky\", \"created_at\": \"Mon Jan 31 08:07:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4632, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31987011116077056, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987011116077056\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1016000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e0de5ce3-a9fe-4b1d-8828-63b8c1100327-31987011116077056"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1028000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay ouvre sa conf\\u00e9rence avec les m\\u00eames exemples qu'\\u00e0 TED : Ushahidi et les autres exemples de crowdsourcing citoyen.\", \"created_at\": \"Mon Jan 31 08:08:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 176, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"location\": \"Paris - Ze capitale of ze love\", \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null}, \"id\": 31987061594529792, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987061594529792\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1028000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "5d6624a4-ab46-4f25-9212-15ea5e3c648b-31987061594529792"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
+ "img": {
+ "src": ""
+ },
+ "title": "dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1032000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1032000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a0eaec31-b3f3-473d-9d49-5db9c8108531-31987077629353984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1044000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [131, 136], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN\", \"created_at\": \"Mon Jan 31 08:08:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 961, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987129944899584, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987129944899584\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1044000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "56765e7a-5e78-4c90-99f0-9754a9ba5c3f-31987129944899584"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Guillaume Decugis: Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1047000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 19], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://ushahidi.com/\", \"indices\": [20, 40], \"expanded_url\": null}]}, \"text\": \"Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++\", \"created_at\": \"Mon Jan 31 08:08:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1705, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31987139579219970, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987139579219970\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1047000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fd898cbc-613c-483b-8cf2-ec51e04c3fdf-31987139579219970"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN cognitive surplus = Agregation of free time ++",
+ "img": {
+ "src": ""
+ },
+ "title": "steamwolf: #RSLN cognitive surplus = Agregation of free time ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1055000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN cognitive surplus = Agregation of free time ++\", \"created_at\": \"Mon Jan 31 08:08:31 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1037, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987173393694720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987173393694720\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1055000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "fa78ba38-eccd-4aea-82f6-fafdeb768d79-31987173393694720"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1058000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [93, 98], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Des individus contribuent avec leurs moyens num\\u00e9riques et les contenus sont agr\\u00e9g\\u00e9s Ushahidi #RSLN\", \"created_at\": \"Mon Jan 31 08:08:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5191, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987185867558912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987185867558912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1058000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "4f56d1d0-71f6-4e08-9ca3-1a563c38e650-31987185867558912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1064000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 19], \"id\": 14430897, \"screen_name\": \"dominiquepiotet\", \"name\": \"dominiquepiotet\", \"id_str\": \"14430897\"}], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5192, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987211511537664, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987211511537664\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1064000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "97ef046f-8920-4440-8bf5-3e2feab0f554-31987211511537664"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Sane Lebrun: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1076000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [48, 53], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:08:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36333549, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 686, \"protected\": false, \"id_str\": \"36333549\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3487, \"description\": \"Product Manager (global) for a videogame publisher (iPhone, iPad, etc). Graduated from ESCP Europe (Master in Management). Electro music addict.\", \"friends_count\": 1204, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/190531233/n576390766_6339_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296072137/images/themes/theme1/bg.png\", \"name\": \"Sane Lebrun\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"SaneFive\", \"url\": \"http://www.playfive.fr\", \"created_at\": \"Wed Apr 29 11:06:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 25}, \"id\": 31987261545390080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987261545390080\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1076000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7ccde140-d71b-4941-8fbe-d089051caf8d-31987261545390080"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1082000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:08:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 906, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31987290372833280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987290372833280\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1082000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2cb968cf-9e18-450d-8970-06bc3cbef44d-31987290372833280"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1109000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [43, 52], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [102, 107], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Et le jean et la d\\u00e9gaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:09:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5193, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987400594948096, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987400594948096\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1109000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "54299691-eed0-495f-bf34-8041f905b6ff-31987400594948096"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1110000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [115, 120], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Utiliser \\u00e0 bon escient le temps libre pour faire des r\\u00e9alisations participatives, civiques, gr\\u00e2ce \\u00e0 l'information. #RSLN @cshirky\", \"created_at\": \"Mon Jan 31 08:09:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 223, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31987405376462848, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987405376462848\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1110000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "555aed43-371a-435a-a8f9-34d4f0943ce6-31987405376462848"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln clay speak about cognitive surplus @microsoft ==",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln clay speak about cognitive surplus @microsoft ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1142000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [41, 51], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln clay speak about cognitive surplus @microsoft ==\", \"created_at\": \"Mon Jan 31 08:09:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1664, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987540001034240, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987540001034240\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1142000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "0ba6928c-36ac-4bb9-8cf4-ac85ec2c5e53-31987540001034240"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN Cognitive Surplus utilisation : a form of civic action ++",
+ "img": {
+ "src": ""
+ },
+ "title": "steamwolf: #RSLN Cognitive Surplus utilisation : a form of civic action ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1153000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN Cognitive Surplus utilisation : a form of civic action ++\", \"created_at\": \"Mon Jan 31 08:10:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1038, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987584431300609, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987584431300609\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1153000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2ca29e25-fd73-4740-a738-692a59d685a8-31987584431300609"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1162000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln De l'information \\u00e0 l'action, le chemin n'est pas forc\\u00e9ment aussi direct --\", \"created_at\": \"Mon Jan 31 08:10:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 83, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987622867902464, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987622867902464\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1162000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "672067e8-d8ff-4f3c-8138-71ac8ee66af4-31987622867902464"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln == http://t.co/DWhd8FM",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln == http://t.co/DWhd8FM",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1193000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://t.co/DWhd8FM\", \"indices\": [9, 28], \"expanded_url\": \"http://twitpic.com/3v3qdr\", \"display_url\": \"twitpic.com/3v3qdr\"}]}, \"text\": \"#rsln == http://t.co/DWhd8FM\", \"created_at\": \"Mon Jan 31 08:10:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1665, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987754690678784, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987754690678784\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1193000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d6136d85-502d-4dbd-92c7-205a3fd488e6-31987754690678784"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1257000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1257000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "f1ec6223-723e-43ff-8271-261b3c92e031-31988022811561984"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1285000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.\", \"created_at\": \"Mon Jan 31 08:12:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4633, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988138171703296, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988138171703296\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1285000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "065e2a82-df5a-48f8-b930-64f576918362-31988138171703296"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1288000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanit\\u00e9--\", \"created_at\": \"Mon Jan 31 08:12:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 84, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31988154219102208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988154219102208\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1288000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ebddeaf0-eee1-4802-b938-5302a2cd1f8f-31988154219102208"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"smart consumer\"... Ça doit être moi, ça... #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Thierry Do Espirito: \"smart consumer\"... Ça doit être moi, ça... #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1309000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"smart consumer\\\"... \\u00c7a doit \\u00eatre moi, \\u00e7a... #RSLN\", \"created_at\": \"Mon Jan 31 08:12:45 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5194, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31988242005884928, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988242005884928\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1309000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "63252f66-2e00-4308-b0e4-a35101384770-31988242005884928"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1327000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN\", \"created_at\": \"Mon Jan 31 08:13:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 907, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31988317780189185, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988317780189185\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1327000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "7adfa340-c194-4df5-b785-a1b475ea7a30-31988317780189185"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1338000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [90, 95], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN\", \"created_at\": \"Mon Jan 31 08:13:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6853, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31988363938496513, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988363938496513\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1338000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d158ccd2-47e2-4a03-b367-54435bbf0d65-31988363938496513"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
+ "img": {
+ "src": ""
+ },
+ "title": "marjoriepaillon: RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1355000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 14974710, \"screen_name\": \"eni_kao\", \"name\": \"[Enikao]\", \"id_str\": \"14974710\"}, {\"indices\": [132, 136], \"id\": 4687901, \"screen_name\": \"CSH\", \"name\": \"Charles Harvey\", \"id_str\": \"4687901\"}], \"hashtags\": [{\"indices\": [125, 130], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @eni_kao: [Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@csh ...\", \"created_at\": \"Mon Jan 31 08:13:31 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 16039806, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 3807, \"protected\": false, \"id_str\": \"16039806\", \"profile_background_color\": \"EBEBEB\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1935, \"description\": \"Journaliste News, Web & Mag \\r\\n// R\\u00e9f\\u00e9rences: @ilovepolitics,BFMTV,France 5 \", \"friends_count\": 622, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/401202539/Image_1_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"marjoriepaillon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"marjoriepaillon\", \"url\": \"http://www.ilovepolitics.info\", \"created_at\": \"Fri Aug 29 09:08:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 346}, \"id\": 31988432993525761, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988432993525761\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1355000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "71f695ce-68b1-481a-96c1-19452097f2ec-31988432993525761"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1366000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln == \\\"citizen as sensor\\\" / \\\"smart consumer\\\" / ...\", \"created_at\": \"Mon Jan 31 08:13:42 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1666, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988479382519808, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988479382519808\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1366000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "224867c5-0c16-41be-9008-376786d28172-31988479382519808"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1422000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.\", \"created_at\": \"Mon Jan 31 08:14:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4634, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31988714007699456, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988714007699456\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1422000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a1bc35a2-85e6-4b33-b6fa-258d59f19979-31988714007699456"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "code for america : le réseau social collaboratif des villes US #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "la pinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1446000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1446000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c798f63b-b5f0-420c-8679-bce3e5e871b2-31988814801010688"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "B. Minded: \"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1452000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"Rendre la donn\\u00e9e publique pour que les citoyens \\u00e9clairent les d\\u00e9cisions politiques et prennent des d\\u00e9cisions \\u00e9clair\\u00e9es\\\" @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:15:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic twhirl \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 224, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31988838863732736, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988838863732736\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1452000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "6145c2ec-41f7-4bba-b617-494348d471d2-31988838863732736"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
+ "color": "16763904",
+ "polemics": ["Q", "KO", "OK", "REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1458000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question\", \"created_at\": \"Mon Jan 31 08:15:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1667, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988863538831361, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988863538831361\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1458000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c68cb5fb-f2e1-49a6-8adb-f18b81ca1f35-31988863538831361"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1465000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org-to-Org, Partnership, eg Code for America.\", \"created_at\": \"Mon Jan 31 08:15:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4635, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988892798291968, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988892798291968\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1465000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ff4cc5ef-239b-4b6f-9a5a-43980f1f74b6-31988892798291968"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1490000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"HootSuite \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"listed_count\": 159, \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"location\": \"Paris\", \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 17152456, \"screen_name\": \"flapinta\", \"name\": \"la pinta\", \"id_str\": \"17152456\"}], \"hashtags\": [{\"indices\": [77, 82], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @flapinta: code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 908, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31988999027429376, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988999027429376\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1490000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "104f925e-221c-4e97-a076-2405e5e14987-31988999027429376"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1544000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)\", \"created_at\": \"Mon Jan 31 08:16:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4636, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989228145479680, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989228145479680\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1544000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b55fb9b7-b082-4db6-a899-b2088f85c882-31989228145479680"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Garrett Goodman: @cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1554000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [81, 86], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"@cshirky : Govs are afraid of synchronized groups. That\\u2019s what changes politics. #rsln\", \"created_at\": \"Mon Jan 31 08:16:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 348, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 962, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31989270000439297, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989270000439297\", \"in_reply_to_user_id\": 6141832}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1554000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "676ae1cb-377f-441e-82d3-3e1069620518-31989270000439297"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
+ "color": "16763904",
+ "polemics": ["KO"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1560000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --\", \"created_at\": \"Mon Jan 31 08:16:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 30, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989295094960128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989295094960128\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1560000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a688883e-99e5-4b56-b247-262cb9c188b3-31989295094960128"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
+ "img": {
+ "src": ""
+ },
+ "title": "Vincent Puig: #rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1570000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln l'image culturelle produite par la foule est elle conforme \\u00e0 l'image culturelle que nous imaginons pour nos groupes sociaux ??\", \"created_at\": \"Mon Jan 31 08:17:06 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31989337163825152, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989337163825152\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1570000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "359e7c36-ad95-4001-aa56-b457c6559df3-31989337163825152"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "Stanm: 'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1584000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [82, 87], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN\", \"created_at\": \"Mon Jan 31 08:17:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 909, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31989392583168000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989392583168000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1584000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "d144b130-a959-4602-a2c5-2c2ccb8a5ef0-31989392583168000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Robin Berjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1599000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1599000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "b8cb2f37-0cb6-45c6-8e37-79da8f7d53b1-31989455556444160"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1610000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"Les gouvernements n'ont pas peur des gens individuellement inform\\u00e9s, ils ont peur des groupes synchronis\\u00e9s\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:17:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9112, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31989502138388480, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989502138388480\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1610000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "23cd3ce7-35bc-4d8b-9909-d14a9ade0dba-31989502138388480"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "Guillaume Decugis: \"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1637000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [101, 109], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\\\" @cshirky #rsln\", \"created_at\": \"Mon Jan 31 08:18:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1706, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31989616357679105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989616357679105\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1637000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "22741a60-5f15-4c3f-8439-5c6aea35fac5-31989616357679105"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
+ "img": {
+ "src": ""
+ },
+ "title": "Rémi Rivas: #RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1642000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Quelle est la n\\u00e9cessit\\u00e9 d'une structure organisationnelle pour traiter l'information \\u00e0 l'heure ou chaque citoyen est un informateur?\", \"created_at\": \"Mon Jan 31 08:18:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 177, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31989637765406720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989637765406720\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1642000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "65975110-6493-43b3-afe8-7002d8a5efd8-31989637765406720"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
+ "img": {
+ "src": ""
+ },
+ "title": "NicolasVanbremeersch: L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1652000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [123, 128], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"L'Internet, c'est un peu comme le foot : \\u00e7a aide \\u00e0 coordonner les sentiments. Tr\\u00e8s vrai pour les rues arabes actuellement. #RSLN\", \"created_at\": \"Mon Jan 31 08:18:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6854, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31989680345976832, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989680345976832\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1652000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "296f36b9-4c1c-4d2c-9686-64e40002fda7-31989680345976832"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "\"people talk abiut what they care about\" ++ #rsln",
+ "img": {
+ "src": ""
+ },
+ "title": "SandraValerii: \"people talk abiut what they care about\" ++ #rsln",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1684000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"people talk abiut what they care about\\\" ++ #rsln\", \"created_at\": \"Mon Jan 31 08:19:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 52, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31989814358179840, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989814358179840\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1684000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "700fc385-f74b-4990-9995-c449920ca767-31989814358179840"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
+ "img": {
+ "src": ""
+ },
+ "title": "Alexandre Monnin: #rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
+ "color": "16763904",
+ "polemics": ["REF"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1696000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [44, 86], \"expanded_url\": null}]}, \"text\": \"#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==\", \"created_at\": \"Mon Jan 31 08:19:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"is_translator\": false, \"profile_text_color\": \"634047\", \"followers_count\": 317, \"protected\": false, \"id_str\": \"7409472\", \"profile_background_color\": \"EDECE9\", \"location\": \"Paris\", \"utc_offset\": -10800, \"statuses_count\": 2456, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 441, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296173346/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"following\": null, \"listed_count\": 59}, \"id\": 31989862680764417, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989862680764417\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1696000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "e0b04beb-d86d-4767-9bce-7b20292652cf-31989862680764417"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: #rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1719000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les forums du moyen orient destin\\u00e9s \\u00e0 la base au football sont devenus des forums d'organisation anti gouvernement ! ++\", \"created_at\": \"Mon Jan 31 08:19:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 31, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989961112686592, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989961112686592\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1719000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "28ad17ee-7a32-453a-aeb3-69263c8ad9e2-31989961112686592"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
+ "img": {
+ "src": ""
+ },
+ "title": "Pierre Mounier: Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1720000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [46, 56], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Je suis aux rencontres #RSLN avec Clay Shirky @microsoft\", \"created_at\": \"Mon Jan 31 08:19:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14233770, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 629, \"protected\": false, \"id_str\": \"14233770\", \"profile_background_color\": \"352726\", \"listed_count\": 102, \"utc_offset\": 3600, \"statuses_count\": 2468, \"description\": \"Directeur adjoint du Cl\\u00e9o. Fondateur et principal auteur d'Homo Numericus.\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/52135065/pmounier_bd_moyen_normal.gif\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/190199985/twilk_background_4d287d7ccb851.jpg\", \"name\": \"Pierre Mounier\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 10, \"screen_name\": \"piotrr70\", \"url\": \"http://pierremounier.net\", \"created_at\": \"Thu Mar 27 08:45:11 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31989963117568000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989963117568000\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1720000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ab421284-1030-445c-9513-0dd3ca060bcc-31989963117568000"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "[Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "[Enikao]: [Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1723000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [126, 134], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [135, 140], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont all\\u00e9s y parler des le\\u00e7ons de Sidibouzid\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:19:39 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Seesmic Desktop \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3031, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9113, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31989978137370624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989978137370624\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1723000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "2fbb7622-d712-42be-9c54-45d3c0c7fcf8-31989978137370624"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "#rsln ?? Technology = Politique ?",
+ "img": {
+ "src": ""
+ },
+ "title": "Samuel Huron: #rsln ?? Technology = Politique ?",
+ "color": "16763904",
+ "polemics": ["Q"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1747000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln ?? Technology = Politique ?\", \"created_at\": \"Mon Jan 31 08:20:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for Android \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1668, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31990076544131074, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990076544131074\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1747000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "65db3699-f88b-49af-8a2f-94ae92352adf-31990076544131074"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Lionel Natarianni: Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
+ "color": "16763904",
+ "polemics": ["OK"],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1753000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky\", \"created_at\": \"Mon Jan 31 08:20:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"TweetDeck \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1600, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 13}, \"id\": 31990101542182912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990101542182912\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1753000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "68aee21b-5de2-4201-b3fd-bc5c557eabfc-31990101542182912"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "img": {
+ "src": ""
+ },
+ "title": "tibo c: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1758000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Annotation pol\\u00e9mique par tweeter \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:20:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 32, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31990124346613762, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31990124346613762\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1758000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "588e89ba-3873-41d9-bd0e-9717b3ae6dc9-31990124346613762"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
+ "img": {
+ "src": ""
+ },
+ "title": "Cyril Attias: @SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1766000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [107, 112], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN\", \"created_at\": \"Mon Jan 31 08:20:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31987261545390080\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36333549\", \"source\": \"Twitter for iPad \", \"in_reply_to_status_id\": 31987261545390080, \"in_reply_to_screen_name\": \"SaneFive\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1944301, \"verified\": false, \"profile_sidebar_fill_color\": \"d0d0d0\", \"is_translator\": false, \"profile_text_color\": \"2d2d2d\", \"followers_count\": 3141, \"protected\": false, \"id_str\": \"1944301\", \"profile_background_color\": \"ffffff\", \"location\": \"Paris - France\", \"utc_offset\": 3600, \"statuses_count\": 6560, \"description\": \"French blogger, digital expert \\r\\n10 years on digital agency - Ogilvy Paris, TBWA\\\\PARIS - CEO at influence digitale, l'agence des m\\u00e9dias sociaux @1fluencedigital\", \"friends_count\": 1768, \"profile_link_color\": \"28b4ec\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1175910852/cattias_gravatar_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/167329311/new_twitter_theme_def2.jpg\", \"name\": \"Cyril Attias\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 40, \"screen_name\": \"cyril\", \"url\": \"http://www.attias.net/blog\", \"created_at\": \"Thu Mar 22 22:10:39 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"28b4ec\", \"following\": null, \"listed_count\": 295}, \"id\": 31990155749363712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990155749363712\", \"in_reply_to_user_id\": 36333549}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1766000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "ee49a97b-e106-4233-9e28-294798e90527-31990155749363712"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "img": {
+ "src": ""
+ },
+ "title": "Em. de Saint-Bon: RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1767000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Twitter for iPhone \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}, {\"indices\": [113, 121], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:20:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"Echofon \", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"listed_count\": 116, \"utc_offset\": 3600, \"statuses_count\": 1920, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"location\": \"iPhone: 48.845192,2.237256\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null}, \"id\": 31990160874799105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990160874799105\", \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1767000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "c89eea8d-e31e-4783-89b9-a682750f3e58-31990160874799105"
+ }, {
+ "content": {
+ "mimetype": "application/x-ldt-structured",
+ "description": "Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
+ "img": {
+ "src": ""
+ },
+ "title": "Alexis MONS: Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
+ "color": "16763904",
+ "polemics": [],
+ "audio": {
+ "mimetype": "audio/mp3",
+ "src": "",
+ "href": null
+ }
+ },
+ "begin": 1778000,
+ "meta": {
+ "dc:contributor": "perso",
+ "dc:source": {
+ "mimetype": "application/json",
+ "url": "http://dev.twitter.com",
+ "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1147131, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"profile_text_color\": \"333333\", \"followers_count\": 675, \"protected\": false, \"location\": \"Limoges, France\", \"profile_background_color\": \"022330\", \"id_str\": \"1147131\", \"utc_offset\": 3600, \"statuses_count\": 1524, \"description\": \"Cofounder and VP Strategy of groupeReflect\", \"friends_count\": 321, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/304999987/AM2009_normal.jpeg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296156503/images/themes/theme15/bg.png\", \"name\": \"Alexis MONS\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 11, \"screen_name\": \"AlecM\", \"notifications\": null, \"url\": \"http://about.me/alexismons\", \"created_at\": \"Wed Mar 14 09:44:56 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 50}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [9, 14], \"text\": \"RSLN\"}], \"urls\": [{\"indices\": [58, 76], \"url\": \"http://ht.ly/3N4Ma\", \"expanded_url\": null}]}, \"contributors\": null, \"truncated\": false, \"text\": \"Le d\\u00e9bat #RSLN - Le livre num\\u00e9rique, c\\u2019est pour bient\\u00f4t ? http://ht.ly/3N4Ma\", \"created_at\": \"Mon Jan 31 08:20:34 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31990208165576705, \"source\": \"HootSuite \", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31990208165576705\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
+ },
+ "dc:creator": "perso",
+ "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ },
+ "end": 1778000,
+ "tags": null,
+ "color": "16763904",
+ "media": "9a493932-3053-11e0-862b-00145ea49a02",
+ "id": "a99b2916-cd16-4322-af47-e14a862e5241-31990208165576705"
+ }
+ ],
+ "annotation-types": [
+ {
+ "dc:contributor": "perso",
+ "dc:creator": "perso",
+ "dc:title": "chapitrage",
+ "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
+ "dc:created": "2012-05-07T10:11:06.721324",
+ "dc:description": "",
+ "dc:modified": "2012-05-07T10:11:06.721324"
+ }, {
+ "dc:contributor": "perso",
+ "dc:creator": "perso",
+ "dc:title": "Tweets",
+ "id": "16b010ab-9050-4d8d-8082-3803031b0499",
+ "dc:created": "2012-05-07T10:11:06.746777",
+ "dc:description": "Tweets",
+ "dc:modified": "2012-05-07T10:11:06.746777"
+ }
+ ]
+}
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/jwplayer.htm
--- a/test/jwplayer.htm Fri May 04 16:56:41 2012 +0200
+++ b/test/jwplayer.htm Mon May 07 15:25:52 2012 +0200
@@ -1,69 +1,21 @@
-
-
+
+
-
-Metadataplayer - Test with JwPlayer
-
+
+ Metadataplayer test with JwPlayer
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+ Metadataplayer test with JwPlayer
+
+
+
+
+
diff -r d35ad8111c5e -r 10233337f6da test/test-config.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/test-config.js Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,45 @@
+function testConfig(_urlMetadata, _useLocalBuild) {
+ _useLocalBuild = (typeof _useLocalBuild !== "undefined" && _useLocalBuild)
+ IriSP.libFiles.defaultDir = _useLocalBuild ? "libs/" : "../src/js/libs/";
+ IriSP.widgetsDir = _useLocalBuild ? "metadataplayer" : "../src/widgets";
+ var _metadata = {
+ url: _urlMetadata,
+ format: 'ldt'
+ };
+ var _config = {
+ gui: {
+ width : 620,
+ container : 'LdtPlayer',
+ default_options: {
+ metadata: _metadata
+ },
+ css : _useLocalBuild ? 'metadataplayer/LdtPlayer-core.css' : '../src/css/LdtPlayer-core.css',
+ widgets: [
+ { type: "Sparkline" },
+ { type: "Slider" },
+ { type: "Controller" },
+ { type: "Polemic" },
+ { type: "Segments" },
+ { type: "Arrow" },
+ { type: "Annotation" },
+ { type: "Tweet" },
+ { type: "Tagcloud" },
+ {
+ type: "AnnotationsList",
+ container: "AnnotationsListContainer"
+ },
+ { type: "Mediafragment"}
+ ]
+ },
+ player:{
+ type:'auto',
+ live: true,
+ height: 350,
+ width: 620,
+ provider: "rtmp",
+ autostart: true
+ }
+ };
+
+ return new IriSP.Metadataplayer(_config, _metadata);
+}
diff -r d35ad8111c5e -r 10233337f6da test/test-youtube.json
--- a/test/test-youtube.json Fri May 04 16:56:41 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,461 +0,0 @@
-{
- "tags": [
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.147547",
- "dc:title": "suffrage universel",
- "dc:modified": "2010-09-15T15:28:02.147547",
- "dc:creator": "IRI"
- },
- "id": "d4000614-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.148547",
- "dc:title": "Patrick Rogiers",
- "dc:modified": "2010-09-15T15:28:02.148547",
- "dc:creator": "IRI"
- },
- "id": "d4002126-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.145004",
- "dc:title": "Kirgistan",
- "dc:modified": "2010-09-15T15:28:02.145004",
- "dc:creator": "IRI"
- },
- "id": "d3ff94ae-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.146232",
- "dc:title": "Alphonse Baudin",
- "dc:modified": "2010-09-15T15:28:02.146232",
- "dc:creator": "IRI"
- },
- "id": "d3ffbf06-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.147547",
- "dc:title": "mandats rétribués",
- "dc:modified": "2010-09-15T15:28:02.147547",
- "dc:creator": "IRI"
- },
- "id": "d3fffa02-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.148547",
- "dc:title": "Belgique",
- "dc:modified": "2010-09-15T15:28:02.148547",
- "dc:creator": "IRI"
- },
- "id": "d400197e-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.146745",
- "dc:title": "18juin",
- "dc:modified": "2010-09-15T15:28:02.146745",
- "dc:creator": "IRI"
- },
- "id": "d3ffd32e-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.148547",
- "dc:title": "Wallons",
- "dc:modified": "2010-09-15T15:28:02.148547",
- "dc:creator": "IRI"
- },
- "id": "d4002874-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.149993",
- "dc:title": "theatre.doc",
- "dc:modified": "2010-09-15T15:28:02.149993",
- "dc:creator": "IRI"
- },
- "id": "d40051f0-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.146745",
- "dc:title": "marée noire",
- "dc:modified": "2010-09-15T15:28:02.146745",
- "dc:creator": "IRI"
- },
- "id": "d3ffde82-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.148547",
- "dc:title": "Flamands",
- "dc:modified": "2010-09-15T15:28:02.148547",
- "dc:creator": "IRI"
- },
- "id": "d4001d70-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.147547",
- "dc:title": "Auguste Baudin",
- "dc:modified": "2010-09-15T15:28:02.147547",
- "dc:creator": "IRI"
- },
- "id": "d3fff26e-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.145004",
- "dc:title": "retraite",
- "dc:modified": "2010-09-15T15:28:02.145004",
- "dc:creator": "IRI"
- },
- "id": "d3ff9d3c-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.147547",
- "dc:title": "financement politique",
- "dc:modified": "2010-09-15T15:28:02.147547",
- "dc:creator": "IRI"
- },
- "id": "d3fff656-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.146745",
- "dc:title": "Bloody Sunday",
- "dc:modified": "2010-09-15T15:28:02.146745",
- "dc:creator": "IRI"
- },
- "id": "d3ffd716-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.148547",
- "dc:title": "éléction",
- "dc:modified": "2010-09-15T15:28:02.148547",
- "dc:creator": "IRI"
- },
- "id": "d4002c2a-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.147547",
- "dc:title": "suffrage directs",
- "dc:modified": "2010-09-15T15:28:02.147547",
- "dc:creator": "IRI"
- },
- "id": "d400022c-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.148547",
- "dc:title": "vuvuzela",
- "dc:modified": "2010-09-15T15:28:02.148547",
- "dc:creator": "IRI"
- },
- "id": "d40024c8-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.146745",
- "dc:title": "Domenech",
- "dc:modified": "2010-09-15T15:28:02.146745",
- "dc:creator": "IRI"
- },
- "id": "d3ffdacc-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.149511",
- "dc:title": "sociologie du sport",
- "dc:modified": "2010-09-15T15:28:02.149511",
- "dc:creator": "IRI"
- },
- "id": "d4003f12-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.145004",
- "dc:title": "Mondiale",
- "dc:modified": "2010-09-15T15:28:02.145004",
- "dc:creator": "IRI"
- },
- "id": "d3ff997c-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-09-15T15:28:02.147547",
- "dc:title": "professionalisation de la politique",
- "dc:modified": "2010-09-15T15:28:02.147547",
- "dc:creator": "IRI"
- },
- "id": "d3fffdae-c0dd-11df-bfff-00145ea4a2be"
- }
- ],
- "views": null,
- "lists": [
- {
- "items": [
- {
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560"
- },
- {
- "id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795"
- },
- {
- "id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831"
- },
- {
- "id-ref": "c_DE60F95E-73B8-922D-3AC7-6FB197A1BF16"
- }
- ],
- "meta": {
- "dc:contributor": "undefined",
- "dc:created": "2010-09-15T15:28:02.144361",
- "dc:creator": "perso",
- "id-ref": "franceculture_retourdudimanche20100620",
- "dc:title": "Découpages personnels",
- "editable": "false",
- "dc:modified": "2010-09-15T15:28:02.144361",
- "dc:description": ""
- },
- "id": "ens_perso"
- }
- ],
- "medias": [
- {
- "origin": "0",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "href": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/franceculture/franceculture_retourdudimanche20100620.flv",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2010-06-25T16:58:36.186952",
- "dc:duration": 603000,
- "dc:creator": "onubufonu",
- "dc:created.contents": "2010-06-25",
- "dc:title": "Andrei Tarkovsky interview part 1 ",
- "dc:creator.contents": "IRI",
- "dc:modified": "2010-06-25T16:58:36.187009",
- "dc:description": "Test Youtube local example with Json"
- },
- "id": "franceculture_retourdudimanche20100620",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2010-07-12T00:30:40.272719",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "franceculture_retourdudimanche20100620"
- },
- "dc:description": "",
- "dc:title": "RetourDimanche20juin_decoupageChronique",
- "id": "ef4dcc2e-8d3b-11df-8a24-00145ea4a2be",
- "dc:modified": "2010-09-13T11:07:51.331011"
- },
- "annotations": [
- {
- "begin": 202000,
- "end": 252000,
- "tags": [
- {
- "id-ref": "d3ff94ae-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "id-ref": "d3ff997c-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "id-ref": "d3ff9d3c-c0dd-11df-bfff-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "color": "6684774",
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- },
- "description": "",
- "title": "Générique"
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-09-15T15:28:02.144394",
- "dc:modified": "2010-09-15T15:28:02.144394",
- "dc:creator": "perso"
- },
- "id": "s_38948-15F4-E7CB-EBC5-6FB51DAC635C"
- },
- {
- "begin": 50000,
- "end": 182000,
- "tags": [
- {
- "id-ref": "d3ff94ae-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "id-ref": "d3ff997c-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "id-ref": "d3ff9d3c-c0dd-11df-bfff-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "color": "16776960",
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- },
- "description": "",
- "title": "Générique"
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-09-15T15:28:02.144394",
- "dc:modified": "2010-09-15T15:28:02.144394",
- "dc:creator": "perso"
- },
- "id": "s_38978-15F4-E7CB-EBC5-6FB51DAC635C"
- },
- {
- "begin": 2,
- "end": 12000,
- "tags": [
- {
- "id-ref": "d3ff94ae-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "id-ref": "d3ff997c-c0dd-11df-bfff-00145ea4a2be"
- },
- {
- "id-ref": "d3ff9d3c-c0dd-11df-bfff-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "color": "16776960",
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- },
- "description": "",
- "title": "Générique"
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-09-15T15:28:02.144394",
- "dc:modified": "2010-09-15T15:28:02.144394",
- "dc:creator": "perso"
- },
- "id": "s_32C565F4-15F4-E7CB-EBC5-6FB51DAC635C"
- },
- {
- "begin": 25000,
- "end": 35000,
- "tags": null,
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "color": "6684774",
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- },
- "description": "description de test ...",
- "title": "Sommaire"
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-09-15T15:28:02.144394",
- "dc:modified": "2010-09-15T15:28:02.144394",
- "dc:creator": "perso"
- },
- "id": "s_8F385150-64B3-7539-AB94-6FB51DAC40B4"
- }
-
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Chapitrage Notes",
- "id": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-09-15T15:28:02.144394",
- "dc:description": "",
- "dc:modified": "2010-09-15T15:28:02.144394"
- },
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Mes notes",
- "id": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-09-15T15:28:02.150138",
- "dc:description": "",
- "dc:modified": "2010-09-15T15:28:02.150138"
- },
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Mes notes",
- "id": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-09-15T15:28:02.159006",
- "dc:description": "",
- "dc:modified": "2010-09-15T15:28:02.159006"
- },
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Chapitrage",
- "id": "c_DE60F95E-73B8-922D-3AC7-6FB197A1BF16",
- "dc:created": "2010-09-15T15:28:02.163372",
- "dc:description": "",
- "dc:modified": "2010-09-15T15:28:02.163372"
- }
- ]
-}
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/test.css
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test/test.css Mon May 07 15:25:52 2012 +0200
@@ -0,0 +1,56 @@
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+
+img a {
+ border: none;
+}
+
+body {
+ background-color: #F7F6F6;
+ color: #003050;
+}
+
+body, p, h1, h2, h3 {
+ font-family: 'Open Sans', Helvetica, Arial, sans-serif;
+}
+
+h1 {
+ margin: 5px 0; text-align: center; font-size: 24px;
+}
+
+ul.pageindex {
+ font-size: 20px; padding-left: 25px; list-style: disc;
+}
+
+h2 {
+ font-size: 20px; margin: 5px 0;
+}
+
+#LdtPlayer {
+ float: left;
+ margin: 10px;
+}
+
+#AnnotationsListContainer {
+ float: left;
+ width: 400px;
+ margin: 10px 0;
+}
diff -r d35ad8111c5e -r 10233337f6da test/test.json
--- a/test/test.json Fri May 04 16:56:41 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,588 +0,0 @@
-{
- "views": [
- {
- "id": "0",
- "contents": [
- "franceculture_retourdudimanche20100620"
- ],
- "annotation_types": [
- "c_1F07824B-F512-78A9-49DB-6FB51DAB9560"
- ]
- }
- ],
- "tags": [
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.326514",
- "dc:title": "suffrage universel",
- "dc:modified": "2011-10-20T13:36:18.326514",
- "dc:creator": "IRI"
- },
- "id": "7d72256a-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.327979",
- "dc:title": "Patrick Rogiers",
- "dc:modified": "2011-10-20T13:36:18.327979",
- "dc:creator": "IRI"
- },
- "id": "7d724c34-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.287561",
- "dc:title": "Kirgistan",
- "dc:modified": "2011-10-20T13:36:18.287561",
- "dc:creator": "IRI"
- },
- "id": "7d6d2b00-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.310463",
- "dc:title": "Alphonse Baudin",
- "dc:modified": "2011-10-20T13:36:18.310463",
- "dc:creator": "IRI"
- },
- "id": "7d709786-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.326514",
- "dc:title": "mandats rétribués",
- "dc:modified": "2011-10-20T13:36:18.326514",
- "dc:creator": "IRI"
- },
- "id": "7d72126e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.327979",
- "dc:title": "Belgique",
- "dc:modified": "2011-10-20T13:36:18.327979",
- "dc:creator": "IRI"
- },
- "id": "7d7242ac-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.318374",
- "dc:title": "18juin",
- "dc:modified": "2011-10-20T13:36:18.318374",
- "dc:creator": "IRI"
- },
- "id": "7d71c9bc-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.327979",
- "dc:title": "Wallons",
- "dc:modified": "2011-10-20T13:36:18.327979",
- "dc:creator": "IRI"
- },
- "id": "7d7254c2-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.330042",
- "dc:title": "theatre.doc",
- "dc:modified": "2011-10-20T13:36:18.330042",
- "dc:creator": "IRI"
- },
- "id": "7d72932e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.318374",
- "dc:title": "marée noire",
- "dc:modified": "2011-10-20T13:36:18.318374",
- "dc:creator": "IRI"
- },
- "id": "7d71e3a2-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.327979",
- "dc:title": "Flamands",
- "dc:modified": "2011-10-20T13:36:18.327979",
- "dc:creator": "IRI"
- },
- "id": "7d724734-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.326514",
- "dc:title": "Auguste Baudin",
- "dc:modified": "2011-10-20T13:36:18.326514",
- "dc:creator": "IRI"
- },
- "id": "7d7209ea-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.287561",
- "dc:title": "retraite",
- "dc:modified": "2011-10-20T13:36:18.287561",
- "dc:creator": "IRI"
- },
- "id": "7d6f4c82-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.326514",
- "dc:title": "financement politique",
- "dc:modified": "2011-10-20T13:36:18.326514",
- "dc:creator": "IRI"
- },
- "id": "7d720e5e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.318374",
- "dc:title": "Bloody Sunday",
- "dc:modified": "2011-10-20T13:36:18.318374",
- "dc:creator": "IRI"
- },
- "id": "7d71d9ac-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.327979",
- "dc:title": "éléction",
- "dc:modified": "2011-10-20T13:36:18.327979",
- "dc:creator": "IRI"
- },
- "id": "7d7258d2-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.326514",
- "dc:title": "suffrage directs",
- "dc:modified": "2011-10-20T13:36:18.326514",
- "dc:creator": "IRI"
- },
- "id": "7d7220d8-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.327979",
- "dc:title": "vuvuzela",
- "dc:modified": "2011-10-20T13:36:18.327979",
- "dc:creator": "IRI"
- },
- "id": "7d72509e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.318374",
- "dc:title": "Domenech",
- "dc:modified": "2011-10-20T13:36:18.318374",
- "dc:creator": "IRI"
- },
- "id": "7d71df24-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.329294",
- "dc:title": "sociologie du sport",
- "dc:modified": "2011-10-20T13:36:18.329294",
- "dc:creator": "IRI"
- },
- "id": "7d727600-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.287561",
- "dc:title": "Mondiale",
- "dc:modified": "2011-10-20T13:36:18.287561",
- "dc:creator": "IRI"
- },
- "id": "7d6e3cfc-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-10-20T13:36:18.326514",
- "dc:title": "professionalisation de la politique",
- "dc:modified": "2011-10-20T13:36:18.326514",
- "dc:creator": "IRI"
- },
- "id": "7d721688-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "lists": [
- {
- "items": [
- {
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560"
- }
- ],
- "meta": {
- "dc:contributor": "undefined",
- "dc:created": "2011-10-20T13:36:18.286662",
- "dc:creator": "perso",
- "id-ref": "franceculture_retourdudimanche20100620",
- "dc:title": "Découpages personnels",
- "editable": "false",
- "dc:modified": "2011-10-20T13:36:18.286662",
- "dc:description": ""
- },
- "id": "ens_perso"
- }
- ],
- "medias": [
- {
- "origin": "0",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "href": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/franceculture/franceculture_retourdudimanche20100620.flv",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2010-06-25T16:58:36.186952",
- "dc:duration": 3016000,
- "dc:creator": "IRI",
- "dc:created.contents": "2010-09-21",
- "dc:title": "FC Retour du dimanche 2010-06-20",
- "dc:creator.contents": "IRI",
- "dc:modified": "2010-09-21T08:43:53.879491",
- "dc:description": "France Culture. Retour du dimanche 2010-06-20"
- },
- "id": "franceculture_retourdudimanche20100620",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2010-07-12T00:30:40.272719",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "franceculture_retourdudimanche20100620"
- },
- "dc:description": "",
- "dc:title": "RetourDimanche20juin_decoupageChronique",
- "id": "ef4dcc2e-8d3b-11df-8a24-00145ea4a2be",
- "dc:modified": "2010-11-24T13:08:14.725715"
- },
- "annotations": [
- {
- "begin": "0",
- "end": 88414,
- "tags": [
- {
- "id-ref": "7d6d2b00-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d6e3cfc-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d6f4c82-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Générique",
- "color": "16776960",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_32C565F4-15F4-E7CB-EBC5-6FB51DAC635C"
- },
- {
- "begin": "88422",
- "end": 169831,
- "tags": null,
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Sommaire",
- "color": "6684774",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_8F385150-64B3-7539-AB94-6FB51DAC40B4"
- },
- {
- "begin": "170235",
- "end": 316123,
- "tags": [
- {
- "id-ref": "7d709786-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "L'invité : Alain Guarrigue, sur Alphonse Baudin",
- "title": "Présentation de l'invité - Alain Garrigou",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_948A7C82-DD23-8CAC-27D4-6FB51DAC7D41"
- },
- {
- "begin": "316720",
- "end": 694781,
- "tags": [
- {
- "id-ref": "7d71c9bc-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d71d9ac-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d71df24-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d71df24-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d71e3a2-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Revue d'actualité - Hervé Gardette",
- "color": "6736896",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_54DB840E-01AC-D042-37E2-B2BA1E18B47C"
- },
- {
- "begin": "695261",
- "end": 1772062,
- "tags": [
- {
- "id-ref": "7d7209ea-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d720e5e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d72126e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d721688-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d7220d8-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d72256a-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Invité spécial - Alain Garrigou",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_BDB0677D-DBF9-D198-896B-B2BDB9012D54"
- },
- {
- "begin": "1772707",
- "end": 2515173,
- "tags": [
- {
- "id-ref": "7d7242ac-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d724734-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d724c34-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d72509e-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d7254c2-fb20-11e0-a90c-00145ea4a2be"
- },
- {
- "id-ref": "7d7258d2-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Revue de presse - Hervé Gardette",
- "color": "6749952",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_3FC1D037-34A3-FEF7-541C-B2C31ED973A8"
- },
- {
- "begin": "2516091",
- "end": 2646767,
- "tags": [
- {
- "id-ref": "7d727600-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Le sujet de l'invité : la sociologie du sport - Alain Garrigou",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_82613B88-9578-DC2C-D7D0-B2C5BE0B7BDA"
- },
- {
- "begin": "2647012",
- "end": 3012503,
- "tags": [
- {
- "id-ref": "7d72932e-fb20-11e0-a90c-00145ea4a2be"
- }
- ],
- "media": "franceculture_retourdudimanche20100620",
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "title": "Chronique du Courrier International - Antony Bélanger",
- "color": "16776960",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:modified": "2011-10-20T13:36:18.286693",
- "dc:creator": "perso"
- },
- "id": "s_24324ACF-E8D0-46FE-E977-B2C7D1A1FBAA"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Chapitrage Notes",
- "id": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2011-10-20T13:36:18.286693",
- "dc:description": "",
- "dc:modified": "2011-10-20T13:36:18.286693"
- }
- ]
-}
\ No newline at end of file
diff -r d35ad8111c5e -r 10233337f6da test/youtube.htm
--- a/test/youtube.htm Fri May 04 16:56:41 2012 +0200
+++ b/test/youtube.htm Mon May 07 15:25:52 2012 +0200
@@ -1,64 +1,20 @@
-
-
-
-
-Metadataplayer test with Youtube
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+ Metadataplayer test with Youtube
+
+
+
+
+
+
+
+ Metadataplayer test with Youtube
+
+
+
+
+