# HG changeset patch # User veltr # Date 1334155143 -7200 # Node ID 41c574c807d132d3453297327ca400498990a6b5 # Parent 29f28a9f236f1256a6109565cd721aace00475c2 basic implementation of model: media, annotation type, annotation diff -r 29f28a9f236f -r 41c574c807d1 src/js/model.js --- a/src/js/model.js Fri Apr 06 19:13:08 2012 +0200 +++ b/src/js/model.js Wed Apr 11 16:39:03 2012 +0200 @@ -1,66 +1,399 @@ /* model.js is where data is stored in a standard form, whatever the serializer */ -IriSP.Cinelab = { - STATUS_WAITING : 1, - STATUS_READY : 2 +IriSP.Model = { + SOURCE_STATUS_EMPTY : 0, + SOURCE_STATUS_WAITING : 1, + SOURCE_STATUS_READY : 2, + IDS_AUTO_INCREMENT : 0, + IDS_PREFIX : 'autoid-' +} + +/* */ + +IriSP.Model.List = function() { + this.contents = {}; +} + +IriSP.Model.List.prototype.toString = function() { + return 'List of Elements, length=' + this.length(); +} + +IriSP.Model.List.prototype.keys = function() { + return IriSP._(this.contents).keys(); +} + +IriSP.Model.List.prototype.length = function() { + return this.keys().length; +} + +IriSP.Model.List.prototype.getElement = function(_id) { + return this.contents[_id]; +} + +IriSP.Model.List.prototype.getFirst = function() { + return this.contents(this.keys()[0]); +} + +IriSP.Model.List.prototype.each = function(_callback) { + var _this = this; + IriSP._(this.contents).each(function(_element, _id) { + _callback.call(_this, _element, _id); + }); +} + +IriSP.Model.List.prototype.map = function(_callback) { + var _this = this; + return IriSP._(this.contents).map(function(_element, _id) { + return _callback.call(_this, _element, _id); + }); +} + +IriSP.Model.List.prototype.addElement = function(_element) { + if ( typeof _element.id === "undefined" ) { + IriSP.Model.AUTO_INCREMENT++; + _element.id = IriSP.Model.IDS_PREFIX + IriSP.Model.IDS_AUTO_INCREMENT; + } + this.contents[_element.id] = _element; + if ( this.hasParent ) { + this.parent.addElement(_element); + } +} + +IriSP.Model.List.prototype.addElements = function(_list) { + var _this = this; + _list.each(function(_element) { + _this.addElement(_element); + }); +} +/* */ + +IriSP.Model.Time = function(_milliseconds) { + this.milliseconds = parseInt(typeof _milliseconds !== "undefined" ? _milliseconds : 0); +} + +IriSP.Model.Time.prototype.setSeconds = function(_seconds) { + this.milliseconds = 1000 * _seconds; +} + +IriSP.Model.Time.prototype.getSeconds = function() { + return Math.floor(this.milliseconds / 1000); +} + +IriSP.Model.Time.prototype.getHMS = function() { + var _totalSeconds = Math.abs(this.getSeconds()); + return { + hours : Math.floor(_totalSeconds / 3600), + minutes : (Math.floor(_totalSeconds / 60) % 60), + seconds : _totalSeconds % 60 + } +} + +IriSP.Model.Time.prototype.toString = function() { + function pad(_n) { + var _res = _n.toString(); + while (_res.length < 2) { + _res = '0' + _res; + } + return _res; + } + var _hms = this.getHMS(), + _res = ''; + if (_hms.hours) { + _res += pad(_hms.hours) + ':' + } + _res += pad(_hms.minutes) + ':' + pad(_hms.seconds); + return _res; +} + +IriSP.Model.BrokenReference = function(_elementType, _idRef) { + this.id = _idRef; + this.elementType = 'brokenReference'; + this.originalElementType = _elementType; + this.isSolved = false; +} + +IriSP.Model.BrokenReference.prototype.toString = function() { + return 'Broken reference to ' + IriSP.Model.ELEMENT_TYPES[_elementType].element_str + ', id=' + this.id; +} + +IriSP.Model.BrokenReference.prototype.tryToSolve = function(_container) { + if (this.isSolved) { + return this.solution; + } + var _obj = _container.getElement(this.originalElementType, this.id); + if (typeof _obj !== "undefined") { + this.isSolved = true; + this.solution = _obj; + return this.solution; + } else { + return undefined; + } +} + +/* */ + +IriSP.Model.Element = function(_id, _source) { + this.elementType = 'element'; + if (typeof _id === "undefined") { + IriSP.Model.IDS_AUTO_INCREMENT++; + this.id = IriSP.Model.IDS_PREFIX + IriSP.Model.AUTO_INCREMENT; + } else { + this.id = _id; + } + this.source = _source; + this.title = ""; + this.description = ""; +} + +IriSP.Model.Element.prototype.toString = function() { + return this.elementType + ', id=' + this.id + ', title="' + this.title + '"'; +} + +IriSP.Model.Element.prototype.getReference = function(_container, _elementType, _idRef) { + var _obj = _container.getElement(_elementType, _idRef); + if (typeof _obj === "undefined") { + _obj = new IriSP.Model.BrokenReference(_elementType, _idRef); + } + _obj.backReference(this); + return _obj; } -IriSP.Cinelab.Source = function(_directory, _url, _serializer) { - this.status = IriSP.Cinelab.STATUS_EMPTY; +IriSP.Model.Element.prototype.backReference = function(_object) { + if (typeof this.referencedBy === "undefined") { + this.referencedBy = {} + } + if (typeof this.referencedBy[_object.elementType] === "undefined") { + this.referencedBy[_object.elementType] = new IriSP.Model.List(); + } + this.referencedBy[_object.elementType].addElement(_object); +} + +IriSP.Model.Element.prototype.otmCrossReference = function(_container, _elementType, _idRef) { + if (typeof this.referencing === "undefined") { + this.referencing = {}; + } + this.referencing[_elementType] = this.getReference(_container, _elementType, _idRef); +} + +IriSP.Model.Element.prototype.mtmCrossReference = function(_container, _elementType, _idRefList) { + if (typeof this.referencing === "undefined") { + this.referencing = {}; + } + this.referencing[_elementType] = new IriSP.Model.List; + for (var _i = 0; _i < _idRefList.length; _i++) { + this.referencing[_elementType].addElement(this.getReference(_container, _elementType, _idRefList[_i])); + } +} +/* */ + +IriSP.Model.Media = function(_id, _source) { + IriSP.Model.Element.call(this, _id, _source); + this.elementType = 'media'; + this.duration = new IriSP.Model.Time(); + this.url = ''; +} + +IriSP.Model.Media.prototype = new IriSP.Model.Element(null); + +IriSP.Model.Media.prototype.setDuration = function(_durationMs) { + this.duration.milliseconds = _durationMs; +} + +/* */ + +IriSP.Model.AnnotationType = function(_id, _source) { + IriSP.Model.Element.call(this, _id, _source); + this.elementType = 'annotationType'; +} + +IriSP.Model.AnnotationType.prototype = new IriSP.Model.Element(null); + +/* Annotation + * */ + +IriSP.Model.Annotation = function(_id, _source) { + IriSP.Model.Element.call(this, _id, _source); + this.elementType = 'annotation'; + this.begin = new IriSP.Model.Time(); + this.end = new IriSP.Model.Time(); +} + +IriSP.Model.Annotation.prototype = new IriSP.Model.Element(null); + +IriSP.Model.Annotation.prototype.setBegin = function(_beginMs) { + this.begin.milliseconds = _beginMs; +} + +IriSP.Model.Annotation.prototype.setEnd = function(_beginMs) { + this.end.milliseconds = _beginMs; +} + +IriSP.Model.Annotation.prototype.setMedia = function(_idRef, _container) { + this.otmCrossReference(_container, "media" , _idRef); +} + +IriSP.Model.Annotation.prototype.getMedia = function() { + return this.referencing.media; +} + +IriSP.Model.Annotation.prototype.setAnnotationType = function(_idRef, _container) { + this.otmCrossReference(_container, "annotationType" , _idRef); +} + +IriSP.Model.Annotation.prototype.getAnnotationType = function() { + return this.referencing.annotation_type; +} + +/* A Container contains lists of elements. It corresponds to the root of Cinelab + * */ + +IriSP.Model.Container = function(_parent) { + this.hasParent = (typeof _parent !== "undefined"); + if (this.hasParent) { + this.parent = _parent; + } + this.contents = {} +} + +IriSP.Model.Container.prototype.each = function(_callback) { + var _this = this; + IriSP._(this.contents).each(function(_element, _id) { + _callback.call(_this, _element, _id); + }); +} + +IriSP.Model.Container.prototype.map = function(_callback) { + var _this = this; + return IriSP._(this.contents).map(function(_element, _id) { + return _callback.call(_this, _element, _id); + }); +} + +IriSP.Model.Container.prototype.addList = function(_listId, _contents) { + if (this.hasParent) { + this.parent.addList(_listId, _contents); + } + if (typeof this.contents[_listId] === "undefined") { + this.contents[_listId] = _contents; + } else { + this.contents[_listId].addElements(_contents); + } +} + +IriSP.Model.Container.prototype.getList = function(_listId) { + if (typeof this.contents[_listId] === "undefined") { + if (this.hasParent) { + return this.parent.getList(_listId); + } else { + return undefined; + } + } else { + return this.contents[_listId]; + } +} + +IriSP.Model.Container.prototype.getElement = function(_listId, _elId) { + var _list = this.getList(_listId); + return (typeof _list !== "undefined" ? _list.getElement(_elId) : undefined); +} + +IriSP.Model.Container.prototype.getMedias = function(_contents) { + return this.getList("media"); +} + +IriSP.Model.Container.prototype.getAnnotations = function(_contents) { + return this.getList("annotation"); +} + +IriSP.Model.Container.prototype.setCurrentMediaById = function(_idRef) { + if (typeof _idRef !== "undefined") { + this.currentMedia = this.getElement("media", _idRef); + } +} + +IriSP.Model.Container.prototype.setDefaultCurrentMedia = function() { + if (typeof this.currentMedia === "undefined") { + this.currentMedia = this.getMedias().getFirst(); + } +} + +/* */ + +IriSP.Model.Source = function(_directory, _url, _serializer) { + this.status = IriSP.Model.SOURCE_STATUS_EMPTY; if (typeof _directory === "undefined") { - throw "Error : Cinelab.Source called with no parent directory"; + throw "Error : Model.Source called with no parent directory"; } if (typeof _url === "undefined") { - throw "Error : Cinelab.Source called with no URL"; + throw "Error : Model.Source called with no URL"; } if (typeof _serializer === "undefined") { - throw "Error : Cinelab.Source called with no serializer"; + throw "Error : Model.Source called with no serializer"; } this.directory = _directory; this.serializer = _serializer; this.url = _url; this.callbackQueue = []; - this.contents = null; + this.container = new IriSP.Model.Container(_directory.consolidated); + this.get(); } -IriSP.Cinelab.Source.prototype.get = function() { - IriSP.jQuery.getJSON(_url, function(_result) { - this.contents = this.serializer.deSerialize(_result); - if (this.callbackQueue.length) { - var _this = this; - IriSP._.each(this.callbackQueue, function(_callback) { - _callback.call(_this, this.contents); +IriSP.Model.Source.prototype.get = function() { + this.status = IriSP.Model.SOURCE_STATUS_WAITING; + var _this = this; + IriSP.jQuery.getJSON(this.url, function(_result) { + _this.serializer.deSerialize(_result, _this.container); + if (_this.callbackQueue.length) { + IriSP._.each(_this.callbackQueue, function(_callback) { + _callback.call(_this); }); } - this.callbackQueue = []; + _this.callbackQueue = []; + _this.status = IriSP.Model.SOURCE_STATUS_READY; }); } -IriSP.Cinelab.Source.prototype.addCallback = function(_callback) { - if (this.status === IriSP.Cinelab.STATUS_READY) { - callback.call(this, this.contents); +IriSP.Model.Source.prototype.addCallback = function(_callback) { + if (this.status === IriSP.Model.SOURCE_STATUS_READY) { + callback.call(this); } else { this.callbackQueue.push(_callback); } } -IriSP.Cinelab.Directory = function() { - this.sources = {}; - this.consolidated = []; - this.imports = {}; +IriSP.Model.Source.prototype.getAnnotations = function() { + return this.container.getAnnotations(); } -IriSP.Cinelab.Directory.prototype.addSource = function(_source, _serializer) { - this.source[_source] = new IriSP.Cinelab.Source(this, _source, _serializer); +IriSP.Model.Source.prototype.getMedias = function() { + return this.container.getMedias(); +} + +IriSP.Model.Source.prototype.getCurrentMedia = function() { + return this.container.currentMedia; +} + +IriSP.Model.Source.prototype.getDuration = function() { + return this.getCurrentMedia().duration; } -IriSP.Cinelab.Directory.prototype.getSource = function(_source) { - return (typeof this.sources[_source] !== "undefined" ? this.sources[_source] : false); +/* */ + +IriSP.Model.Directory = function() { + this.sources = {}; + this.imports = {}; + this.consolidated = new IriSP.Model.Container(); } -IriSP.Cinelab.Directory.prototype.source = function(_source, _serializer) { - if (typeof this.sources[_source] !== "undefined") { +IriSP.Model.Directory.prototype.addSource = function(_source, _serializer) { + this.sources[_source] = new IriSP.Model.Source(this, _source, _serializer); +} + +IriSP.Model.Directory.prototype.source = function(_source, _serializer) { + if (typeof this.sources[_source] === "undefined") { this.addSource(_source, _serializer); } - return this.getSource(_source); + return this.sources[_source]; } + +/* */ diff -r 29f28a9f236f -r 41c574c807d1 src/js/serializers/PlatformSerializer.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/js/serializers/PlatformSerializer.js Wed Apr 11 16:39:03 2012 +0200 @@ -0,0 +1,62 @@ +if (typeof IriSP.serializers === "undefined") { + IriSP.serializers = {} +} + +IriSP.serializers.platform = { + deSerialize : function(_data, _container) { + + var _types = [ + { + serialized_name : "medias", + model_name : "media", + deserializer : function(_data) { + var _res = new IriSP.Model.Media(_data.id, _data); + _res.url = _data.href; + _res.title = _data.meta["dc:title"]; + _res.description = _data.meta["dc:description"]; + _res.setDuration(_data.meta["dc:duration"]); + return _res; + } + }, + { + serialized_name : "annotation-types", + model_name : "annotationType", + deserializer : function(_data) { + var _res = new IriSP.Model.AnnotationType(_data.id, _data); + _res.title = _data["dc:title"]; + _res.description = _data["dc:description"]; + return _res; + } + }, + { + serialized_name : "annotations", + model_name : "annotation", + deserializer : function(_data) { + var _res = new IriSP.Model.Annotation(_data.id, _data); + _res.title = _data.content.title; + _res.description = _data.content.description; + _res.setMedia(_data.media, _container); + _res.setAnnotationType(_data.meta["id-ref"], _container); + _res.setBegin(_data.begin); + _res.setEnd(_data.end); + return _res; + } + } + ]; + + IriSP._(_types).each(function(_type) { + if (typeof _data[_type.serialized_name] !== "undefined") { + var _list = new IriSP.Model.List(); + IriSP._(_data[_type.serialized_name]).each(function(_el) { + _list.addElement(_type.deserializer(_el)); + }); + _container.addList(_type.model_name, _list); + } + }); + + if (typeof _data.meta !== "undefined" && typeof _data.meta.main_media !== "undefined" && typeof _data.meta.main_media["id-ref"] !== "undefined") { + _container.setCurrentMediaById(_data.meta.main_media["id-ref"]); + } + _container.setDefaultCurrentMedia(); + } +} \ No newline at end of file diff -r 29f28a9f236f -r 41c574c807d1 test/integration/polemic_fr.json --- a/test/integration/polemic_fr.json Fri Apr 06 19:13:08 2012 +0200 +++ b/test/integration/polemic_fr.json Wed Apr 11 16:39:03 2012 +0200 @@ -1,13148 +1,12369 @@ { -"views": [ -{ -"id": "0", -"contents": [ -"76171168-ff2b-11e0-bfbc-00145ea49a02" -], -"annotation_types": [ -"c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"732b819c-8f83-4458-88f1-242f0e8d3334" -] -} -], -"tags": [ -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.773884", -"dc:title": "PointBBC", -"dc:modified": "2011-11-03T12:44:41.773884", -"dc:creator": "IRI" -}, -"id": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.687456", -"dc:title": "wikimedia", -"dc:modified": "2011-11-03T12:44:41.687456", -"dc:creator": "IRI" -}, -"id": "997cea3e-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.647203", -"dc:title": "culture", -"dc:modified": "2011-11-03T12:44:41.647203", -"dc:creator": "IRI" -}, -"id": "9976c5f0-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.632533", -"dc:title": "metadonnées", -"dc:modified": "2011-11-03T12:44:41.632533", -"dc:creator": "IRI" -}, -"id": "997488b2-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.629832", -"dc:title": "websocial", -"dc:modified": "2011-11-03T12:44:41.629832", -"dc:creator": "IRI" -}, -"id": "99741f4e-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.665634", -"dc:title": "Wikipédia", -"dc:modified": "2011-11-03T12:44:41.665634", -"dc:creator": "IRI" -}, -"id": "99799640-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.728828", -"dc:title": "yes", -"dc:modified": "2011-11-03T12:44:41.728828", -"dc:creator": "IRI" -}, -"id": "99833dee-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.614363", -"dc:title": "numérique", -"dc:modified": "2011-11-03T12:44:41.614363", -"dc:creator": "IRI" -}, -"id": "9971c316-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.710670", -"dc:title": "pointVictorHugo", -"dc:modified": "2011-11-03T12:44:41.710670", -"dc:creator": "IRI" -}, -"id": "99807532-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.743135", -"dc:title": "web", -"dc:modified": "2011-11-03T12:44:41.743135", -"dc:creator": "IRI" -}, -"id": "998569de-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.627754", -"dc:title": "semantique", -"dc:modified": "2011-11-03T12:44:41.627754", -"dc:creator": "IRI" -}, -"id": "9973ce0e-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.715962", -"dc:title": "fablab", -"dc:modified": "2011-11-03T12:44:41.715962", -"dc:creator": "IRI" -}, -"id": "998143a4-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.794282", -"dc:title": "iri", -"dc:modified": "2011-11-03T12:44:41.794282", -"dc:creator": "IRI" -}, -"id": "998d3736-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.768841", -"dc:title": "fanclub", -"dc:modified": "2011-11-03T12:44:41.768841", -"dc:creator": "IRI" -}, -"id": "9989553a-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.715962", -"dc:title": "open", -"dc:modified": "2011-11-03T12:44:41.715962", -"dc:creator": "IRI" -}, -"id": "99814818-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.749727", -"dc:title": "Cyborg", -"dc:modified": "2011-11-03T12:44:41.749727", -"dc:creator": "IRI" -}, -"id": "99866aaa-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.666428", -"dc:title": "wikipedia", -"dc:modified": "2011-11-03T12:44:41.666428", -"dc:creator": "IRI" -}, -"id": "9979b4e0-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.694233", -"dc:title": "transhumanisme", -"dc:modified": "2011-11-03T12:44:41.694233", -"dc:creator": "IRI" -}, -"id": "997df30c-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.606022", -"dc:title": "museoweb", -"dc:modified": "2011-11-03T12:44:41.606022", -"dc:creator": "IRI" -}, -"id": "99708000-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.733070", -"dc:title": "android", -"dc:modified": "2011-11-03T12:44:41.733070", -"dc:creator": "IRI" -}, -"id": "9983dfe2-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.698927", -"dc:title": "victorhugo", -"dc:modified": "2011-11-03T12:44:41.698927", -"dc:creator": "IRI" -}, -"id": "997eaa72-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.760838", -"dc:title": "fabien_gandon", -"dc:modified": "2011-11-03T12:44:41.760838", -"dc:creator": "IRI" -}, -"id": "99881ce2-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.676030", -"dc:title": "empirisme", -"dc:modified": "2011-11-03T12:44:41.676030", -"dc:creator": "IRI" -}, -"id": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.788288", -"dc:title": "nuance", -"dc:modified": "2011-11-03T12:44:41.788288", -"dc:creator": "IRI" -}, -"id": "998c4d80-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.610860", -"dc:title": "métadonnées", -"dc:modified": "2011-11-03T12:44:41.610860", -"dc:creator": "IRI" -}, -"id": "99713aa4-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.610860", -"dc:title": "websemantique", -"dc:modified": "2011-11-03T12:44:41.610860", -"dc:creator": "IRI" -}, -"id": "99713f40-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.621046", -"dc:title": "histoiredesarts", -"dc:modified": "2011-11-03T12:44:41.621046", -"dc:creator": "IRI" -}, -"id": "9972c842-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.625576", -"dc:title": "etalab", -"dc:modified": "2011-11-03T12:44:41.625576", -"dc:creator": "IRI" -}, -"id": "99737c7e-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.681492", -"dc:title": "scalabilité", -"dc:modified": "2011-11-03T12:44:41.681492", -"dc:creator": "IRI" -}, -"id": "997c01dc-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.733070", -"dc:title": "iOs", -"dc:modified": "2011-11-03T12:44:41.733070", -"dc:creator": "IRI" -}, -"id": "9983e424-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.800506", -"dc:title": "c", -"dc:modified": "2011-11-03T12:44:41.800506", -"dc:creator": "IRI" -}, -"id": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.732300", -"dc:title": "Google", -"dc:modified": "2011-11-03T12:44:41.732300", -"dc:creator": "IRI" -}, -"id": "9983c1ec-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.637198", -"dc:title": "Semantic", -"dc:modified": "2011-11-03T12:44:41.637198", -"dc:creator": "IRI" -}, -"id": "99753f32-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.764191", -"dc:title": "EDIT", -"dc:modified": "2011-11-03T12:44:41.764191", -"dc:creator": "IRI" -}, -"id": "99889f96-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.647203", -"dc:title": "websemantic", -"dc:modified": "2011-11-03T12:44:41.647203", -"dc:creator": "IRI" -}, -"id": "9976ce9c-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.796334", -"dc:title": "nepasetromperdecible", -"dc:modified": "2011-11-03T12:44:41.796334", -"dc:creator": "IRI" -}, -"id": "998d8b96-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.638674", -"dc:title": "Teasing", -"dc:modified": "2011-11-03T12:44:41.638674", -"dc:creator": "IRI" -}, -"id": "997578bc-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.735882", -"dc:title": "merci", -"dc:modified": "2011-11-03T12:44:41.735882", -"dc:creator": "IRI" -}, -"id": "99844dba-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.647203", -"dc:title": "Metadonnees", -"dc:modified": "2011-11-03T12:44:41.647203", -"dc:creator": "IRI" -}, -"id": "9976ca6e-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.688234", -"dc:title": "NCO", -"dc:modified": "2011-11-03T12:44:41.688234", -"dc:creator": "IRI" -}, -"id": "997d0898-0619-11e1-9067-00145ea49a02" -}, -{ -"meta": { -"dc:contributor": "IRI", -"dc:created": "2011-11-03T12:44:41.796334", -"dc:title": "mauvaisepolitique", -"dc:modified": "2011-11-03T12:44:41.796334", -"dc:creator": "IRI" -}, -"id": "998d872c-0619-11e1-9067-00145ea49a02" -} -], -"lists": [ -{ -"items": [ -{ -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8" -} -], -"meta": { -"dc:contributor": "undefined", -"dc:created": "2011-11-03T12:44:41.600331", -"dc:creator": "undefined", -"id-ref": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"dc:title": "Découpages personnels", -"editable": "false", -"dc:modified": "2011-11-03T12:44:41.600331", -"dc:description": "" -}, -"id": "g_5B7955E0-0591-69B8-4658-3BBCBF5B15D1" -}, -{ -"items": [ -{ -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334" -} -], -"meta": { -"dc:contributor": "undefined", -"dc:created": "2011-11-03T12:44:41.605027", -"dc:creator": "undefined", -"id-ref": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"dc:title": "Ensemble Twitter", -"editable": "false", -"dc:modified": "2011-11-03T12:44:41.605027", -"dc:description": "Ensemble Twitter" -}, -"id": "tweet_e610a998-f4ba-45c7-9627-2d15c37ede64" -} -], -"medias": [ -{ -"origin": "0", -"http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0", -"href": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/ldtplatform/museologie_inaugurale_20111018_flat.f4v", -"meta": { -"dc:contributor": "IRI", -"item": { -"name": "streamer", -"value": "rtmp://media.iri.centrepompidou.fr/ddc_player/" -}, -"dc:created": "2011-10-25T19:06:47.044514", -"dc:duration": 10876600, -"dc:creator": "IRI", -"dc:created.contents": "2011-10-25", -"dc:title": "Muséologie 2011/2012 - Séance inaugurale", -"dc:creator.contents": "IRI", -"dc:modified": "2011-10-25T19:08:58.915436", -"dc:description": "Séance inaugurale Muséologie 2011/2012" -}, -"id": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"unit": "ms" -} -], -"meta": { -"dc:contributor": "admin", -"dc:created": "2011-10-25T19:10:10.538355", -"dc:creator": "admin", -"main_media": { -"id-ref": "76171168-ff2b-11e0-bfbc-00145ea49a02" -}, -"dc:description": "", -"dc:title": "Muséologie 2011/2012 - Séance inaugurale", -"id": "321ae0b0-ff2c-11e0-95c2-00145ea49a02", -"dc:modified": "2011-10-27T00:37:38.276752" -}, -"annotations": [ -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Co-directeur de l'IRI.", -"img": { -"src": "" -}, -"title": "Présentation des intervenants par Vincent Puig", -"color": "16711680", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 0, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 265282, -"tags": null, -"color": "16711680", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_4C23DCAA-EDAA-ECC0-5B64-41F2E2A09DC8" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Délégué adjoint au développement et aux affaires internationales.", -"img": { -"src": "" -}, -"title": "Ouverture du séminaire par Jean-François Chaintreau", -"color": "65382", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 265282, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 865659, -"tags": null, -"color": "65382", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_D0301B82-9451-9458-FE19-41F3E95B926B" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Directeur de l'Institut de Recherche et d'Innovation.", -"img": { -"src": "" -}, -"title": "Bernard Stiegler", -"color": "26265", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 879622, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 2722640, -"tags": null, -"color": "26265", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_66D7D36D-72B8-1D97-B3A1-41F9D78F8210" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Directrice des programmes de Wikimédia France. Titre de l'intervention : \"Wikimédia : web sémantique ou web social ?\".", -"img": { -"src": "" -}, -"title": "Adrienne Alix", -"color": "10027110", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2750565, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 5138111, -"tags": null, -"color": "10027110", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_66489AE5-3692-F9B9-D9BD-41FF53E680B7" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Responsable Recherche Web et Métadonnées à l'IRI, responsable du séminaire. \"Présentation du séminaire muséologie 2.0.\"", -"img": { -"src": "" -}, -"title": "Alexandre Monnin", -"color": "16777062", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5152073, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 7023015, -"tags": null, -"color": "16777062", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_00904B14-3E31-EC07-8823-4200B4DDB70A" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Chargé de recherche à l'INRIA de Sophia Antipolis. Titre de l'intervention : \"Le Web et ses métadonnées, le territoire et sa carte\".", -"img": { -"src": "" -}, -"title": "Fabien Gandon", -"color": "16737843", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7023016, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 9619996, -"tags": null, -"color": "16737843", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_B2719E8C-ECE4-20F9-AB4F-4202D89E95CD" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "", -"img": { -"src": "" -}, -"title": "Séance de questions-réponses", -"color": "16751052", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9619996, -"meta": { -"dc:contributor": "perso", -"id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:modified": "2011-11-03T12:44:41.600365", -"dc:creator": "perso" -}, -"end": 10876599, -"tags": null, -"color": "16751052", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "s_2D56F86B-F5AA-CA3D-3071-4203126E4049" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "En direct de #museoweb avec @gonzagauthier @aamonnz @AdrienneAlix @fabien_gandon @vincentpuig etc ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: En direct de #museoweb avec @gonzagauthier @aamonnz @AdrienneAlix @fabien_gandon @vincentpuig etc ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 113000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"En direct de #museoweb avec @gonzagauthier @aamonnz @AdrienneAlix @fabien_gandon @vincentpuig etc ++\",\"created_at\":\"Tue Oct 18 15:06:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[13,22]}],\"user_mentions\":[{\"indices\":[28,42],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[43,51],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472},{\"indices\":[52,65],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[66,80],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911},{\"indices\":[82,94],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313230850203649\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1590,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313230850203649}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 113000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "37df963f-61f8-4104-8598-9488ba8133ee-126313230850203649" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "La conférence est diffusée sur le web en streaming #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: La conférence est diffusée sur le web en streaming #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 125000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"La conf\\u00e9rence est diffus\\u00e9e sur le web en streaming #museoweb\",\"created_at\":\"Tue Oct 18 15:06:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[51,60]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313280460423168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":186,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1985,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313280460423168}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 125000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "06169c17-1184-499d-a03a-09c684a754ac-126313280460423168" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", -"img": { -"src": "http://a1.twimg.com/profile_images/1125092807/af3abe61-0116-483f-ada5-85066f324dfc_normal.png" -}, -"title": "CentrePompidou: RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 145000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @ymh_work #museoweb Premi\\u00e8re s\\u00e9ance s\\u00e9minaire mus\\u00e9o en direct sur http:\\/\\/t.co\\/I0DUkbcE\",\"created_at\":\"Tue Oct 18 15:07:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[13,22]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"47312923\",\"name\":\"Yves-Marie Haussonne\",\"screen_name\":\"ymh_work\",\"id\":47312923}],\"urls\":[{\"indices\":[69,89],\"url\":\"http:\\/\\/t.co\\/I0DUkbcE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/5DZWG\",\"display_url\":\"goo.gl\\/5DZWG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313362224197632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0e0e0\",\"created_at\":\"Wed Aug 06 10:43:42 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"c90a0a\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"followers_count\":24147,\"description\":\"Centre d'arts, pluridisciplinaire et transversal ouvert \\u00e0 tous les publics\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"0f0d21\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"favourites_count\":6,\"id_str\":\"15748390\",\"listed_count\":1839,\"friends_count\":225,\"profile_link_color\":\"c90a0a\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\",\"screen_name\":\"centrepompidou\",\"name\":\"CentrePompidou\",\"statuses_count\":3652,\"verified\":false,\"profile_background_color\":\"fcfcfc\",\"id\":15748390,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313362224197632}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 145000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c96b41a2-9210-44d6-87a2-5b7582e54a70-126313362224197632" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb VP == convergence du web sémantique et du web des musées http://t.co/dQsm7A8N", -"img": { -"src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" -}, -"title": "nicolasauret: #museoweb VP == convergence du web sémantique et du web des musées http://t.co/dQsm7A8N", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 169000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb VP == convergence du web s\\u00e9mantique et du web des mus\\u00e9es http:\\/\\/t.co\\/dQsm7A8N\",\"created_at\":\"Tue Oct 18 15:07:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[67,87],\"url\":\"http:\\/\\/t.co\\/dQsm7A8N\",\"expanded_url\":\"http:\\/\\/4sq.com\\/pDthzQ\",\"display_url\":\"4sq.com\\/pDthzQ\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313465999667200\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":296,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313465999667200}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 169000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "50ea920f-e61c-4fd2-ba54-206fdae03022-126313465999667200" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @centrepompidou: RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", -"img": { -"src": "http://a3.twimg.com/profile_images/1557046949/kandinsky_gugg_0910_16_normal.jpg" -}, -"title": "marina rossi: RT @centrepompidou: RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 239000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @centrepompidou: RT @ymh_work #museoweb Premi\\u00e8re s\\u00e9ance s\\u00e9minaire mus\\u00e9o en direct sur http:\\/\\/t.co\\/I0DUkbcE\",\"created_at\":\"Tue Oct 18 15:08:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[33,42]}],\"user_mentions\":[{\"indices\":[3,18],\"id_str\":\"15748390\",\"name\":\"CentrePompidou\",\"screen_name\":\"centrepompidou\",\"id\":15748390},{\"indices\":[23,32],\"id_str\":\"47312923\",\"name\":\"Yves-Marie Haussonne\",\"screen_name\":\"ymh_work\",\"id\":47312923}],\"urls\":[{\"indices\":[89,109],\"url\":\"http:\\/\\/t.co\\/I0DUkbcE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/5DZWG\",\"display_url\":\"goo.gl\\/5DZWG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313757998714881\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @ymh_work #museoweb Premi\\u00e8re s\\u00e9ance s\\u00e9minaire mus\\u00e9o en direct sur http:\\/\\/t.co\\/I0DUkbcE\",\"created_at\":\"Tue Oct 18 15:07:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[13,22]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"47312923\",\"name\":\"Yves-Marie Haussonne\",\"screen_name\":\"ymh_work\",\"id\":47312923}],\"urls\":[{\"indices\":[69,89],\"url\":\"http:\\/\\/t.co\\/I0DUkbcE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/5DZWG\",\"display_url\":\"goo.gl\\/5DZWG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313362224197632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0e0e0\",\"default_profile\":false,\"created_at\":\"Wed Aug 06 10:43:42 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"c90a0a\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"followers_count\":24147,\"description\":\"Centre d'arts, pluridisciplinaire et transversal ouvert \\u00e0 tous les publics\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"0f0d21\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"favourites_count\":6,\"id_str\":\"15748390\",\"listed_count\":1839,\"friends_count\":225,\"profile_link_color\":\"c90a0a\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\",\"screen_name\":\"centrepompidou\",\"name\":\"CentrePompidou\",\"statuses_count\":3652,\"verified\":false,\"profile_background_color\":\"fcfcfc\",\"id\":15748390,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313362224197632},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"default_profile\":false,\"created_at\":\"Mon Mar 22 01:15:33 +0000 2010\",\"lang\":\"it\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":9,\"description\":\"\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"0fc7ff\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":7,\"id_str\":\"125193669\",\"listed_count\":0,\"friends_count\":172,\"profile_link_color\":\"303152\",\"protected\":false,\"location\":\"italy\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1557046949\\/kandinsky_gugg_0910_16_normal.jpg\",\"screen_name\":\"kandy9000\",\"name\":\"marina rossi\",\"statuses_count\":191,\"verified\":false,\"profile_background_color\":\"0affeb\",\"id\":125193669,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1557046949\\/kandinsky_gugg_0910_16_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313757998714881}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 239000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9dfcb6ef-da44-448c-a61d-51190335ac8d-126313757998714881" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "+1 RT @gonzagauthier Conférence #museoweb (@ Centre Pompidou (CNAC)) http://t.co/NXtGha4X", -"img": { -"src": "http://a1.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg" -}, -"title": "L. Natarianni: +1 RT @gonzagauthier Conférence #museoweb (@ Centre Pompidou (CNAC)) http://t.co/NXtGha4X", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 278000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"+1 RT @gonzagauthier Conf\\u00e9rence #museoweb (@ Centre Pompidou (CNAC)) http:\\/\\/t.co\\/NXtGha4X\",\"created_at\":\"Tue Oct 18 15:09:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[32,41]}],\"user_mentions\":[{\"indices\":[6,20],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[{\"indices\":[69,89],\"url\":\"http:\\/\\/t.co\\/NXtGha4X\",\"expanded_url\":\"http:\\/\\/4sq.com\\/pDthzQ\",\"display_url\":\"4sq.com\\/pDthzQ\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313922121838592\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"efefef\",\"default_profile\":false,\"created_at\":\"Thu Dec 11 13:30:58 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"eeeeee\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80051491\\/twilk_background_4b8e2d0612f83.jpg\",\"followers_count\":299,\"description\":\"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80051491\\/twilk_background_4b8e2d0612f83.jpg\",\"favourites_count\":2784,\"id_str\":\"18047103\",\"listed_count\":19,\"friends_count\":580,\"profile_link_color\":\"009999\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1219841315\\/lionel-sbook_normal.jpg\",\"screen_name\":\"lionnoge\",\"name\":\"L. Natarianni\",\"statuses_count\":1926,\"verified\":false,\"profile_background_color\":\"131516\",\"id\":18047103,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1219841315\\/lionel-sbook_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313922121838592}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 278000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b332079f-0562-4819-a137-74b11bbafdc1-126313922121838592" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#MuseoWeb Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/xe76xz08", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: #MuseoWeb Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/xe76xz08", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 321000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb Bcp d'inscrits \\u00e0 cette 1\\u00e8re s\\u00e9ance ! Alors je suis \\u00e0 distance et en live >> http:\\/\\/t.co\\/xe76xz08\",\"created_at\":\"Tue Oct 18 15:10:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/xe76xz08\",\"expanded_url\":\"http:\\/\\/goo.gl\\/zV6qo\",\"display_url\":\"goo.gl\\/zV6qo\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314102141362177\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2004,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314102141362177}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 321000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "080edaf6-3e59-48e9-b69b-e9a3a5ed7af7-126314102141362177" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @centrepompidou A partir de 17h, suivez la conférence \"L'enjeu des #métadonnées et données pr la convergence du #websemantique\" #MuseoWeb", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @centrepompidou A partir de 17h, suivez la conférence \"L'enjeu des #métadonnées et données pr la convergence du #websemantique\" #MuseoWeb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 436000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @centrepompidou A partir de 17h, suivez la conf\\u00e9rence \\\"L'enjeu des #m\\u00e9tadonn\\u00e9es et donn\\u00e9es pr la convergence du #websemantique\\\" #MuseoWeb\",\"created_at\":\"Tue Oct 18 15:11:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"m\\u00e9tadonn\\u00e9es\",\"indices\":[70,82]},{\"text\":\"websemantique\",\"indices\":[115,129]},{\"text\":\"MuseoWeb\",\"indices\":[131,140]}],\"user_mentions\":[{\"indices\":[3,18],\"id_str\":\"15748390\",\"name\":\"CentrePompidou\",\"screen_name\":\"centrepompidou\",\"id\":15748390}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314584297586688\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"default_profile\":false,\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2006,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314584297586688}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 436000, -"tags": [ -{ -"id-ref": "99708000-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99713aa4-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99713f40-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "11dec33c-85b9-4bf8-b449-ca83369489ed-126314584297586688" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "3 priorités pour le MCC: numérisation, recherche culturelle et innovation numérique + lien avec enseignement supérieur culture #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: 3 priorités pour le MCC: numérisation, recherche culturelle et innovation numérique + lien avec enseignement supérieur culture #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 478000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"3 priorit\\u00e9s pour le MCC: num\\u00e9risation, recherche culturelle et innovation num\\u00e9rique + lien avec enseignement sup\\u00e9rieur culture #museoweb\",\"created_at\":\"Tue Oct 18 15:12:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[127,136]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314762677125120\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1592,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314762677125120}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 478000, -"tags": [ -{ -"id-ref": "99713f40-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a77a2554-ffb9-43b7-a0ed-28f18ca24a6e-126314762677125120" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "JF Chaintreau, chef du SCPCI : il y a un effort historique très ancien, une priorité liée à la numérisation du patrimoine culturel #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: JF Chaintreau, chef du SCPCI : il y a un effort historique très ancien, une priorité liée à la numérisation du patrimoine culturel #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 488000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JF Chaintreau, chef du SCPCI : il y a un effort historique tr\\u00e8s ancien, une priorit\\u00e9 li\\u00e9e \\u00e0 la num\\u00e9risation du patrimoine culturel #museoweb\",\"created_at\":\"Tue Oct 18 15:12:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314804519514112\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":1986,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314804519514112}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 488000, -"tags": [ -{ -"id-ref": "99713f40-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0fa39223-ac16-4b07-824e-c810b72291c4-126314804519514112" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Le séminaire de recherche est lié aux structures d'enseignement, pour que les étudiants valorisent leur savoir. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Le séminaire de recherche est lié aux structures d'enseignement, pour que les étudiants valorisent leur savoir. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 523000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le s\\u00e9minaire de recherche est li\\u00e9 aux structures d'enseignement, pour que les \\u00e9tudiants valorisent leur savoir. ++\",\"created_at\":\"Tue Oct 18 15:13:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314948203786241\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7474,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314948203786241}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 523000, -"tags": [ -{ -"id-ref": "99713f40-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3f51fc0c-9d33-4b1a-ac4a-902d96ebd144-126314948203786241" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb JF Chaintreau plaide pour le service public numérique++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb JF Chaintreau plaide pour le service public numérique++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 563000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb JF Chaintreau plaide pour le service public num\\u00e9rique++\",\"created_at\":\"Tue Oct 18 15:14:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315117947269121\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":343,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315117947269121}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 563000, -"tags": [ -{ -"id-ref": "99713f40-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3996b980-72cd-467d-a7f7-fe039c43b8cf-126315117947269121" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "JFC : l'offre numérique culturelle ne se confond ps ac la numérisation, c'est ce que j'appelle le \"service public #numérique\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: JFC : l'offre numérique culturelle ne se confond ps ac la numérisation, c'est ce que j'appelle le \"service public #numérique\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 565000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : l'offre num\\u00e9rique culturelle ne se confond ps ac la num\\u00e9risation, c'est ce que j'appelle le \\\"service public #num\\u00e9rique\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:14:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"num\\u00e9rique\",\"indices\":[114,124]},{\"text\":\"museoweb\",\"indices\":[126,135]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315127128604675\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":1987,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315127128604675}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 565000, -"tags": [ -{ -"id-ref": "99713f40-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7cc158bb-978b-4493-919d-6fa9fc7f64c2-126315127128604675" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"J'insiste sur la notion service public du numérique, important pr chercheurs et citoyens contre la privatisation des données\" ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"J'insiste sur la notion service public du numérique, important pr chercheurs et citoyens contre la privatisation des données\" ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 584000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb \\\"J'insiste sur la notion service public du num\\u00e9rique, important pr chercheurs et citoyens contre la privatisation des donn\\u00e9es\\\" ++\",\"created_at\":\"Tue Oct 18 15:14:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126315205595627521\",\"user\":{\"statuses_count\":7475,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":null,\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"id\":136900327,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"in_reply_to_status_id\":null,\"id\":126315205595627521}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 584000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "64406fc3-c911-44d8-8fae-b20e2212e0e0-126315205595627521" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "conférence #museoweb @centrepompidou sur http://t.co/50AYubDA", -"img": { -"src": "http://a0.twimg.com/profile_images/1377869165/IMG_0968_2_normal.gif" -}, -"title": "domingoslepores: conférence #museoweb @centrepompidou sur http://t.co/50AYubDA", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 607000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"conf\\u00e9rence #museoweb @centrepompidou sur http:\\/\\/t.co\\/50AYubDA\",\"created_at\":\"Tue Oct 18 15:14:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]}],\"user_mentions\":[{\"indices\":[21,36],\"id_str\":\"15748390\",\"name\":\"CentrePompidou\",\"screen_name\":\"centrepompidou\",\"id\":15748390}],\"urls\":[{\"indices\":[41,61],\"url\":\"http:\\/\\/t.co\\/50AYubDA\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315301359980544\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Tue Jul 07 02:34:05 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":10,\"description\":\"i just dropped by to say hello\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"54421093\",\"listed_count\":0,\"friends_count\":92,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1377869165\\/IMG_0968_2_normal.gif\",\"screen_name\":\"domingoslepores\",\"name\":\"domingoslepores\",\"default_profile\":true,\"statuses_count\":7,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":54421093,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1377869165\\/IMG_0968_2_normal.gif\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315301359980544}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 607000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "36ee651a-eff6-443a-9ed2-a70ef35a1a3d-126315301359980544" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "JFC : en 2010 appel a projets services numériques culturels innovants - liste des 62 projets soutenus sur culturelabs #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: JFC : en 2010 appel a projets services numériques culturels innovants - liste des 62 projets soutenus sur culturelabs #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 641000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : en 2010 appel a projets services num\\u00e9riques culturels innovants - liste des 62 projets soutenus sur culturelabs #museoweb\",\"created_at\":\"Tue Oct 18 15:15:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[118,127]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315444993921025\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1988,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315444993921025}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 641000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "44d65017-ff6e-4f52-9812-62bd985b2380-126315444993921025" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb CultureLabs présente les projets Services Culturels innovants dont deux projets de l'Iri ++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb CultureLabs présente les projets Services Culturels innovants dont deux projets de l'Iri ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 642000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb CultureLabs pr\\u00e9sente les projets Services Culturels innovants dont deux projets de l'Iri ++\",\"created_at\":\"Tue Oct 18 15:15:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315449532166144\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":344,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315449532166144}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 642000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "46dc097c-e205-44b2-a1b4-992d6ddd5612-126315449532166144" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Appel à projet: soutenir des usages nouveaux du numérique, à partir du 28 novembre (pour 2012)", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Appel à projet: soutenir des usages nouveaux du numérique, à partir du 28 novembre (pour 2012)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 685000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Appel \\u00e0 projet: soutenir des usages nouveaux du num\\u00e9rique, \\u00e0 partir du 28 novembre (pour 2012)\",\"created_at\":\"Tue Oct 18 15:16:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315628272427010\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7476,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315628272427010}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 685000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7fade754-7760-482b-8ecc-6cd5f90d034a-126315628272427010" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "2012: appel a projet pour des services numériques innovants (cf culturelab) sera lancé le 28/11 #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: 2012: appel a projet pour des services numériques innovants (cf culturelab) sera lancé le 28/11 #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 696000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"2012: appel a projet pour des services num\\u00e9riques innovants (cf culturelab) sera lanc\\u00e9 le 28\\/11 #museoweb\",\"created_at\":\"Tue Oct 18 15:16:18 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[96,105]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315673910644736\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1592,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315673910644736}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 696000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b1272805-4555-4f19-bc01-55fdf4cc9f88-126315673910644736" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Trying hard to follow a conference in French and its debate on Twitter #museoWeb", -"img": { -"src": "http://a3.twimg.com/profile_images/1585449430/Picture_5_normal.png" -}, -"title": "Andrea Cevenini: Trying hard to follow a conference in French and its debate on Twitter #museoWeb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 744000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Trying hard to follow a conference in French and its debate on Twitter #museoWeb\",\"created_at\":\"Tue Oct 18 15:17:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoWeb\",\"indices\":[71,80]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315875883159552\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"created_at\":\"Mon Oct 03 10:38:31 +0000 2011\",\"lang\":\"en\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DBE9ED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"followers_count\":29,\"description\":\"European Designer.\\r\\n\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.andreacevenini.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"favourites_count\":2,\"id_str\":\"384249937\",\"listed_count\":1,\"friends_count\":112,\"profile_link_color\":\"CC3366\",\"protected\":false,\"location\":\"K\\u00f6ln \\/ Paris \\/ Milan\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\",\"screen_name\":\"ACevenini\",\"name\":\"Andrea Cevenini\",\"statuses_count\":52,\"verified\":false,\"profile_background_color\":\"DBE9ED\",\"id\":384249937,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315875883159552}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 744000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "349d267b-ed8d-4d5d-8f33-bf15ee226492-126315875883159552" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", -"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": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:17:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315965607723008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":345,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315965607723008}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 765000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "20cb3c6c-05a8-4130-b257-52fb45997151-126315965607723008" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"nous essayons de faire évoluer le portail 'histoire des arts', pour ouvrir des perspectives de coopérations\"", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"nous essayons de faire évoluer le portail 'histoire des arts', pour ouvrir des perspectives de coopérations\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 767000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"nous essayons de faire \\u00e9voluer le portail 'histoire des arts', pour ouvrir des perspectives de coop\\u00e9rations\\\"\",\"created_at\":\"Tue Oct 18 15:17:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315972821921792\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7477,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315972821921792}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 767000, -"tags": [ -{ -"id-ref": "9971c316-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "89f14abd-d34e-42a9-970c-9b1ff9e089fe-126315972821921792" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "JFC : soutien du SG a l'IRI via le portail #histoiredesarts destiné a regrouper les ressources pédagogiques pr les enseignants #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: JFC : soutien du SG a l'IRI via le portail #histoiredesarts destiné a regrouper les ressources pédagogiques pr les enseignants #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 769000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : soutien du SG a l'IRI via le portail #histoiredesarts destin\\u00e9 a regrouper les ressources p\\u00e9dagogiques pr les enseignants #museoweb\",\"created_at\":\"Tue Oct 18 15:17:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"histoiredesarts\",\"indices\":[43,59]},{\"text\":\"museoweb\",\"indices\":[127,136]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315982913421313\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1989,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315982913421313}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 769000, -"tags": [ -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b57ee2ac-dcb6-4b88-a4c2-c2448493bdae-126315982913421313" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#MuseoWeb le stream video ici : http://t.co/G41ju88r vous pouvez utiliser ++ , -- , == , ?? pour positionner vos tweets", -"img": { -"src": "None" -}, -"title": "IRI Polemic Tweet: #MuseoWeb le stream video ici : http://t.co/G41ju88r vous pouvez utiliser ++ , -- , == , ?? pour positionner vos tweets", -"color": "16763904", -"polemics": [ -"Q", -"KO", -"OK", -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 818000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb le stream video ici : http:\\/\\/t.co\\/G41ju88r vous pouvez utiliser ++ , -- , == , ?? pour positionner vos tweets\",\"created_at\":\"Tue Oct 18 15:18:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[33,53],\"url\":\"http:\\/\\/t.co\\/G41ju88r\",\"expanded_url\":\"http:\\/\\/goo.gl\\/GmurC\",\"display_url\":\"goo.gl\\/GmurC\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316187935178753\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Fri Apr 08 11:03:27 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":33,\"description\":\"System which allows live event followers to twitt bearing an engaged position in reaction to live or recorded talks and media programs, and consequently to \",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/polemictweet.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":40,\"id_str\":\"278987636\",\"listed_count\":3,\"friends_count\":145,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1368500311\\/Capture_d__cran_2011-05-25___16.47.31_normal.png\",\"screen_name\":\"PolemicTweet\",\"name\":\"IRI Polemic Tweet\",\"statuses_count\":230,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":278987636,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1368500311\\/Capture_d__cran_2011-05-25___16.47.31_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316187935178753}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 818000, -"tags": [ -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7e23481b-c26b-4e58-b563-d9f118b1c57d-126316187935178753" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "nouvelles perspectives offertes par le web sémantique et l'open Data ++ #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: nouvelles perspectives offertes par le web sémantique et l'open Data ++ #museoweb", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 834000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"nouvelles perspectives offertes par le web s\\u00e9mantique et l'open Data ++ #museoweb\",\"created_at\":\"Tue Oct 18 15:18:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[72,81]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316252800094208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1594,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316252800094208}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 834000, -"tags": [ -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "8bf59dfc-2d45-46d8-84ee-e7c5f98c91f9-126316252800094208" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Ça discute de @Etalab et libre disposition de l'accès citoyen, en évitant l'absorption par les partenaires. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Ça discute de @Etalab et libre disposition de l'accès citoyen, en évitant l'absorption par les partenaires. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 857000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\u00c7a discute de @Etalab et libre disposition de l'acc\\u00e8s citoyen, en \\u00e9vitant l'absorption par les partenaires. ++\",\"created_at\":\"Tue Oct 18 15:18:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[24,31],\"id_str\":\"311880926\",\"name\":\"Etalab\",\"screen_name\":\"Etalab\",\"id\":311880926}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316351622098945\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7478,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316351622098945}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 857000, -"tags": [ -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "21ec2a60-a443-4139-9ee6-b568d3d3b9a1-126316351622098945" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Initiative EtatLab pour la mise à disposition des données publiques", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Initiative EtatLab pour la mise à disposition des données publiques", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 881000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Initiative EtatLab pour la mise \\u00e0 disposition des donn\\u00e9es publiques\",\"created_at\":\"Tue Oct 18 15:19:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316450200825856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":346,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316450200825856}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 881000, -"tags": [ -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f13bfdb9-9082-4ca2-ac2c-5c15a5b9de49-126316450200825856" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 894000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:19:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316507776040962\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:17:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315965607723008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":346,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315965607723008},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2007,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316507776040962}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 894000, -"tags": [ -{ -"id-ref": "9972c842-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "cd639cb5-e587-4708-b942-5548e9abf9d2-126316507776040962" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "JFC : initiative #etalab doit veiller a ce que l'eco num se développe en ne touchant pas a la libre disposition des serv citoyens #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: JFC : initiative #etalab doit veiller a ce que l'eco num se développe en ne touchant pas a la libre disposition des serv citoyens #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 916000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : initiative #etalab doit veiller a ce que l'eco num se d\\u00e9veloppe en ne touchant pas a la libre disposition des serv citoyens #museoweb\",\"created_at\":\"Tue Oct 18 15:19:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"etalab\",\"indices\":[17,24]},{\"text\":\"museoweb\",\"indices\":[130,139]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316596850470912\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1990,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316596850470912}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 916000, -"tags": [ -{ -"id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "bd318747-06a7-4b2c-8244-b5d03605e64e-126316596850470912" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#MuseoWeb RT @Lilmount: Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/QvPh0Quo <+1", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #MuseoWeb RT @Lilmount: Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/QvPh0Quo <+1", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 932000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#MuseoWeb RT @Lilmount: Bcp d'inscrits \\u00e0 cette 1\\u00e8re s\\u00e9ance ! Alors je suis \\u00e0 distance et en live >> http:\\/\\/t.co\\/QvPh0Quo <+1\",\"created_at\":\"Tue Oct 18 15:20:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[13,22],\"name\":\"Coline Aunis\",\"screen_name\":\"Lilmount\",\"id_str\":\"68658539\",\"id\":68658539}],\"urls\":[{\"indices\":[107,127],\"url\":\"http:\\/\\/t.co\\/QvPh0Quo\",\"expanded_url\":\"http:\\/\\/goo.gl\\/zV6qo\",\"display_url\":\"goo.gl\\/zV6qo\"}]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126316663435046914\",\"user\":{\"statuses_count\":6649,\"verified\":false,\"profile_background_color\":\"bababa\",\"profile_background_tile\":true,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"f5f5f5\",\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"default_profile\":false,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"url\":\"http:\\/\\/omer.mobi\\/\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1315,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris - France\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"id\":16592723,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126316663435046914}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 932000, -"tags": [ -{ -"id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e7dc1b6a-5052-4ad4-8985-9d1c94c4b7cd-126316663435046914" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Bernard Stiegler : \"il y a autour de l'avenir du web bcp de polémiques, notamment sur le rôle du #websemantique\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Bernard Stiegler : \"il y a autour de l'avenir du web bcp de polémiques, notamment sur le rôle du #websemantique\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 992000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Bernard Stiegler : \\\"il y a autour de l'avenir du web bcp de pol\\u00e9miques, notamment sur le r\\u00f4le du #websemantique\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:21:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"websemantique\",\"indices\":[97,111]},{\"text\":\"museoweb\",\"indices\":[113,122]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316916884242432\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1991,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316916884242432}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 992000, -"tags": [ -{ -"id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "63c10c33-3b8a-471e-bc32-97d98aebb79f-126316916884242432" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Pas d'opposition, mais une composition entre web #semantique et web social. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Pas d'opposition, mais une composition entre web #semantique et web social. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1034000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Pas d'opposition, mais une composition entre web #semantique et web social. ++\",\"created_at\":\"Tue Oct 18 15:21:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"semantique\",\"indices\":[59,70]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317091010781184\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7479,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317091010781184}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1034000, -"tags": [ -{ -"id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3ca6bd26-0787-4a60-894a-b3d79b79cd9c-126317091010781184" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B. Stiegler : pas d'opposition entre web sémantique et web social, mais composition entre tendances bottom-up/top-down ++ #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: B. Stiegler : pas d'opposition entre web sémantique et web social, mais composition entre tendances bottom-up/top-down ++ #museoweb", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1049000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B. Stiegler : pas d'opposition entre web s\\u00e9mantique et web social, mais composition entre tendances bottom-up\\/top-down ++ #museoweb\",\"created_at\":\"Tue Oct 18 15:22:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[122,131]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317155619840001\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1595,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317155619840001}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1049000, -"tags": [ -{ -"id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7bddf9dd-0369-491b-935b-d529c42492aa-126317155619840001" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS: pas d'opposition entre web sémantique et web social, mais une composition ++", -"img": { -"src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" -}, -"title": "nicolasauret: #museoweb BS: pas d'opposition entre web sémantique et web social, mais une composition ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1050000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS: pas d'opposition entre web s\\u00e9mantique et web social, mais une composition ++\",\"created_at\":\"Tue Oct 18 15:22:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317158497140738\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"default_profile\":true,\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":297,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317158497140738}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1050000, -"tags": [ -{ -"id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2e9516a6-f067-48a6-8da3-1aa751547093-126317158497140738" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : à l' IRI, on considère qu'il n'y a pas d'opposition entre #websemantique et #websocial ms une composition #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : à l' IRI, on considère qu'il n'y a pas d'opposition entre #websemantique et #websocial ms une composition #museoweb", -"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": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\u00e0 l' IRI, on consid\\u00e8re qu'il n'y a pas d'opposition entre #websemantique et #websocial ms une composition #museoweb\",\"created_at\":\"Tue Oct 18 15:22:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"websemantique\",\"indices\":[71,85]},{\"text\":\"websocial\",\"indices\":[89,99]},{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317271135162368\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1992,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317271135162368}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1076000, -"tags": [ -{ -"id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e362bc60-3ab8-4ac1-aa96-bbde8e5a652f-126317271135162368" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1080000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense \\u00e0 l'imaginaire du flux ++\",\"created_at\":\"Tue Oct 18 15:22:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317286868004865\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7480,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317286868004865}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1080000, -"tags": [ -{ -"id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "18a58518-9d19-4af3-b2b0-3d894753fd0b-126317286868004865" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb B. Stiegler cite Luciano Fioridi et conteste qu'il y ait une opposition entre Web sémantique et Web social", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb B. Stiegler cite Luciano Fioridi et conteste qu'il y ait une opposition entre Web sémantique et Web social", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1088000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb B. Stiegler cite Luciano Fioridi et conteste qu'il y ait une opposition entre Web s\\u00e9mantique et Web social\",\"created_at\":\"Tue Oct 18 15:22:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317319952662529\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":347,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317319952662529}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1088000, -"tags": [ -{ -"id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "364f382e-aeb8-40fe-99f9-f945e40661a1-126317319952662529" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"A l'Iri, nous considérons que le web 3, ce n'est pas la victoire du web sémantique, mais sa co-construction avec le web social\"", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"A l'Iri, nous considérons que le web 3, ce n'est pas la victoire du web sémantique, mais sa co-construction avec le web social\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1157000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"A l'Iri, nous consid\\u00e9rons que le web 3, ce n'est pas la victoire du web s\\u00e9mantique, mais sa co-construction avec le web social\\\"\",\"created_at\":\"Tue Oct 18 15:23:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317608055226369\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7481,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317608055226369}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1157000, -"tags": [ -{ -"id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a8dab6c4-741e-4a63-9100-9ce9604afd0b-126317608055226369" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Bernard Stiegler : \"une institution patrimoniale a en charge la production de #metadonnées\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Bernard Stiegler : \"une institution patrimoniale a en charge la production de #metadonnées\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1198000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Bernard Stiegler : \\\"une institution patrimoniale a en charge la production de #metadonn\\u00e9es\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:24:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"metadonn\\u00e9es\",\"indices\":[78,90]},{\"text\":\"museoweb\",\"indices\":[92,101]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317780772466688\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1993,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317780772466688}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1198000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "8c74025e-74c5-456c-be7b-18805028d904-126317780772466688" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Rajeunissement des publics\", Stiegler parle de génération Y, mais quel est le fondement de cette catégoriet dans la pratique ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Rajeunissement des publics\", Stiegler parle de génération Y, mais quel est le fondement de cette catégoriet dans la pratique ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1240000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Rajeunissement des publics\\\", Stiegler parle de g\\u00e9n\\u00e9ration Y, mais quel est le fondement de cette cat\\u00e9goriet dans la pratique ??\",\"created_at\":\"Tue Oct 18 15:25:22 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317955968536576\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7482,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317955968536576}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1240000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6ff5595a-d7e3-4f16-a07e-c6e8b126cea3-126317955968536576" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "BS: traditionnellement, production de metadonnees patrimoniales dans un mode top-down. Auj s'y ajoutent des traces bottom-up #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: BS: traditionnellement, production de metadonnees patrimoniales dans un mode top-down. Auj s'y ajoutent des traces bottom-up #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1244000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"BS: traditionnellement, production de metadonnees patrimoniales dans un mode top-down. Auj s'y ajoutent des traces bottom-up #museoweb\",\"created_at\":\"Tue Oct 18 15:25:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[125,134]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317973425238016\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1596,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317973425238016}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1244000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2afdb756-2401-469e-9040-05339f1b2af3-126317973425238016" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : cmt agencer cette activité de production de traces et quelles en st enjeux culturels patrimoniaux et esthétiques ? #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : cmt agencer cette activité de production de traces et quelles en st enjeux culturels patrimoniaux et esthétiques ? #museoweb", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1283000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : cmt agencer cette activit\\u00e9 de production de traces et quelles en st enjeux culturels patrimoniaux et esth\\u00e9tiques ? #museoweb\",\"created_at\":\"Tue Oct 18 15:26:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[128,137]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318137334431744\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":1994,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318137334431744}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1283000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "bb60bf0f-ea15-4b7e-8bfe-182a93df821b-126318137334431744" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", -"img": { -"src": "http://a1.twimg.com/profile_images/1410096403/photoCA0ULHWT_normal.jpg" -}, -"title": "Laurent Bel: RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1320000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:26:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318292305575937\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:17:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315965607723008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":347,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126315965607723008},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Wed Jan 19 15:24:46 +0000 2011\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":27,\"description\":\"Provider Technologique, Base de donn\\u00e9es RDF pour le web de donn\\u00e9es \\/ web semantique\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.armadillo.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"240279846\",\"listed_count\":0,\"friends_count\":36,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1410096403\\/photoCA0ULHWT_normal.jpg\",\"screen_name\":\"Laurent_BEL\",\"name\":\"Laurent Bel\",\"statuses_count\":13,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":240279846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1410096403\\/photoCA0ULHWT_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126318292305575937}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1320000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0404159a-f8a8-4027-8566-e9d9f0fad601-126318292305575937" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : qd on parle de web sémantique, on parle de nvx processus de grammatisation #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : qd on parle de web sémantique, on parle de nvx processus de grammatisation #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1346000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : qd on parle de web s\\u00e9mantique, on parle de nvx processus de grammatisation #museoweb\",\"created_at\":\"Tue Oct 18 15:27:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[88,97]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318399931432961\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1995,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318399931432961}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1346000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e54b5b13-9393-486e-8deb-3611135b2881-126318399931432961" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: RT @gonzagauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1366000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense \\u00e0 l'imaginaire du flux ++\",\"created_at\":\"Tue Oct 18 15:27:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318487554621440\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense \\u00e0 l'imaginaire du flux ++\",\"created_at\":\"Tue Oct 18 15:22:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317286868004865\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7482,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317286868004865},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1315,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6650,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318487554621440}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1366000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9d84691f-17af-4a30-a14f-0a30040478d6-126318487554621440" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Web #Semantic New Grammar process ?? http://t.co/OUknE9n1 ==", -"img": { -"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" -}, -"title": "Samuel Huron: #museoweb Web #Semantic New Grammar process ?? http://t.co/OUknE9n1 ==", -"color": "16763904", -"polemics": [ -"Q", -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1431000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Web #Semantic New Grammar process ?? http:\\/\\/t.co\\/OUknE9n1 ==\",\"created_at\":\"Tue Oct 18 15:28:33 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"Semantic\",\"indices\":[14,23]}],\"user_mentions\":[],\"urls\":[{\"indices\":[47,67],\"url\":\"http:\\/\\/t.co\\/OUknE9n1\",\"expanded_url\":\"http:\\/\\/goo.gl\\/uCuNG\",\"display_url\":\"goo.gl\\/uCuNG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318758062071808\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":671,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2403,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318758062071808}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1431000, -"tags": [ -{ -"id-ref": "997488b2-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99753f32-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7d499cd5-7608-4d49-976f-5a30b1fa0d02-126318758062071808" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS: de la parole à l'écriture jusqu'à la grammatisation : formalisation d'une pratique. Vers une grammatisation du web ??", -"img": { -"src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" -}, -"title": "nicolasauret: #museoweb BS: de la parole à l'écriture jusqu'à la grammatisation : formalisation d'une pratique. Vers une grammatisation du web ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1443000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS: de la parole \\u00e0 l'\\u00e9criture jusqu'\\u00e0 la grammatisation : formalisation d'une pratique. Vers une grammatisation du web ??\",\"created_at\":\"Tue Oct 18 15:28:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318808355971072\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":298,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318808355971072}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1443000, -"tags": [ -{ -"id-ref": "99753f32-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "dc74d2ed-5d22-4f07-b309-d6b512adf1f4-126318808355971072" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Stiegler: #Teasing \"Je vais vous parler de Kant\" !", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Stiegler: #Teasing \"Je vais vous parler de Kant\" !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1445000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler: #Teasing \\\"Je vais vous parler de Kant\\\" !\",\"created_at\":\"Tue Oct 18 15:28:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"Teasing\",\"indices\":[20,28]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318816190922752\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7483,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318816190922752}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1445000, -"tags": [ -{ -"id-ref": "99753f32-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "154dc18b-bbab-4263-8a63-9fff13666682-126318816190922752" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Stiegler pose un premier présupposé avec la grammatisation (élargie), plaçant la technique comme initiatrice de la communication.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Stiegler pose un premier présupposé avec la grammatisation (élargie), plaçant la technique comme initiatrice de la communication.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1448000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler pose un premier pr\\u00e9suppos\\u00e9 avec la grammatisation (\\u00e9largie), pla\\u00e7ant la technique comme initiatrice de la communication.\",\"created_at\":\"Tue Oct 18 15:28:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318828056616960\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7484,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318828056616960}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1448000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "63a999b2-59e6-4810-8a0f-396dda608083-126318828056616960" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "BS: Web sémantique et social = nouveaux processus de grammatisation, cad tous les flux d'expression humains (écriture et autres) #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: BS: Web sémantique et social = nouveaux processus de grammatisation, cad tous les flux d'expression humains (écriture et autres) #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1449000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"BS: Web s\\u00e9mantique et social = nouveaux processus de grammatisation, cad tous les flux d'expression humains (\\u00e9criture et autres) #museoweb\",\"created_at\":\"Tue Oct 18 15:28:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[129,138]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318835723800577\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1597,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318835723800577}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1449000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0870e258-5a04-4f8d-b006-faf52f158f83-126318835723800577" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Ecouter en ligne le séminaire : http://t.co/Du5ZRiPe #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Ecouter en ligne le séminaire : http://t.co/Du5ZRiPe #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1460000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Ecouter en ligne le s\\u00e9minaire : http:\\/\\/t.co\\/Du5ZRiPe #museoweb\",\"created_at\":\"Tue Oct 18 15:29:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[53,62]}],\"user_mentions\":[],\"urls\":[{\"indices\":[32,52],\"url\":\"http:\\/\\/t.co\\/Du5ZRiPe\",\"expanded_url\":\"http:\\/\\/goo.gl\\/zV6qo\",\"display_url\":\"goo.gl\\/zV6qo\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318881307500545\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1996,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318881307500545}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1460000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "53fcce13-8e21-4c94-bc94-9bb006b6f124-126318881307500545" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Grammatisation chez Sylvain Auroux, un outil conceptuel permettant de penser le langage mais aussi de tous les flux==", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Grammatisation chez Sylvain Auroux, un outil conceptuel permettant de penser le langage mais aussi de tous les flux==", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1468000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Grammatisation chez Sylvain Auroux, un outil conceptuel permettant de penser le langage mais aussi de tous les flux==\",\"created_at\":\"Tue Oct 18 15:29:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318914207625216\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":348,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318914207625216}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1468000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "517a4793-ea0a-4a16-aaf9-1791d1d43cac-126318914207625216" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS parle des flux, indique qu'ils sont grammatisés. Mais ils le sont parfois sans règle, or n'est-ce pas essentiel au procès ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb BS parle des flux, indique qu'ils sont grammatisés. Mais ils le sont parfois sans règle, or n'est-ce pas essentiel au procès ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1549000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS parle des flux, indique qu'ils sont grammatis\\u00e9s. Mais ils le sont parfois sans r\\u00e8gle, or n'est-ce pas essentiel au proc\\u00e8s ??\",\"created_at\":\"Tue Oct 18 15:30:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319254181122048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7485,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319254181122048}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1549000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7a3298ed-5d05-4246-a3b5-28fcce4ef844-126319254181122048" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Le web social est une grammatisation des rapports des flux et non le flux\" Processus de création de sens hypermoderne ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Le web social est une grammatisation des rapports des flux et non le flux\" Processus de création de sens hypermoderne ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1620000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Le web social est une grammatisation des rapports des flux et non le flux\\\" Processus de cr\\u00e9ation de sens hypermoderne ??\",\"created_at\":\"Tue Oct 18 15:31:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319549887942656\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7486,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319549887942656}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1620000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d182d951-b0fd-4635-ad30-e68e524b7dc0-126319549887942656" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1634000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1997,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1634000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c8558149-f6c8-4d42-b517-0327c8b7de40-126319609228955650" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/1075692355/richard-avedon_1188215126_normal.jpg" -}, -"title": "Claire: RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1663000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:32:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319730394013696\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1997,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Sun Apr 18 15:08:56 +0000 2010\",\"lang\":\"en\",\"time_zone\":null,\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"followers_count\":230,\"description\":\"Consultante en affaires publiques et com' digitale\\r\\nGeekeries, trends et autres anglicismes\\u2026\\r\\nhttp:\\/\\/sliceofgeek.wordpress.com\\/\\r\\n\\r\\n\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":false,\"following\":null,\"profile_text_color\":\"050a17\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"134484433\",\"listed_count\":10,\"friends_count\":524,\"profile_link_color\":\"217002\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1075692355\\/richard-avedon_1188215126_normal.jpg\",\"screen_name\":\"ClaireJDuriez\",\"name\":\"Claire\",\"statuses_count\":1186,\"verified\":false,\"profile_background_color\":\"c7d0e0\",\"id\":134484433,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1075692355\\/richard-avedon_1188215126_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319730394013696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1663000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "621eb209-82d6-4bf0-ab60-55b747430da3-126319730394013696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "\"Vous êtes venus là pour vous transindividuer psychiquement\" B. Stiegler #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: \"Vous êtes venus là pour vous transindividuer psychiquement\" B. Stiegler #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1692000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"Vous \\u00eates venus l\\u00e0 pour vous transindividuer psychiquement\\\" B. Stiegler #museoweb\",\"created_at\":\"Tue Oct 18 15:32:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[73,82]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319854142763009\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1598,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319854142763009}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1692000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9e0f2862-3950-45f3-b15e-e93a6a732d51-126319854142763009" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", -"img": { -"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" -}, -"title": "Samuel Huron: #museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", -"color": "16763904", -"polemics": [ -"Q", -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1751000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS:\\\"metastabilisation\\\" == Shirky:\\\"crystallization\\\" ??\",\"created_at\":\"Tue Oct 18 15:33:53 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320099639566337\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"default_profile\":false,\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":671,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2404,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320099639566337}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1751000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "5cf1e44e-aaab-40b9-8cdc-6900f02d545b-126320099639566337" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"La transindividuation n'est pas homogène mais contribue à consolider des relations\" J'aime le fait d'éviter le consensus ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"La transindividuation n'est pas homogène mais contribue à consolider des relations\" J'aime le fait d'éviter le consensus ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1763000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"La transindividuation n'est pas homog\\u00e8ne mais contribue \\u00e0 consolider des relations\\\" J'aime le fait d'\\u00e9viter le consensus ++\",\"created_at\":\"Tue Oct 18 15:34:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320149992177664\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7487,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320149992177664}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1763000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c8c8c266-84da-4e35-8c54-59c8319ec620-126320149992177664" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cybunk: #museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", -"img": { -"src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" -}, -"title": "nicolasauret: RT @cybunk: #museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", -"color": "16763904", -"polemics": [ -"Q", -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1790000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cybunk: #museoweb BS:\\\"metastabilisation\\\" == Shirky:\\\"crystallization\\\" ??\",\"created_at\":\"Tue Oct 18 15:34:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[12,21]}],\"user_mentions\":[{\"indices\":[3,10],\"id_str\":\"14905766\",\"name\":\"Samuel Huron\",\"screen_name\":\"cybunk\",\"id\":14905766}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320265255862275\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS:\\\"metastabilisation\\\" == Shirky:\\\"crystallization\\\" ??\",\"created_at\":\"Tue Oct 18 15:33:53 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320099639566337\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":671,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2404,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320099639566337},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":300,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320265255862275}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1790000, -"tags": [ -{ -"id-ref": "997578bc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "aa3dbfd6-0d91-4369-888f-c5e0964a2741-126320265255862275" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#Metadonnees #websemantic #culture RT @polemictweet: #MuseoWeb le stream video ici : http://t.co/rIp3qL5h", -"img": { -"src": "http://a2.twimg.com/profile_images/1594192310/e5cd561d-d258-4e16-9ca4-c765f21786f1_normal.png" -}, -"title": "samuel bausson: #Metadonnees #websemantic #culture RT @polemictweet: #MuseoWeb le stream video ici : http://t.co/rIp3qL5h", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1876000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#Metadonnees #websemantic #culture RT @polemictweet: #MuseoWeb le stream video ici : http:\\/\\/t.co\\/rIp3qL5h\",\"created_at\":\"Tue Oct 18 15:35:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Metadonnees\",\"indices\":[0,12]},{\"text\":\"websemantic\",\"indices\":[13,25]},{\"text\":\"culture\",\"indices\":[26,34]},{\"text\":\"MuseoWeb\",\"indices\":[53,62]}],\"user_mentions\":[{\"indices\":[38,51],\"id_str\":\"278987636\",\"name\":\"IRI Polemic Tweet\",\"screen_name\":\"PolemicTweet\",\"id\":278987636}],\"urls\":[{\"indices\":[86,106],\"url\":\"http:\\/\\/t.co\\/rIp3qL5h\",\"expanded_url\":\"http:\\/\\/goo.gl\\/GmurC\",\"display_url\":\"goo.gl\\/GmurC\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320623436832768\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"a9d494\",\"created_at\":\"Tue Feb 26 02:42:30 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"d1d1d1\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/79876591\\/409420142_ae78dee08c_o.jpg\",\"followers_count\":2178,\"description\":\"ouebmister @museumtoulouse \\u2022 #LegoMuseums #FreeCulture #CoDesign #OpenInnovation \\u2022 http:\\/\\/lesplanade.org \\u2022 http:\\/\\/museomix.com \\u2022 let's remix museums !\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/www.mixeum.net\",\"following\":null,\"profile_text_color\":\"454545\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/79876591\\/409420142_ae78dee08c_o.jpg\",\"favourites_count\":126,\"id_str\":\"13981242\",\"listed_count\":299,\"friends_count\":984,\"profile_link_color\":\"000000\",\"protected\":false,\"location\":\"Toulouse, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1594192310\\/e5cd561d-d258-4e16-9ca4-c765f21786f1_normal.png\",\"screen_name\":\"samuelbausson\",\"name\":\"samuel bausson\",\"statuses_count\":5114,\"verified\":false,\"profile_background_color\":\"80b25d\",\"id\":13981242,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1594192310\\/e5cd561d-d258-4e16-9ca4-c765f21786f1_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320623436832768}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1876000, -"tags": [ -{ -"id-ref": "9976c5f0-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9976ca6e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9976ca6e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "dc5f26fb-0a78-4b4e-b66d-90a671b9355b-126320623436832768" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Le Web social serait pas seulement le web des relations sociales mais aussi de toutes les relations entre humains et ressources??", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Le Web social serait pas seulement le web des relations sociales mais aussi de toutes les relations entre humains et ressources??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1880000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le Web social serait pas seulement le web des relations sociales mais aussi de toutes les relations entre humains et ressources??\",\"created_at\":\"Tue Oct 18 15:36:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320641963081730\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":349,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320641963081730}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1880000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "97dbf1d1-508c-43a1-ae8e-e3a26b06e898-126320641963081730" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le changement technique --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le changement technique --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 1943000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb \\\"Le processus de grammatisation technique cr\\u00e9e de la d\\u00e9sindividuation\\\" Seulement si on n'accompagne pas le changement technique --\",\"created_at\":\"Tue Oct 18 15:37:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126320907277959168\",\"user\":{\"statuses_count\":7487,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":null,\"default_profile\":true,\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"id\":136900327,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"in_reply_to_status_id\":null,\"id\":126320907277959168}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 1943000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "52402092-b633-43cd-8d33-9e680fc4803a-126320907277959168" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS explique les mécanismes systémiques de l'évolution des processus d'individation.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb BS explique les mécanismes systémiques de l'évolution des processus d'individation.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2097000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS explique les m\\u00e9canismes syst\\u00e9miques de l'\\u00e9volution des processus d'individation.\",\"created_at\":\"Tue Oct 18 15:39:39 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321550193463296\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7489,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321550193463296}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2097000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "12fe3190-94a4-4d7d-b751-90342d6a41ed-126321550193463296" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le ...", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @gonzagauthier: #museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le ...", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2110000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb \\\"Le processus de grammatisation technique cr\\u00e9e de la d\\u00e9sindividuation\\\" Seulement si on n'accompagne pas le ...\",\"created_at\":\"Tue Oct 18 15:39:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321607361822721\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Le processus de grammatisation technique cr\\u00e9e de la d\\u00e9sindividuation\\\" Seulement si on n'accompagne pas le changement technique --\",\"created_at\":\"Tue Oct 18 15:37:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320907277959168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7489,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320907277959168},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2009,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126321607361822721}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2110000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9963c845-2119-42b4-9e93-1f600074e9b7-126321607361822721" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Pouvoir et savoir sur la transindividuation doit on choisir ??", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Pouvoir et savoir sur la transindividuation doit on choisir ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2114000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Pouvoir et savoir sur la transindividuation doit on choisir ??\",\"created_at\":\"Tue Oct 18 15:39:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321624126468096\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":350,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321624126468096}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2114000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6a39df37-f63f-4d81-a10a-f9b69fa97674-126321624126468096" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"img": { -"src": "http://a3.twimg.com/profile_images/1562090347/Moi_Facebook_Twitter_redim_normal.jpg" -}, -"title": "Chirollet JC: RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2152000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:40:34 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321782687932416\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1997,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f6ffd1\",\"created_at\":\"Sat Jul 09 07:23:51 +0000 2011\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"fff8ad\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"followers_count\":20,\"description\":\"Philosophe, Universitaire_Esth\\u00e9tique_Fractals \\/ Art Fractal_Arts Num\\u00e9riques_Num\\u00e9risation du Patrimoine Artistique_Photographie Num\\u00e9rique\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"favourites_count\":3,\"id_str\":\"332115667\",\"listed_count\":0,\"friends_count\":134,\"profile_link_color\":\"0099CC\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\",\"screen_name\":\"fracjc\",\"name\":\"Chirollet JC\",\"statuses_count\":40,\"verified\":false,\"profile_background_color\":\"FFF04D\",\"id\":332115667,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126321782687932416}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2152000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ccd05ec5-577b-46be-97cf-487cd4fc927b-126321782687932416" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb la transindividuation produit du pouvoir, ou du savoir, ou les deux (c'est a dire des grands dirigeants !)", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb la transindividuation produit du pouvoir, ou du savoir, ou les deux (c'est a dire des grands dirigeants !)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2159000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb la transindividuation produit du pouvoir, ou du savoir, ou les deux (c'est a dire des grands dirigeants !)\",\"created_at\":\"Tue Oct 18 15:40:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321809833476096\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1017,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1599,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321809833476096}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2159000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "632313a8-b336-4796-a247-89fb9f5f65f5-126321809833476096" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS reprend la question de savoir/pouvoir, et indique que l'un et l'autre peuvent être séparés, que le savoir peut exister seul. --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb BS reprend la question de savoir/pouvoir, et indique que l'un et l'autre peuvent être séparés, que le savoir peut exister seul. --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2159000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS reprend la question de savoir\\/pouvoir, et indique que l'un et l'autre peuvent \\u00eatre s\\u00e9par\\u00e9s, que le savoir peut exister seul. --\",\"created_at\":\"Tue Oct 18 15:40:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321811494420481\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7490,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321811494420481}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2159000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4eb55f93-1e26-423e-a540-46179ede247b-126321811494420481" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb suis-je un transducteur ? (je m'interroge) /cc @lilmount @gonzagauthier", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb suis-je un transducteur ? (je m'interroge) /cc @lilmount @gonzagauthier", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2177000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb suis-je un transducteur ? (je m'interroge) \\/cc @lilmount @gonzagauthier\",\"created_at\":\"Tue Oct 18 15:40:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[57,66],\"id_str\":\"68658539\",\"name\":\"Coline Aunis\",\"screen_name\":\"Lilmount\",\"id\":68658539},{\"indices\":[67,81],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321885930721280\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1315,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6651,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321885930721280}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2177000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "48f80e58-bfc7-4dd1-b851-740ac7d562a6-126321885930721280" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS:\"transducteur\" == McKenzie Wark \"vector\" ?? http://t.co/Y5WtmljB", -"img": { -"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" -}, -"title": "Samuel Huron: #museoweb BS:\"transducteur\" == McKenzie Wark \"vector\" ?? http://t.co/Y5WtmljB", -"color": "16763904", -"polemics": [ -"Q", -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2187000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS:\\\"transducteur\\\" == McKenzie Wark \\\"vector\\\" ?? http:\\/\\/t.co\\/Y5WtmljB\",\"created_at\":\"Tue Oct 18 15:41:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[57,77],\"url\":\"http:\\/\\/t.co\\/Y5WtmljB\",\"expanded_url\":\"http:\\/\\/goo.gl\\/c5InY\",\"display_url\":\"goo.gl\\/c5InY\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321928066699264\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"default_profile\":false,\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":673,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2405,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321928066699264}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2187000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f8d79730-e261-4ef6-aa36-6914892902d5-126321928066699264" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : \"les metadonnées mettent en œuvre des règles, qui sont des relations transindividualisées\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : \"les metadonnées mettent en œuvre des règles, qui sont des relations transindividualisées\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2247000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\\"les metadonn\\u00e9es mettent en \\u0153uvre des r\\u00e8gles, qui sont des relations transindividualis\\u00e9es\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:42:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[104,113]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322182484795393\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1998,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322182484795393}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2247000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "313b76d6-3a8d-4b88-bcab-264dac36d513-126322182484795393" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Articuler le sychronique et le diacronique sans interrompre la dynamique sociale++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Articuler le sychronique et le diacronique sans interrompre la dynamique sociale++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2283000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Articuler le sychronique et le diacronique sans interrompre la dynamique sociale++\",\"created_at\":\"Tue Oct 18 15:42:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322330086547456\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":351,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322330086547456}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2283000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3ea7ca5f-9345-4e61-92c4-5c7c75d809d4-126322330086547456" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Bs: Enjeu du séminaire: mettre en place des processus qui permettront d'augmenter la capacité à créer du lien entre les savoirs.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Bs: Enjeu du séminaire: mettre en place des processus qui permettront d'augmenter la capacité à créer du lien entre les savoirs.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2285000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Bs: Enjeu du s\\u00e9minaire: mettre en place des processus qui permettront d'augmenter la capacit\\u00e9 \\u00e0 cr\\u00e9er du lien entre les savoirs.\",\"created_at\":\"Tue Oct 18 15:42:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322338303193089\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7491,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322338303193089}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2285000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d805f44c-f184-401e-9abb-f741da837d41-126322338303193089" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb BS le web sem est un processus de grammatisation analytique - production de metadonnees, vers une automatisation totale", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb BS le web sem est un processus de grammatisation analytique - production de metadonnees, vers une automatisation totale", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2358000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS le web sem est un processus de grammatisation analytique - production de metadonnees, vers une automatisation totale\",\"created_at\":\"Tue Oct 18 15:44:00 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322646907502592\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1017,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1600,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322646907502592}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2358000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "51b5e6b1-f4f1-4007-ad40-5022353793b1-126322646907502592" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \" B Stiegler \"Le web social c’est autre chose, c’est la grammatisation d’un pouvoir de synthésisation, d’un pouvoir de jugement.\"", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb \" B Stiegler \"Le web social c’est autre chose, c’est la grammatisation d’un pouvoir de synthésisation, d’un pouvoir de jugement.\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2384000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\" B\\u00a0Stiegler \\\"Le web social c\\u2019est autre chose, c\\u2019est la grammatisation d\\u2019un pouvoir de synth\\u00e9sisation, d\\u2019un pouvoir de jugement.\\\"\",\"created_at\":\"Tue Oct 18 15:44:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322756559192065\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":31,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322756559192065}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2384000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "984bf0bd-823a-49fe-99af-f09a1110df6b-126322756559192065" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : \"le web sémantique est un processus de grammatisation analytique alors que web social pouvoir de jugement\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : \"le web sémantique est un processus de grammatisation analytique alors que web social pouvoir de jugement\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2386000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\\"le web s\\u00e9mantique est un processus de grammatisation analytique alors que web social pouvoir de jugement\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:44:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[120,129]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322762078892035\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1999,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322762078892035}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2386000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c5dbcd07-11f6-4c93-b09c-1127282eaf72-126322762078892035" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"BS: grammatisation d'un pouvoir de jugement\" Quid de l'entraide ?? Le conseil est-il un jugement ?", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"BS: grammatisation d'un pouvoir de jugement\" Quid de l'entraide ?? Le conseil est-il un jugement ?", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2388000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"BS: grammatisation d'un pouvoir de jugement\\\" Quid de l'entraide ?? Le conseil est-il un jugement ?\",\"created_at\":\"Tue Oct 18 15:44:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322771440570368\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7491,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322771440570368}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2388000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1cff1d16-dd2a-48ee-a462-55a9b76edfca-126322771440570368" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Museologie 2.0 #museoweb (@ Centre Pompidou (CNAC)) http://t.co/7NSMdzeJ", -"img": { -"src": "http://a3.twimg.com/profile_images/1585449430/Picture_5_normal.png" -}, -"title": "Andrea Cevenini: Museologie 2.0 #museoweb (@ Centre Pompidou (CNAC)) http://t.co/7NSMdzeJ", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2412000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Museologie 2.0 #museoweb (@ Centre Pompidou (CNAC)) http:\\/\\/t.co\\/7NSMdzeJ\",\"created_at\":\"Tue Oct 18 15:44:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]}],\"user_mentions\":[],\"urls\":[{\"indices\":[52,72],\"url\":\"http:\\/\\/t.co\\/7NSMdzeJ\",\"expanded_url\":\"http:\\/\\/4sq.com\\/oyCBym\",\"display_url\":\"4sq.com\\/oyCBym\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/foursquare.com\\\" rel=\\\"nofollow\\\"\\u003Efoursquare\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322871306944512\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"created_at\":\"Mon Oct 03 10:38:31 +0000 2011\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DBE9ED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"followers_count\":29,\"description\":\"European Designer.\\r\\n\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.andreacevenini.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"favourites_count\":8,\"id_str\":\"384249937\",\"listed_count\":1,\"friends_count\":112,\"profile_link_color\":\"CC3366\",\"protected\":false,\"location\":\"K\\u00f6ln \\/ Paris \\/ Milan\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\",\"screen_name\":\"ACevenini\",\"name\":\"Andrea Cevenini\",\"statuses_count\":53,\"verified\":false,\"profile_background_color\":\"DBE9ED\",\"id\":384249937,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322871306944512}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2412000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e623a44c-caf9-4b96-99b0-c1c0346d83cb-126322871306944512" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2416000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le Web s\\u00e9mantique serait l'analytique et le web social le synth\\u00e9tique (le social peut aussi \\u00eatre analytique)--\",\"created_at\":\"Tue Oct 18 15:44:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322889908682752\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":352,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322889908682752}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2416000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "531a42dc-e3e2-41cc-b8f3-cb90b0ff0dd2-126322889908682752" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Ca y est, on parle de Kant. Je me méfie toujours des pensées basées sur l'esthétique kantienne. --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Ca y est, on parle de Kant. Je me méfie toujours des pensées basées sur l'esthétique kantienne. --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2445000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Ca y est, on parle de Kant. Je me m\\u00e9fie toujours des pens\\u00e9es bas\\u00e9es sur l'esth\\u00e9tique kantienne. --\",\"created_at\":\"Tue Oct 18 15:45:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323009186312192\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7493,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323009186312192}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2445000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ced70a7f-6c17-44e7-b198-36ee78d6f1f5-126323009186312192" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Stiegler : jugement esthétique selon Kant subjectif / réfléchissant #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Stiegler : jugement esthétique selon Kant subjectif / réfléchissant #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2479000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Stiegler : jugement esth\\u00e9tique selon Kant subjectif \\/ r\\u00e9fl\\u00e9chissant #museoweb\",\"created_at\":\"Tue Oct 18 15:46:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[68,77]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323152967041024\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2000,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323152967041024}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2479000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1a2ae8cf-c0fd-41aa-9d36-7d099197babf-126323152967041024" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Il y a du mystique dans la qualification de l'oeuvre par Stiegler, qui nie quelque part son potentiel social et politique. --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Il y a du mystique dans la qualification de l'oeuvre par Stiegler, qui nie quelque part son potentiel social et politique. --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2626000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Il y a du mystique dans la qualification de l'oeuvre par Stiegler, qui nie quelque part son potentiel social et politique. --\",\"created_at\":\"Tue Oct 18 15:48:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323769043193856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7494,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323769043193856}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2626000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9ce8d50d-df86-4ff4-82b4-54f58bd3b5f2-126323769043193856" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Le jugement ne peut pas faire l'objet d'une preuve, dépasse les capacités analytiques. \"une oeuvre est quelque chose d'improbable", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb Le jugement ne peut pas faire l'objet d'une preuve, dépasse les capacités analytiques. \"une oeuvre est quelque chose d'improbable", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2628000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le jugement ne peut pas faire l'objet d'une preuve, d\\u00e9passe les capacit\\u00e9s analytiques. \\\"une oeuvre est quelque chose d'improbable\",\"created_at\":\"Tue Oct 18 15:48:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323778736242689\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1017,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1601,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323778736242689}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2628000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "540bd204-dee2-4457-b4a9-3a55707b7ce8-126323778736242689" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2638000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Une oeuvre d'art d\\u00e9passe mon jugement analytique, elle est improbable++\",\"created_at\":\"Tue Oct 18 15:48:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323821480378368\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":352,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323821480378368}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2638000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "60a879f2-054b-455f-9450-82e720ab6d5c-126323821480378368" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2725000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\\"il faut introduire le web s\\u00e9mantique dans des mus\\u00e9es d'art\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:50:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[74,83]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324185818607616\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2001,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324185818607616}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2725000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "efd3630c-3b3b-4d22-8c01-cd52de64b43c-126324185818607616" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Les communautés de jugement, communautés d'amateur, communiquent plutot qu'analysent ? Quelle place pour le symbole ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Les communautés de jugement, communautés d'amateur, communiquent plutot qu'analysent ? Quelle place pour le symbole ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2737000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Les communaut\\u00e9s de jugement, communaut\\u00e9s d'amateur, communiquent plutot qu'analysent ? Quelle place pour le symbole ??\",\"created_at\":\"Tue Oct 18 15:50:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324237697949697\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7495,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324237697949697}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2737000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d72bd668-f05d-49da-94ef-dfce4a19545f-126324237697949697" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb je ne vois pas en quoi le web sem serait impuissant a exprimer des faits relevant du jugement et non de l'analytique --", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb je ne vois pas en quoi le web sem serait impuissant a exprimer des faits relevant du jugement et non de l'analytique --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2758000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb je ne vois pas en quoi le web sem serait impuissant a exprimer des faits relevant du jugement et non de l'analytique --\",\"created_at\":\"Tue Oct 18 15:50:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324323089784832\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1602,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324323089784832}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2758000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ba7d6fff-d632-4190-be6c-fcbf295aa606-126324323089784832" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Adrienne Alix : espaces de #Wikipédia guidés par la contribution individuelle spontanée #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Adrienne Alix : espaces de #Wikipédia guidés par la contribution individuelle spontanée #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2850000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : espaces de #Wikip\\u00e9dia guid\\u00e9s par la contribution individuelle spontan\\u00e9e #museoweb\",\"created_at\":\"Tue Oct 18 15:52:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Wikip\\u00e9dia\",\"indices\":[27,37]},{\"text\":\"museoweb\",\"indices\":[88,97]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324709888491521\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2002,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324709888491521}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2850000, -"tags": [ -{ -"id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99799640-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e28b384d-3264-4b67-b5d2-e65068b946ce-126324709888491521" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix présente les espaces individuels spontanés de contribution sur #wikipedia, qui convergent vers le #semantique", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix présente les espaces individuels spontanés de contribution sur #wikipedia, qui convergent vers le #semantique", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2850000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les espaces individuels spontan\\u00e9s de contribution sur #wikipedia, qui convergent vers le #semantique\",\"created_at\":\"Tue Oct 18 15:52:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[87,97]},{\"text\":\"semantique\",\"indices\":[122,133]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324711612354560\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7496,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324711612354560}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2850000, -"tags": [ -{ -"id-ref": "99799640-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99799640-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "23078cee-84e8-4396-b4d0-64b252e1d873-126324711612354560" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Google Art : un outil analytique ? Malheureusement pas toujours perçu ainsi --", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Google Art : un outil analytique ? Malheureusement pas toujours perçu ainsi --", -"color": "16763904", -"polemics": [ -"Q", -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2870000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Google Art : un outil analytique ? Malheureusement pas toujours per\\u00e7u ainsi --\",\"created_at\":\"Tue Oct 18 15:52:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324795003510784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"default_profile\":true,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":354,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324795003510784}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2870000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9f4b5a2e-cdf9-4b98-a11f-b0d859ec300d-126324795003510784" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"img": { -"src": "http://a2.twimg.com/profile_images/455510659/balons_normal.jpg" -}, -"title": "Daniel Anic: RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2921000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:53:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325008803954688\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2002,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":3,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Tue Apr 14 12:56:48 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":159,\"description\":\"D\\u00e9veloppeur web & logiciel freelance\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.anic.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":70,\"id_str\":\"31114844\",\"listed_count\":14,\"friends_count\":236,\"profile_link_color\":\"788784\",\"protected\":false,\"location\":\"paris FR\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/455510659\\/balons_normal.jpg\",\"screen_name\":\"anic_fr\",\"name\":\"Daniel Anic\",\"statuses_count\":2132,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":31114844,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/455510659\\/balons_normal.jpg\"},\"retweet_count\":3,\"favorited\":false,\"truncated\":false,\"id\":126325008803954688}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2921000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "56eab658-8b6b-4021-9e26-3ba62328b568-126325008803954688" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"L'encyclopédie de Diderot est loin d'etre neutre de point de vue\". Comme toutes les autres ! Le chercheur est tjrs situable ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"L'encyclopédie de Diderot est loin d'etre neutre de point de vue\". Comme toutes les autres ! Le chercheur est tjrs situable ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2952000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"L'encyclop\\u00e9die de Diderot est loin d'etre neutre de point de vue\\\". Comme toutes les autres ! Le chercheur est tjrs situable ++\",\"created_at\":\"Tue Oct 18 15:53:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325137145470976\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7497,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325137145470976}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2952000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "05990024-8c88-40a0-b3b4-590884b9a844-126325137145470976" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Q à BS: le jugement esthétique ne s'applique-t-il pas au process de grammatisatisation proposé par les plateformes du websocial??", -"img": { -"src": "http://a3.twimg.com/profile_images/535539026/oaoa_normal.JPG" -}, -"title": "Olivier Auber: #museoweb Q à BS: le jugement esthétique ne s'applique-t-il pas au process de grammatisatisation proposé par les plateformes du websocial??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2968000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Q \\u00e0 BS: le jugement esth\\u00e9tique ne s'applique-t-il pas au process de grammatisatisation propos\\u00e9 par les plateformes du websocial??\",\"created_at\":\"Tue Oct 18 15:54:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325206666055682\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"FFFFFF\",\"created_at\":\"Sun Jan 07 07:36:21 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Brussels\",\"profile_sidebar_border_color\":\"FFFFFF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/29472\\/polignac28Gen2NB250.jpg\",\"followers_count\":1760,\"description\":\"Bricolage th\\u00e9orique. Th\\u00e9orie du bricolage.\\r\\nParis - Bruxelles.\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/perspective-numerique.net\",\"following\":null,\"profile_text_color\":\"AC8CB7\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/29472\\/polignac28Gen2NB250.jpg\",\"favourites_count\":2268,\"id_str\":\"609513\",\"listed_count\":179,\"friends_count\":1026,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/535539026\\/oaoa_normal.JPG\",\"screen_name\":\"OlivierAuber\",\"name\":\"Olivier Auber\",\"default_profile\":false,\"statuses_count\":9658,\"verified\":false,\"profile_background_color\":\"FFFFFF\",\"id\":609513,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/535539026\\/oaoa_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325206666055682}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2968000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3e0c4298-93b2-4960-9d29-0a1b98fc687d-126325206666055682" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", -"img": { -"src": "http://a3.twimg.com/profile_images/1562090347/Moi_Facebook_Twitter_redim_normal.jpg" -}, -"title": "Chirollet JC: RT @cblogculture: B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2974000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweeted\":false,\"text\":\"RT @cblogculture: B Stiegler : \\\"il faut introduire le web s\\u00e9mantique dans des mus\\u00e9es d'art\\\" #museoweb\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"entities\":{\"urls\":[],\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[92,101]}],\"user_mentions\":[{\"indices\":[3,16],\"screen_name\":\"cblogculture\",\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"id\":216030846}]},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126325230514864128\",\"place\":null,\"contributors\":null,\"truncated\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"retweeted_status\":{\"retweeted\":false,\"text\":\"B Stiegler : \\\"il faut introduire le web s\\u00e9mantique dans des mus\\u00e9es d'art\\\" #museoweb\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"entities\":{\"urls\":[],\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[74,83]}],\"user_mentions\":[]},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126324185818607616\",\"place\":null,\"contributors\":null,\"truncated\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"retweet_count\":0,\"in_reply_to_user_id\":null,\"favorited\":false,\"created_at\":\"Tue Oct 18 15:50:07 +0000 2011\",\"geo\":null,\"user\":{\"geo_enabled\":false,\"profile_use_background_image\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"profile_text_color\":\"9b8f40\",\"lang\":\"fr\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"location\":\"\",\"id_str\":\"216030846\",\"notifications\":null,\"profile_link_color\":\"da5700\",\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"screen_name\":\"cblogculture\",\"is_translator\":false,\"verified\":false,\"favourites_count\":1,\"listed_count\":62,\"following\":null,\"friends_count\":187,\"profile_background_color\":\"3c4006\",\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"show_all_inline_media\":false,\"contributors_enabled\":false,\"statuses_count\":2002,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"profile_sidebar_fill_color\":\"ced7d6\",\"protected\":false,\"name\":\"C\\/blog\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"followers_count\":1132,\"id\":216030846,\"utc_offset\":null,\"url\":\"http:\\/\\/cblog.culture.fr\"},\"in_reply_to_screen_name\":null,\"id\":126324185818607616},\"retweet_count\":0,\"in_reply_to_user_id\":null,\"favorited\":false,\"created_at\":\"Tue Oct 18 15:54:16 +0000 2011\",\"geo\":null,\"user\":{\"geo_enabled\":false,\"profile_use_background_image\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_text_color\":\"333333\",\"lang\":\"fr\",\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"location\":\"France\",\"id_str\":\"332115667\",\"notifications\":null,\"profile_link_color\":\"0099CC\",\"description\":\"Philosophe, Universitaire_Esth\\u00e9tique_Fractals \\/ Art Fractal_Arts Num\\u00e9riques_Num\\u00e9risation du Patrimoine Artistique_Photographie Num\\u00e9rique\",\"screen_name\":\"fracjc\",\"is_translator\":false,\"verified\":false,\"favourites_count\":3,\"listed_count\":0,\"following\":null,\"friends_count\":134,\"profile_background_color\":\"FFF04D\",\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\",\"show_all_inline_media\":true,\"contributors_enabled\":false,\"statuses_count\":42,\"created_at\":\"Sat Jul 09 07:23:51 +0000 2011\",\"profile_sidebar_fill_color\":\"f6ffd1\",\"protected\":false,\"name\":\"Chirollet JC\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"fff8ad\",\"followers_count\":20,\"id\":332115667,\"utc_offset\":-10800,\"url\":null},\"in_reply_to_screen_name\":null,\"id\":126325230514864128}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2974000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1c12d22f-604d-4ac1-a385-c087ede4ff21-126325230514864128" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2981000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"A Alix : pr\\u00e9sentation de 4 encyclop\\u00e9dies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb\",\"created_at\":\"Tue Oct 18 15:54:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[99,108]}],\"user_mentions\":[],\"urls\":[{\"indices\":[73,84],\"url\":\"Nupedia.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325257618464769\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2003,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325257618464769}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2981000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "8ea3f805-6879-4b8e-8a80-782e739324e5-126325257618464769" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", -"img": { -"src": "http://a1.twimg.com/profile_images/1294841927/mde_normal.jpg" -}, -"title": "MdE78: RT @cblogculture: A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 2997000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: A Alix : pr\\u00e9sentation de 4 encyclop\\u00e9dies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb\",\"created_at\":\"Tue Oct 18 15:54:39 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[117,126]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[{\"indices\":[91,102],\"url\":\"Nupedia.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325328552525825\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f4dc\",\"created_at\":\"Thu Mar 31 14:30:28 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/227482331\\/siteoff0-76911.png\",\"followers_count\":208,\"description\":\"La Maison de l'\\u00c9ducation des Yvelines vous accueille \\u00e0 Marly-le-Roi : M\\u00e9diath\\u00e8que, animations p\\u00e9dagogiques, formations TIce...\",\"default_profile\":false,\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.mde78.fr\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/227482331\\/siteoff0-76911.png\",\"favourites_count\":0,\"id_str\":\"275041850\",\"listed_count\":22,\"friends_count\":201,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Marly le Roi, 78\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1294841927\\/mde_normal.jpg\",\"screen_name\":\"MdE78\",\"name\":\"MdE78\",\"statuses_count\":717,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":275041850,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1294841927\\/mde_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325328552525825}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 2997000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "57bb1c91-0094-4507-ba61-9e4e88951a8c-126325328552525825" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Entre l'encyclopédie Diderot et le dictionnaire sur cdrom j'aurai cité le dico scolaire comme outil largement diffusé--", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Entre l'encyclopédie Diderot et le dictionnaire sur cdrom j'aurai cité le dico scolaire comme outil largement diffusé--", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3034000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Entre l'encyclop\\u00e9die Diderot et le dictionnaire sur cdrom j'aurai cit\\u00e9 le dico scolaire comme outil largement diffus\\u00e9--\",\"created_at\":\"Tue Oct 18 15:55:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325479778156545\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":355,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325479778156545}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3034000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "32cfbdf1-c586-442b-b2e5-0aa4862f0c9c-126325479778156545" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"wikipédia en tant que brouillon de Nupédia\"", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb \"wikipédia en tant que brouillon de Nupédia\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3046000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"wikip\\u00e9dia en tant que brouillon de Nup\\u00e9dia\\\"\",\"created_at\":\"Tue Oct 18 15:55:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325532542517248\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":33,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325532542517248}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3046000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "edb0a7ee-aa20-4b2c-9e9b-51af5f60acb7-126325532542517248" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb L'encyclopédie Universalis n'est pas citée, est ce un acte manqué de la part du principal concurrent de fait Wikipedia ??", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb L'encyclopédie Universalis n'est pas citée, est ce un acte manqué de la part du principal concurrent de fait Wikipedia ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3104000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb L'encyclop\\u00e9die Universalis n'est pas cit\\u00e9e, est ce un acte manqu\\u00e9 de la part du principal concurrent de fait Wikipedia ??\",\"created_at\":\"Tue Oct 18 15:56:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325773975035904\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":355,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325773975035904}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3104000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1631cc74-8716-4239-8c16-a99ed452d289-126325773975035904" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Sur #wikipedia on n'écrit pas seul\" Bon outil de création de symbole contre les solitudes numériques. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Sur #wikipedia on n'écrit pas seul\" Bon outil de création de symbole contre les solitudes numériques. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3149000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Sur #wikipedia on n'\\u00e9crit pas seul\\\" Bon outil de cr\\u00e9ation de symbole contre les solitudes num\\u00e9riques. ++\",\"created_at\":\"Tue Oct 18 15:57:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325963402387456\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7498,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325963402387456}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3149000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "717e0a9c-bb5b-4072-a39e-311103d56d26-126325963402387456" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "3 caractéristiques de Wikipédia : 1. collaborative, ouverte a ts (filtre de la compétence), 2. diffusée ss licence libre #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: 3 caractéristiques de Wikipédia : 1. collaborative, ouverte a ts (filtre de la compétence), 2. diffusée ss licence libre #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3189000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"3 caract\\u00e9ristiques de Wikip\\u00e9dia : 1. collaborative, ouverte a ts (filtre de la comp\\u00e9tence), 2. diffus\\u00e9e ss licence libre #museoweb\",\"created_at\":\"Tue Oct 18 15:57:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[121,130]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326129714937857\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2004,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326129714937857}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3189000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ded701e9-c4a1-4a4c-855e-6b46c4c2b0b8-126326129714937857" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Au départ la licence libre a un but pratique : nécessaire pour pouvoir modifier un contenu existant @AdrienneAlix ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb Au départ la licence libre a un but pratique : nécessaire pour pouvoir modifier un contenu existant @AdrienneAlix ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3220000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Au d\\u00e9part la licence libre a un but pratique : n\\u00e9cessaire pour pouvoir modifier un contenu existant @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 15:58:22 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[110,123],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326260891783168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1603,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326260891783168}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3220000, -"tags": [ -{ -"id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "912d9561-9f2d-4fd0-96c9-c9ed23143626-126326260891783168" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3222000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]},{\"text\":\"empirisme\",\"indices\":[99,109]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326272191234048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7499,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326272191234048}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3222000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "55d5b682-68f7-40c2-904e-066196e70ecc-126326272191234048" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Et 3. Multilingue (+ 280 langues) #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Et 3. Multilingue (+ 280 langues) #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3230000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Et 3. Multilingue (+ 280 langues) #museoweb\",\"created_at\":\"Tue Oct 18 15:58:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[34,43]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326304990699521\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2005,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326304990699521}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3230000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "513105b3-765f-4a57-8efe-91878b84d252-126326304990699521" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb l'encyclopédie Diderot, un travail déja collaboratif ? Pas au sens où on l'entend aujourd'hui, Diderot passait commande--", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb l'encyclopédie Diderot, un travail déja collaboratif ? Pas au sens où on l'entend aujourd'hui, Diderot passait commande--", -"color": "16763904", -"polemics": [ -"Q", -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3234000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb l'encyclop\\u00e9die Diderot, un travail d\\u00e9ja collaboratif ? Pas au sens o\\u00f9 on l'entend aujourd'hui, Diderot passait commande--\",\"created_at\":\"Tue Oct 18 15:58:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326319029039104\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":357,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326319029039104}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3234000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "211a0e30-0aa3-42b4-84f1-4f6f3af8d795-126326319029039104" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", -"img": { -"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" -}, -"title": "Samuel Huron: RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3239000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"wikipedia\",\"indices\":[34,44]},{\"text\":\"empirisme\",\"indices\":[118,128]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326341699248128\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]},{\"text\":\"empirisme\",\"indices\":[99,109]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326272191234048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7499,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326272191234048},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":673,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2407,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326341699248128}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3239000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3e4c6161-9c6b-4a3d-b170-981076a8a44b-126326341699248128" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "2011 : 280 éditions linguistiques, 34 d'entre elles + 100 000 articles #museoweb #Wikipédia", -"img": { -"src": "None" -}, -"title": "C/blog: 2011 : 280 éditions linguistiques, 34 d'entre elles + 100 000 articles #museoweb #Wikipédia", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3293000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"2011 : 280 \\u00e9ditions linguistiques, 34 d'entre elles + 100 000 articles #museoweb #Wikip\\u00e9dia\",\"created_at\":\"Tue Oct 18 15:59:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[71,80]},{\"text\":\"Wikip\\u00e9dia\",\"indices\":[81,91]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326568367833089\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2006,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326568367833089}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3293000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "5e1ee618-9bf2-463e-b165-997efa8ae8a4-126326568367833089" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. Quels buts alors ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. Quels buts alors ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3303000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix sugg\\u00e8re que la production d'articles, m\\u00eame de peu de qualit\\u00e9 est d\\u00e9j\\u00e0 une victoire du projet. Quels buts alors ??\",\"created_at\":\"Tue Oct 18 15:59:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326610222792705\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7500,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326610222792705}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3303000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "83e73434-6446-499d-8334-ec895f241194-126326610222792705" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3306000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix\",\"created_at\":\"Tue Oct 18 15:59:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[75,88],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326624584089601\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1604,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326624584089601}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3306000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9d20d081-b2bf-466a-b7cf-47fcd17df6cb-126326624584089601" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Wikimedia Commons est une médiathèque de contenus centrale, qui compte auj + 11 millions de fichiers #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Wikimedia Commons est une médiathèque de contenus centrale, qui compte auj + 11 millions de fichiers #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3364000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Wikimedia Commons est une m\\u00e9diath\\u00e8que de contenus centrale, qui compte auj + 11 millions de fichiers #museoweb\",\"created_at\":\"Tue Oct 18 16:00:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326866461208576\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2007,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326866461208576}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3364000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "12f4cf3f-09fb-4bb5-afbc-b0d02c10aab6-126326866461208576" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3383000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:01:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[75,87]}],\"user_mentions\":[{\"indices\":[88,101],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326944408158208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1604,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326944408158208}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3383000, -"tags": [ -{ -"id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3b9536d5-29b3-4d21-a4f9-7efde55126b5-126326944408158208" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3384000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 16:01:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"wikipedia\",\"indices\":[34,44]},{\"text\":\"empirisme\",\"indices\":[118,128]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326950406012928\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]},{\"text\":\"empirisme\",\"indices\":[99,109]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326272191234048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7500,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126326272191234048},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12058,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126326950406012928}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3384000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fe6e2eba-9b23-4e1e-aecb-5c643d5e3594-126326950406012928" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3437000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:01:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[67,80],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[111,124],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327173048057856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12059,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327173048057856}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3437000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a658daee-a9e9-4aa3-ab61-e1b7d333987e-126327173048057856" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Wikisource, bibliothèque de textes ss licence libre, + 72 000 textes #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Wikisource, bibliothèque de textes ss licence libre, + 72 000 textes #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3442000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Wikisource, biblioth\\u00e8que de textes ss licence libre, + 72 000 textes #museoweb\",\"created_at\":\"Tue Oct 18 16:02:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[69,78]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327194740989952\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2008,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327194740989952}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3442000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7525842d-a398-45c3-bee7-a076d7c62cdc-126327194740989952" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. ...", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @gonzagauthier: #museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. ...", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3461000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb @AdrienneAlix sugg\\u00e8re que la production d'articles, m\\u00eame de peu de qualit\\u00e9 est d\\u00e9j\\u00e0 une victoire du projet. ...\",\"created_at\":\"Tue Oct 18 16:02:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[29,42],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327270989250561\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix sugg\\u00e8re que la production d'articles, m\\u00eame de peu de qualit\\u00e9 est d\\u00e9j\\u00e0 une victoire du projet. Quels buts alors ??\",\"created_at\":\"Tue Oct 18 15:59:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326610222792705\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7500,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326610222792705},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"default_profile\":false,\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2009,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126327270989250561}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3461000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c3dfe897-dea6-4527-a2b6-b13227ab6f7f-126327270989250561" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Enfin Wikctionnaire a plus de 2 millions d'entrées #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Enfin Wikctionnaire a plus de 2 millions d'entrées #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3511000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Enfin Wikctionnaire a plus de 2 millions d'entr\\u00e9es #museoweb\",\"created_at\":\"Tue Oct 18 16:03:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[51,60]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327482554130433\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2009,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327482554130433}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3511000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2f05211d-3924-4a14-bea5-5f514fe8f00a-126327482554130433" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "5 principes fondateurs : encyclopedie, neutralité de pt de vue, licence libre, organisation sociale, et ps d'autres règles #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: 5 principes fondateurs : encyclopedie, neutralité de pt de vue, licence libre, organisation sociale, et ps d'autres règles #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3588000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"5 principes fondateurs : encyclopedie, neutralit\\u00e9 de pt de vue, licence libre, organisation sociale, et ps d'autres r\\u00e8gles #museoweb\",\"created_at\":\"Tue Oct 18 16:04:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[123,132]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327803917500416\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2010,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327803917500416}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3588000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0412b482-e00a-43bd-9590-4ab4d4ca3a4c-126327803917500416" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Wiktionnaire: 2 million d'entrées.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Wiktionnaire: 2 million d'entrées.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3602000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wiktionnaire: 2 million d'entr\\u00e9es.\",\"created_at\":\"Tue Oct 18 16:04:44 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327865980616704\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7501,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327865980616704}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3602000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a2c05bab-1152-4e2c-9cce-e37f79f253b6-126327865980616704" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"#wikipedia cherche la neutralité de point de vue\" -- illusoire, et je trouve en contradiction avec l'espace de discussion.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"#wikipedia cherche la neutralité de point de vue\" -- illusoire, et je trouve en contradiction avec l'espace de discussion.", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3604000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"#wikipedia cherche la neutralit\\u00e9 de point de vue\\\" -- illusoire, et je trouve en contradiction avec l'espace de discussion.\",\"created_at\":\"Tue Oct 18 16:04:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[11,21]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327872343379969\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7502,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327872343379969}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3604000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3888bce4-d9b5-4d17-9569-3ddcea0f15a7-126327872343379969" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@AdrienneAlix en direct ici http://t.co/oDrL2O41 au #museoweb #wikimedia #wikipedia", -"img": { -"src": "http://a1.twimg.com/profile_images/1565805073/299895_10150306024224639_207251779638_8073973_1796135049_n_normal.jpg" -}, -"title": "DianeDrubay|Buzzeum: @AdrienneAlix en direct ici http://t.co/oDrL2O41 au #museoweb #wikimedia #wikipedia", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3649000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"AdrienneAlix\",\"in_reply_to_user_id\":53406902,\"text\":\"@AdrienneAlix en direct ici http:\\/\\/t.co\\/oDrL2O41 au #museoweb #wikimedia #wikipedia\",\"created_at\":\"Tue Oct 18 16:05:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[52,61]},{\"text\":\"wikimedia\",\"indices\":[62,72]},{\"text\":\"wikipedia\",\"indices\":[73,83]}],\"user_mentions\":[{\"indices\":[0,13],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[28,48],\"url\":\"http:\\/\\/t.co\\/oDrL2O41\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"53406902\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328062336970753\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"faa800\",\"created_at\":\"Sun Nov 25 20:41:30 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/312263247\\/buzzeum_twitter-background.jpg\",\"followers_count\":2032,\"description\":\"Agence de communication culturelle nouveaux m\\u00e9dias et blogueuse depuis 2007\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.buzzeum.com\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/312263247\\/buzzeum_twitter-background.jpg\",\"favourites_count\":50,\"id_str\":\"10569112\",\"listed_count\":172,\"friends_count\":1140,\"profile_link_color\":\"878787\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1565805073\\/299895_10150306024224639_207251779638_8073973_1796135049_n_normal.jpg\",\"screen_name\":\"DianeDrubay\",\"name\":\"DianeDrubay|Buzzeum\",\"default_profile\":false,\"statuses_count\":2189,\"verified\":false,\"profile_background_color\":\"f2f2f2\",\"id\":10569112,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1565805073\\/299895_10150306024224639_207251779638_8073973_1796135049_n_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328062336970753}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3649000, -"tags": [ -{ -"id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997cea3e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997cea3e-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f24e2d4e-acb2-4f8b-8705-da594c698553-126328062336970753" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "s'en va retrouver la #NCO pour suivre ensemble le livetweet de #museoweb. Ou pas...", -"img": { -"src": "http://a3.twimg.com/profile_images/1400384605/Kergarat_v_lo_normal.jpg" -}, -"title": "Pymouss: s'en va retrouver la #NCO pour suivre ensemble le livetweet de #museoweb. Ou pas...", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3745000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"s'en va retrouver la #NCO pour suivre ensemble le livetweet de #museoweb. Ou pas...\",\"created_at\":\"Tue Oct 18 16:07:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"NCO\",\"indices\":[21,25]},{\"text\":\"museoweb\",\"indices\":[63,72]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328463874469888\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Sat Apr 11 13:26:15 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/151596582\\/Rennes_090624-10a.jpg\",\"followers_count\":438,\"description\":\"Wikip\\u00e9dien, wikim\\u00e9dien, libriste, OSMiste.\\r\\nRennais et bretonnant d\\u00e9butant.\\r\\nPhotographe amateur de choses sans int\\u00e9r\\u00eat.\\r\\nEt plein d'autres choses\\u2026\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/pymouss.blogspot.com\\/\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/151596582\\/Rennes_090624-10a.jpg\",\"favourites_count\":0,\"id_str\":\"30446524\",\"listed_count\":76,\"friends_count\":300,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Rennes\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1400384605\\/Kergarat_v_lo_normal.jpg\",\"screen_name\":\"Pymouss\",\"name\":\"Pymouss\",\"default_profile\":false,\"statuses_count\":8015,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":30446524,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1400384605\\/Kergarat_v_lo_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328463874469888}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3745000, -"tags": [ -{ -"id-ref": "997cea3e-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "95ac111a-66a6-437d-80bf-2b7d9ead5dd9-126328463874469888" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", -"img": { -"src": "http://a2.twimg.com/profile_images/1158679288/modem-usr-courier_normal.jpg" -}, -"title": "Stéphane Bortzmeyer: RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3748000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:07:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[89,101]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[102,115],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twmode.sf.net\\/\\\" rel=\\\"nofollow\\\"\\u003Etwmode\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328477401104386\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:01:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[75,87]}],\"user_mentions\":[{\"indices\":[88,101],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326944408158208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1605,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326944408158208},\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Fri Sep 18 12:06:45 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":2164,\"description\":\"Indig\\u00e8ne de l'Internet, pas encore Civilis\\u00e9.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.bortzmeyer.org\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":2,\"id_str\":\"75263632\",\"listed_count\":166,\"friends_count\":648,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\",\"screen_name\":\"bortzmeyer\",\"name\":\"St\\u00e9phane Bortzmeyer\",\"statuses_count\":16920,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":75263632,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328477401104386}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3748000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f0cac747-4b4a-4141-b092-4de05e240866-126328477401104386" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Types d'utilisateurs : anonymes, utilisateurs, administrateurs, arbitres et patrouilleurs, bureaucrates et stewards #museoweb #Wikipédia", -"img": { -"src": "None" -}, -"title": "C/blog: Types d'utilisateurs : anonymes, utilisateurs, administrateurs, arbitres et patrouilleurs, bureaucrates et stewards #museoweb #Wikipédia", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3753000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Types d'utilisateurs : anonymes, utilisateurs, administrateurs, arbitres et patrouilleurs, bureaucrates et stewards #museoweb #Wikip\\u00e9dia\",\"created_at\":\"Tue Oct 18 16:07:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[116,125]},{\"text\":\"Wikip\\u00e9dia\",\"indices\":[126,136]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328498171289600\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2011,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328498171289600}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3753000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fa66c15e-2d0e-4eef-a5f7-ec9187d80b1c-126328498171289600" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb les administrateurs de WP n'ont pas un pouvoir éditorial mais un pouvoir technique de police", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb les administrateurs de WP n'ont pas un pouvoir éditorial mais un pouvoir technique de police", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3765000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb les administrateurs de WP n'ont pas un pouvoir \\u00e9ditorial mais un pouvoir technique de police\",\"created_at\":\"Tue Oct 18 16:07:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328548523900928\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1606,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328548523900928}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3765000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "27988d58-da30-445e-8b86-683c31c57d66-126328548523900928" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", -"img": { -"src": "http://a2.twimg.com/profile_images/1158679288/modem-usr-courier_normal.jpg" -}, -"title": "Stéphane Bortzmeyer: RT @figoblog: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3784000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:07:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[89,102],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twmode.sf.net\\/\\\" rel=\\\"nofollow\\\"\\u003Etwmode\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328629050347520\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix\",\"created_at\":\"Tue Oct 18 15:59:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[75,88],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326624584089601\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1606,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126326624584089601},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Fri Sep 18 12:06:45 +0000 2009\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":2164,\"description\":\"Indig\\u00e8ne de l'Internet, pas encore Civilis\\u00e9.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.bortzmeyer.org\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":2,\"id_str\":\"75263632\",\"listed_count\":166,\"friends_count\":648,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\",\"screen_name\":\"bortzmeyer\",\"name\":\"St\\u00e9phane Bortzmeyer\",\"statuses_count\":16921,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":75263632,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126328629050347520}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3784000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b8983d50-2fb0-4edc-8345-5343c35bc378-126328629050347520" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix présente les pouvoirs dans #wikipedia, élus par les contributeurs. Mais quelle organisation sociale au-delà ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix présente les pouvoirs dans #wikipedia, élus par les contributeurs. Mais quelle organisation sociale au-delà ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3792000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les pouvoirs dans #wikipedia, \\u00e9lus par les contributeurs. Mais quelle organisation sociale au-del\\u00e0 ??\",\"created_at\":\"Tue Oct 18 16:07:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[51,61]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328659345817600\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7503,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328659345817600}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3792000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3d29e464-e8c2-407f-ae77-d306736cc91c-126328659345817600" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb arbitres = pouvoir de justice sur les problèmes d'entente entre contributeurs.", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb arbitres = pouvoir de justice sur les problèmes d'entente entre contributeurs.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3826000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb arbitres = pouvoir de justice sur les probl\\u00e8mes d'entente entre contributeurs.\",\"created_at\":\"Tue Oct 18 16:08:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328804745547776\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1607,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328804745547776}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3826000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c390f2dc-e588-49d1-af27-08a3bde71658-126328804745547776" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Peut-on dire que #wikipedia est responsable des savoirs et de ses instances de régulation devant les citoyens ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Peut-on dire que #wikipedia est responsable des savoirs et de ses instances de régulation devant les citoyens ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3857000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Peut-on dire que #wikipedia est responsable des savoirs et de ses instances de r\\u00e9gulation devant les citoyens ??\",\"created_at\":\"Tue Oct 18 16:08:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[27,37]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328933087055872\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7504,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328933087055872}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3857000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1530c1ad-ca7f-49f6-a6d5-1d21f464c6d0-126328933087055872" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3872000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[108,121],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328994860769280\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1608,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328994860769280}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3872000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d6dbf1b7-aef7-4da4-bc81-3aa3e9e13917-126328994860769280" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix présente les robots comme un type de contributeur. #transhumanisme ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix présente les robots comme un type de contributeur. #transhumanisme ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3899000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les robots comme un type de contributeur. #transhumanisme ++\",\"created_at\":\"Tue Oct 18 16:09:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"transhumanisme\",\"indices\":[75,90]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329110782943233\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"default_profile\":true,\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7505,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329110782943233}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3899000, -"tags": [ -{ -"id-ref": "997d0898-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "67327064-15a8-47d3-b8c6-80c8431c620a-126329110782943233" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Ce sont actuellement les robots qui font le plus de contributions. Certains apportent même maintenant des contenus\"", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Ce sont actuellement les robots qui font le plus de contributions. Certains apportent même maintenant des contenus\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3934000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Ce sont actuellement les robots qui font le plus de contributions. Certains apportent m\\u00eame maintenant des contenus\\\"\",\"created_at\":\"Tue Oct 18 16:10:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329255314464769\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7506,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329255314464769}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3934000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6a7075c2-0f39-4063-aaa0-dfc4b6e1fdcb-126329255314464769" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb les robots sont ceux qui font le plus de contributions (pas forcement qui apportent le plus de contenus) ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb les robots sont ceux qui font le plus de contributions (pas forcement qui apportent le plus de contenus) ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3946000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb les robots sont ceux qui font le plus de contributions (pas forcement qui apportent le plus de contenus) ++\",\"created_at\":\"Tue Oct 18 16:10:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329305713225728\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1609,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329305713225728}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3946000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "353b1fa8-f80d-4b0a-915f-9e1bb2af005e-126329305713225728" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@gonzagauthier Pourquoi illusoire ? Tt fonctionne ainsi. Et établir cet état de la connaissance/balance nécessite de se parler #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: @gonzagauthier Pourquoi illusoire ? Tt fonctionne ainsi. Et établir cet état de la connaissance/balance nécessite de se parler #museoweb", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3953000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier Pourquoi illusoire ? Tt fonctionne ainsi. Et \\u00e9tablir cet \\u00e9tat de la connaissance\\/balance n\\u00e9cessite de se parler #museoweb\",\"created_at\":\"Tue Oct 18 16:10:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[127,136]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126327872343379969\",\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329334842667008\",\"in_reply_to_status_id\":126327872343379969,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12060,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329334842667008}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3953000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "eb6e3f25-a914-46ac-9abd-ddea86ea6ebe-126329334842667008" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Quelle place peut tenir le web social + #semantique dans la recherche sur l'intelligence artificielle ?", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Quelle place peut tenir le web social + #semantique dans la recherche sur l'intelligence artificielle ?", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3972000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Quelle place peut tenir le web social + #semantique dans la recherche sur l'intelligence artificielle ?\",\"created_at\":\"Tue Oct 18 16:10:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"semantique\",\"indices\":[50,61]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329416979726336\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7507,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329416979726336}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3972000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f02d4f2d-a736-4cbc-969b-ea2b71912323-126329416979726336" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Wikipédia, ce sont 15 000 contributeurs actifs par mois & 1 million de comptes crées en France depuis sa création #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Wikipédia, ce sont 15 000 contributeurs actifs par mois & 1 million de comptes crées en France depuis sa création #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 3977000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Wikip\\u00e9dia, ce sont 15 000 contributeurs actifs par mois & 1 million de comptes cr\\u00e9es en France depuis sa cr\\u00e9ation #museoweb\",\"created_at\":\"Tue Oct 18 16:10:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[115,124]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329437313695744\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2012,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329437313695744}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 3977000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2f65975e-f612-4aa9-b098-38dd41fe098f-126329437313695744" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb 180 administrateurs (police), adminstrateurs (justice), patrouilleurs (jardiniers),bureaucrates, robots,une hiérachie non-dite??", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb 180 administrateurs (police), adminstrateurs (justice), patrouilleurs (jardiniers),bureaucrates, robots,une hiérachie non-dite??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4015000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 180 administrateurs (police), adminstrateurs (justice), patrouilleurs (jardiniers),bureaucrates, robots,une hi\\u00e9rachie non-dite??\",\"created_at\":\"Tue Oct 18 16:11:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329596927942657\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"default_profile\":true,\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":358,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329596927942657}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4015000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d3a95650-1a9b-401b-879b-d160472a316e-126329596927942657" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb point #victorhugo pour @AdrienneAlix :-)", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb point #victorhugo pour @AdrienneAlix :-)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4072000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb point #victorhugo pour @AdrienneAlix :-)\",\"created_at\":\"Tue Oct 18 16:12:34 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"victorhugo\",\"indices\":[16,27]}],\"user_mentions\":[{\"indices\":[33,46],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329835449626624\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1610,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329835449626624}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4072000, -"tags": [ -{ -"id-ref": "997df30c-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "79ed82f6-3913-4f1d-b811-381f7b22459b-126329835449626624" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", -"img": { -"src": "http://a2.twimg.com/profile_images/1158679288/modem-usr-courier_normal.jpg" -}, -"title": "Stéphane Bortzmeyer: RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4127000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:13:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id_str\":\"8814092\",\"id\":8814092},{\"indices\":[122,135],\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id_str\":\"53406902\",\"id\":53406902}],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twmode.sf.net\\/\\\" rel=\\\"nofollow\\\"\\u003Etwmode\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126330065230372864\",\"user\":{\"statuses_count\":16927,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"default_profile\":true,\"profile_background_tile\":false,\"created_at\":\"Fri Sep 18 12:06:45 +0000 2009\",\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Indig\\u00e8ne de l'Internet, pas encore Civilis\\u00e9.\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":\"http:\\/\\/www.bortzmeyer.org\\/\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":2164,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":2,\"screen_name\":\"bortzmeyer\",\"name\":\"St\\u00e9phane Bortzmeyer\",\"id_str\":\"75263632\",\"listed_count\":166,\"friends_count\":648,\"profile_link_color\":\"0084B4\",\"id\":75263632,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126330065230372864,\"retweeted_status\":{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[108,121],\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id_str\":\"53406902\",\"id\":53406902}],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126328994860769280\",\"user\":{\"statuses_count\":1610,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"default_profile\":false,\"profile_background_tile\":true,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"profile_sidebar_fill_color\":\"e0ff92\",\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"url\":\"http:\\/\\/www.figoblog.org\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",\"protected\":false,\"location\":\"Paris\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"id\":8814092,\"utc_offset\":-10800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126328994860769280}}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4127000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2634e0f0-0857-4d06-8722-9c9764a078b3-126330065230372864" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@RemiMathis Car même un consensus n'est pas neutre. Et une étude des pages de discussion doit montrer des tensions culturelles. #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: @RemiMathis Car même un consensus n'est pas neutre. Et une étude des pages de discussion doit montrer des tensions culturelles. #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4153000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"@RemiMathis Car m\\u00eame un consensus n'est pas neutre. Et une \\u00e9tude des pages de discussion doit montrer des tensions culturelles. #museoweb\",\"created_at\":\"Tue Oct 18 16:13:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[128,137]}],\"user_mentions\":[{\"indices\":[0,11],\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id_str\":\"29508165\",\"id\":29508165}],\"urls\":[]},\"in_reply_to_screen_name\":\"RemiMathis\",\"in_reply_to_user_id\":29508165,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":\"29508165\",\"contributors\":null,\"id_str\":\"126330175586709505\",\"user\":{\"statuses_count\":7508,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":null,\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"id\":136900327,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"in_reply_to_status_id\":null,\"id\":126330175586709505}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4153000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "cd835fa7-8823-4c63-84c8-24cf42fc0e79-126330175586709505" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4184000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:14:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[122,135],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126330303026446336\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[108,121],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328994860769280\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1610,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126328994860769280},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2011,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126330303026446336}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4184000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f007b153-28b4-4931-9718-034cb97f3f29-126330303026446336" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix présente le fonctionnement dans #wikipedia de la création de liens entre contenus, dans la lignée de Stiegler.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix présente le fonctionnement dans #wikipedia de la création de liens entre contenus, dans la lignée de Stiegler.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4297000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente le fonctionnement dans #wikipedia de la cr\\u00e9ation de liens entre contenus, dans la lign\\u00e9e de Stiegler.\",\"created_at\":\"Tue Oct 18 16:16:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[56,66]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126330777393836032\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7509,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126330777393836032}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4297000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b4c11a1a-62d7-48b8-84d1-a800bc2b2e69-126330777393836032" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb In fine, une notice pourrait être composée entièrement de lien !!! Y a t il une modération à ce niveau ??", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb In fine, une notice pourrait être composée entièrement de lien !!! Y a t il une modération à ce niveau ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4340000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb In fine, une notice pourrait \\u00eatre compos\\u00e9e enti\\u00e8rement de lien !!! Y a t il une mod\\u00e9ration \\u00e0 ce niveau ??\",\"created_at\":\"Tue Oct 18 16:17:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126330959124639744\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"default_profile\":true,\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":359,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126330959124639744}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4340000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d7054900-c216-4a1d-9a60-7553c350dbc6-126330959124639744" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Wikipédia \"Liens qui vont permettre au lecteur un parcours d’opportunité\" C'est tt le charme des encyclopédie !", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb Wikipédia \"Liens qui vont permettre au lecteur un parcours d’opportunité\" C'est tt le charme des encyclopédie !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4370000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wikip\\u00e9dia \\\"Liens qui vont permettre au lecteur un parcours d\\u2019opportunit\\u00e9\\\" C'est tt le charme des encyclop\\u00e9die !\",\"created_at\":\"Tue Oct 18 16:17:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331084878249984\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":35,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331084878249984}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4370000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4ae64354-71bc-4281-85e6-f145cfeddbba-126331084878249984" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Liens d'opportunité\" qui créent un réseau de connaissance anti-éditorial, personnel, qui contrent le savoir=pouvoir.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Liens d'opportunité\" qui créent un réseau de connaissance anti-éditorial, personnel, qui contrent le savoir=pouvoir.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4435000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Liens d'opportunit\\u00e9\\\" qui cr\\u00e9ent un r\\u00e9seau de connaissance anti-\\u00e9ditorial, personnel, qui contrent le savoir=pouvoir.\",\"created_at\":\"Tue Oct 18 16:18:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331356182618112\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7510,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331356182618112}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4435000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4f587987-d48d-4c4c-9ee7-d8806c36020d-126331356182618112" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": ".@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4443000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\".@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/lFrsriQC :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:18:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[99,108]}],\"user_mentions\":[{\"indices\":[1,14],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[74,94],\"url\":\"http:\\/\\/t.co\\/lFrsriQC\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331392534646784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12063,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331392534646784}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4443000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "20f405dd-83f4-460f-9c8c-bd7a49c0657a-126331392534646784" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Sans hyperlien nous sommes perdu dans le monde social du Web !!++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Sans hyperlien nous sommes perdu dans le monde social du Web !!++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4475000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Sans hyperlien nous sommes perdu dans le monde social du Web !!++\",\"created_at\":\"Tue Oct 18 16:19:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331525670248448\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":359,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331525670248448}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4475000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7dd2cc7d-4987-424b-a259-e12d700ccbd7-126331525670248448" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un livre non catalogué !", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un livre non catalogué !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4475000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb pas de politique \\u00e9ditoriale sur les liens, mais un article sans lien est \\\"orphelin\\\" : il est perdu, comme un livre non catalogu\\u00e9 !\",\"created_at\":\"Tue Oct 18 16:19:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331527222136833\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1611,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331527222136833}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4475000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c390ae2e-efc0-46ae-bfa9-18f91d3e7c6f-126331527222136833" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Adrienne Alix : \"Un article qui n'est pas lié est perdu.\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Adrienne Alix : \"Un article qui n'est pas lié est perdu.\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4502000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : \\\"Un article qui n'est pas li\\u00e9 est perdu.\\\" #museoweb\",\"created_at\":\"Tue Oct 18 16:19:44 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[58,67]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331638497017856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2013,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331638497017856}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4502000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0b1eb04a-9368-495a-94f0-d87f9e1fb189-126331638497017856" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4538000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\\\" @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:20:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[100,113],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331790033039360\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1612,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331790033039360}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4538000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f16af770-d0b7-46fc-9d5b-82fe7cbfcd90-126331790033039360" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Création de portails Culture.fr sur Wikipedia : un beau projet++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Création de portails Culture.fr sur Wikipedia : un beau projet++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4579000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb Cr\\u00e9ation de portails Culture.fr sur Wikipedia : un beau projet++\",\"created_at\":\"Tue Oct 18 16:21:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126331963362652160\",\"user\":{\"statuses_count\":361,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"geo_enabled\":false,\"profile_use_background_image\":true,\"default_profile\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris, France\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"id\":68424173,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126331963362652160}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4579000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3e828121-1578-4f54-aed3-1e22a8f128b1-126331963362652160" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un liv ...", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @figoblog: #museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un liv ...", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4586000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb pas de politique \\u00e9ditoriale sur les liens, mais un article sans lien est \\\"orphelin\\\" : il est perdu, comme un liv ...\",\"created_at\":\"Tue Oct 18 16:21:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331989853863936\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb pas de politique \\u00e9ditoriale sur les liens, mais un article sans lien est \\\"orphelin\\\" : il est perdu, comme un livre non catalogu\\u00e9 !\",\"created_at\":\"Tue Oct 18 16:19:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331527222136833\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1612,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126331527222136833},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2013,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":true,\"id\":126331989853863936}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4586000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3aa58843-5809-4687-a198-e26b74812b72-126331989853863936" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @figoblog: #museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4596000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb \\\"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\\\" @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:21:18 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[114,127],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332034368028672\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\\\" @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:20:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[100,113],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331790033039360\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1612,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331790033039360},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2014,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332034368028672}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4596000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "cbd0359c-eb6b-42fe-8032-941f15724817-126332034368028672" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix présente les portails, les catégories. Comment peut-on rediscuter collectivement ces systèmes dans #wikipedia ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix présente les portails, les catégories. Comment peut-on rediscuter collectivement ces systèmes dans #wikipedia ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4623000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les portails, les cat\\u00e9gories. Comment peut-on rediscuter collectivement ces syst\\u00e8mes dans #wikipedia ??\",\"created_at\":\"Tue Oct 18 16:21:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[123,133]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332147580669953\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7511,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332147580669953}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4623000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b7c4b725-b6b0-4043-a0f9-4228244d6649-126332147580669953" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "On sent l'influence des bibliothécaires sur Wikipédia à la récurrence des points Victor Hugo :-) #museoweb (cc @figoblog @adrienneAlix)", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: On sent l'influence des bibliothécaires sur Wikipédia à la récurrence des points Victor Hugo :-) #museoweb (cc @figoblog @adrienneAlix)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4647000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"On sent l'influence des biblioth\\u00e9caires sur Wikip\\u00e9dia \\u00e0 la r\\u00e9currence des points Victor Hugo :-) #museoweb (cc @figoblog @adrienneAlix)\",\"created_at\":\"Tue Oct 18 16:22:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[97,106]}],\"user_mentions\":[{\"indices\":[111,120],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[121,134],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332248600494080\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12064,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332248600494080}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4647000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ced68d2d-d502-4fe7-aca1-f6e3fff2cd35-126332248600494080" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb et de deux ! #pointVictorHugo @AdrienneAlix bravo :-)", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb et de deux ! #pointVictorHugo @AdrienneAlix bravo :-)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4654000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb et de deux ! #pointVictorHugo @AdrienneAlix bravo :-)\",\"created_at\":\"Tue Oct 18 16:22:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"pointVictorHugo\",\"indices\":[23,39]}],\"user_mentions\":[{\"indices\":[40,53],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332276123500546\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1614,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332276123500546}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4654000, -"tags": [ -{ -"id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "39609c2e-7f65-4227-a15c-192f796220ce-126332276123500546" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Car catégories et portails créent beaucoup de pouvoir sur les contenus. @AdrienneAlix explique qu'elles se créent collectivement.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Car catégories et portails créent beaucoup de pouvoir sur les contenus. @AdrienneAlix explique qu'elles se créent collectivement.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4675000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Car cat\\u00e9gories et portails cr\\u00e9ent beaucoup de pouvoir sur les contenus. @AdrienneAlix explique qu'elles se cr\\u00e9ent collectivement.\",\"created_at\":\"Tue Oct 18 16:22:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[82,95],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332364522659840\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7512,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332364522659840}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4675000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "36e39734-77df-425a-9df7-77891b3bcb6c-126332364522659840" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Car catégories et portails créent beaucoup de pouvoir sur contenus. @AdrienneAlix explique qu'elles se créent collectivement ++.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Car catégories et portails créent beaucoup de pouvoir sur contenus. @AdrienneAlix explique qu'elles se créent collectivement ++.", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4683000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Car cat\\u00e9gories et portails cr\\u00e9ent beaucoup de pouvoir sur contenus. @AdrienneAlix explique qu'elles se cr\\u00e9ent collectivement ++.\",\"created_at\":\"Tue Oct 18 16:22:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[78,91],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332399180189696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7513,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332399180189696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4683000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "422e4890-6ae8-4537-8ffd-aa5ce16ec52e-126332399180189696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vincentpuig: #museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", -"img": { -"src": "http://a2.twimg.com/profile_images/1444079862/image_normal.jpg" -}, -"title": "jean louis Frechin: RT @vincentpuig: #museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4761000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb Le Web s\\u00e9mantique serait l'analytique et le web social le synth\\u00e9tique (le social peut aussi \\u00eatre analytique)--\",\"created_at\":\"Tue Oct 18 16:24:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332726155542529\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le Web s\\u00e9mantique serait l'analytique et le web social le synth\\u00e9tique (le social peut aussi \\u00eatre analytique)--\",\"created_at\":\"Tue Oct 18 15:44:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322889908682752\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":361,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126322889908682752},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Thu May 01 11:37:17 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Lisbon\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"followers_count\":2032,\"description\":\"design num\\u00e9rique, produits, services, innovation & pens\\u00e9es autour du design. Et encore plus http:\\/\\/www.nodesignlab.net\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.nodesign.net\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"favourites_count\":65,\"id_str\":\"14613124\",\"listed_count\":195,\"friends_count\":707,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"38.717470,-9.153256\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\",\"screen_name\":\"nodesign\",\"name\":\"jean louis Frechin\",\"statuses_count\":9849,\"verified\":false,\"profile_background_color\":\"0d0f1a\",\"id\":14613124,\"profile_background_tile\":true,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126332726155542529}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4761000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "47da07ac-9b45-465a-8ce0-5a530d046577-126332726155542529" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Les catégories, une ontologie dynamique, ce sont les orages sémantiques de B. Stiegler !++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Les catégories, une ontologie dynamique, ce sont les orages sémantiques de B. Stiegler !++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4765000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb Les cat\\u00e9gories, une ontologie dynamique, ce sont les orages s\\u00e9mantiques de B. Stiegler !++\",\"created_at\":\"Tue Oct 18 16:24:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126332742601412608\",\"user\":{\"statuses_count\":362,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris, France\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"id\":68424173,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126332742601412608}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4765000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e85052a9-dbd5-47a2-a705-54bb41a3aef1-126332742601412608" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @AdrienneAlix montre l'exemple de l'enjeu intellectuel ou légal des catégorie: origines ethniques et religieuses, etc. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @AdrienneAlix montre l'exemple de l'enjeu intellectuel ou légal des catégorie: origines ethniques et religieuses, etc. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4773000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix montre l'exemple de l'enjeu intellectuel ou l\\u00e9gal des cat\\u00e9gorie: origines ethniques et religieuses, etc. ++\",\"created_at\":\"Tue Oct 18 16:24:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332776961159168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7514,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332776961159168}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4773000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1d96c5bd-8d8a-4082-8ad0-f485e91b13df-126332776961159168" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb les classifications posent des questions éthiques : qui mettre dans une catégorie \"dictateurs\" ou \"écrivain juif\" ?", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb les classifications posent des questions éthiques : qui mettre dans une catégorie \"dictateurs\" ou \"écrivain juif\" ?", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4810000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb les classifications posent des questions \\u00e9thiques : qui mettre dans une cat\\u00e9gorie \\\"dictateurs\\\" ou \\\"\\u00e9crivain juif\\\" ?\",\"created_at\":\"Tue Oct 18 16:24:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332929126301696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1615,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332929126301696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4810000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6e41770b-7c57-43fa-8998-a5fc7a098426-126332929126301696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb http://t.co/X0cwHJ8Q on peut suivre de chez soi le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", -"img": { -"src": "http://a1.twimg.com/profile_images/1578535119/DylanGlaser_normal.jpg" -}, -"title": "lizarewind: #museoweb http://t.co/X0cwHJ8Q on peut suivre de chez soi le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4823000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb http:\\/\\/t.co\\/X0cwHJ8Q on peut suivre de chez soi le s\\u00e9minaire \\\"Mus\\u00e9ologie, mus\\u00e9ographie et nouvelles formes d\\u2019adresse au public\\\"\",\"created_at\":\"Tue Oct 18 16:25:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[10,30],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332986508587008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":550,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":641,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"default_profile\":false,\"statuses_count\":5535,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332986508587008}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4823000, -"tags": [ -{ -"id-ref": "99807532-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d35a9bf8-d190-4b3c-8c7a-9633066c2133-126332986508587008" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "“@vincentpuig: #museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++” #fablab #open +++", -"img": { -"src": "http://a2.twimg.com/profile_images/1444079862/image_normal.jpg" -}, -"title": "jean louis Frechin: “@vincentpuig: #museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++” #fablab #open +++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4833000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\u201c@vincentpuig: #museoweb Une oeuvre d'art d\\u00e9passe mon jugement analytique, elle est improbable++\\u201d #fablab #open +++\",\"created_at\":\"Tue Oct 18 16:25:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]},{\"text\":\"fablab\",\"indices\":[98,105]},{\"text\":\"open\",\"indices\":[106,111]}],\"user_mentions\":[{\"indices\":[1,13],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333026144759808\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Thu May 01 11:37:17 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Lisbon\",\"profile_sidebar_border_color\":\"181A1E\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"followers_count\":2032,\"description\":\"design num\\u00e9rique, produits, services, innovation & pens\\u00e9es autour du design. Et encore plus http:\\/\\/www.nodesignlab.net\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.nodesign.net\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"favourites_count\":65,\"id_str\":\"14613124\",\"listed_count\":195,\"friends_count\":707,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"38.717470,-9.153256\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\",\"screen_name\":\"nodesign\",\"name\":\"jean louis Frechin\",\"statuses_count\":9850,\"verified\":false,\"profile_background_color\":\"0d0f1a\",\"id\":14613124,\"profile_background_tile\":true,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333026144759808}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4833000, -"tags": [ -{ -"id-ref": "998143a4-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998143a4-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b1e1fe00-64ea-41f7-82db-a0713ab324ad-126333026144759808" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4855000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-) ++\",\"created_at\":\"Tue Oct 18 16:25:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333121347076097\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1616,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333121347076097}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4855000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "cf2071e3-285b-4942-8d25-bfa94c380a5b-126333121347076097" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"L'infobox est une recherche de rationnel dans l'article #wikipedia.\"", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"L'infobox est une recherche de rationnel dans l'article #wikipedia.\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4856000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"L'infobox est une recherche de rationnel dans l'article #wikipedia.\\\"\",\"created_at\":\"Tue Oct 18 16:25:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[67,77]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333122089455617\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7515,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333122089455617}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4856000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "85eb9f12-2739-4879-81eb-a273444537ad-126333122089455617" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb En pratique, sur wikipédia le système des catégories est très insatisfaisant. Ce n'est pas le point fort du système. --", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb En pratique, sur wikipédia le système des catégories est très insatisfaisant. Ce n'est pas le point fort du système. --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4877000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb En pratique, sur wikip\\u00e9dia le syst\\u00e8me des cat\\u00e9gories est tr\\u00e8s insatisfaisant. Ce n'est pas le point fort du syst\\u00e8me. --\",\"created_at\":\"Tue Oct 18 16:25:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333210425696256\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":36,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333210425696256}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4877000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b494db4a-a3de-4e9a-90d5-be3dfe680e5b-126333210425696256" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Les infobox : la notice dynamique, mais aussi la puissance du formulaire !++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Les infobox : la notice dynamique, mais aussi la puissance du formulaire !++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4885000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Les infobox : la notice dynamique, mais aussi la puissance du formulaire !++\",\"created_at\":\"Tue Oct 18 16:26:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333247079714818\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":363,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333247079714818}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4885000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1153fee8-514c-42a8-bc6c-fb8a1649ec6b-126333247079714818" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Metadonnées des images sur wikipédia : comment les intégrer au fichier, et utiliser quelques standard ? ??", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb Metadonnées des images sur wikipédia : comment les intégrer au fichier, et utiliser quelques standard ? ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4923000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Metadonn\\u00e9es des images sur wikip\\u00e9dia\\u00a0: comment les int\\u00e9grer au fichier, et utiliser quelques standard\\u00a0? ??\",\"created_at\":\"Tue Oct 18 16:26:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333405007855616\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"default_profile\":false,\"statuses_count\":37,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333405007855616}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4923000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fb997020-2298-45c5-8128-37962bed3b33-126333405007855616" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Une image sans description est une image sans intérêt\" Bientôt de la reconnaissance d'image pour rapprocher des ressemblances ??", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Une image sans description est une image sans intérêt\" Bientôt de la reconnaissance d'image pour rapprocher des ressemblances ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 4924000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Une image sans description est une image sans int\\u00e9r\\u00eat\\\" Bient\\u00f4t de la reconnaissance d'image pour rapprocher des ressemblances ??\",\"created_at\":\"Tue Oct 18 16:26:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333410405924864\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7516,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333410405924864}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 4924000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "43ba84f1-7f54-424c-a54a-cff881274003-126333410405924864" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: RT @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5033000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-) ++\",\"created_at\":\"Tue Oct 18 16:28:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333867496976384\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-) ++\",\"created_at\":\"Tue Oct 18 16:25:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333121347076097\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1616,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333121347076097},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"default_profile\":false,\"statuses_count\":12065,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333867496976384}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5033000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "43d1a4b4-43a3-4314-b8e9-8c0253acb321-126333867496976384" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb gallerie d'images sur wikicommons très frustrante du fait de son organisation hiérarchique --", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb gallerie d'images sur wikicommons très frustrante du fait de son organisation hiérarchique --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5063000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb gallerie d'images sur wikicommons tr\\u00e8s frustrante du fait de son organisation hi\\u00e9rarchique --\",\"created_at\":\"Tue Oct 18 16:29:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333990704648192\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"default_profile\":false,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":38,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333990704648192}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5063000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b52ecfa3-d7a6-4699-99f8-6a2c21d2e51e-126333990704648192" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5131000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:30:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[24,34]},{\"text\":\"museoweb\",\"indices\":[91,100]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334278446485505\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2014,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334278446485505}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5131000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c77d1271-f1ce-4b16-87a7-e19403b89375-126334278446485505" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aammonz roi du #teasing :-)", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb @aammonz roi du #teasing :-)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5220000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aammonz roi du #teasing :-)\",\"created_at\":\"Tue Oct 18 16:31:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"teasing\",\"indices\":[26,34]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334651685027840\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1617,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334651685027840}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5220000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6a6cbab2-fd37-43aa-b077-3ee44279608e-126334651685027840" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5228000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:31:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[42,52]},{\"text\":\"museoweb\",\"indices\":[109,118]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334685444972545\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:30:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[24,34]},{\"text\":\"museoweb\",\"indices\":[91,100]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334278446485505\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2014,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334278446485505},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2015,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334685444972545}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5228000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "93a92c00-fbc3-4c5d-9517-6169c9fe1ec8-126334685444972545" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Alexandre Monnin : \"combien de webs finalement ?\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Alexandre Monnin : \"combien de webs finalement ?\" #museoweb", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5279000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Alexandre Monnin : \\\"combien de webs finalement ?\\\" #museoweb\",\"created_at\":\"Tue Oct 18 16:32:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[50,59]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334897467031553\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2015,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334897467031553}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5279000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c99a726c-b748-4898-88a1-5af8009715db-126334897467031553" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb web 1.0, 2.0, 3.0... Mais combien y a t'il de webs ? @aamonnz", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb web 1.0, 2.0, 3.0... Mais combien y a t'il de webs ? @aamonnz", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5315000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb web 1.0, 2.0, 3.0... Mais combien y a t'il de webs ? @aamonnz\",\"created_at\":\"Tue Oct 18 16:33:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[63,71],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335049766408193\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1618,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335049766408193}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5315000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "51e141e6-76a6-4454-96ac-be19772092c3-126335049766408193" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "A Monnin : le web 0.0 se voulait déjà un web d'écriture et de lecture #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: A Monnin : le web 0.0 se voulait déjà un web d'écriture et de lecture #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5342000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"A Monnin : le web 0.0 se voulait d\\u00e9j\\u00e0 un web d'\\u00e9criture et de lecture #museoweb\",\"created_at\":\"Tue Oct 18 16:33:44 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[70,79]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335163142635523\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2016,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335163142635523}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5342000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3600ffdc-2aec-49d7-a5e5-437f5f991a56-126335163142635523" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Wikipedia prêt à collaborer avec le web sémantique++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Wikipedia prêt à collaborer avec le web sémantique++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5344000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wikipedia pr\\u00eat \\u00e0 collaborer avec le web s\\u00e9mantique++\",\"created_at\":\"Tue Oct 18 16:33:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335171040518144\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":364,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335171040518144}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5344000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4a1db7ff-6f6d-496c-880b-0bf53e495fae-126335171040518144" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb A. Monnin \"Cependant 1.0 pas seulement un web statique, un web de lecture et d’écriture dès le début, donc un web social.\"", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb A. Monnin \"Cependant 1.0 pas seulement un web statique, un web de lecture et d’écriture dès le début, donc un web social.\"", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5349000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb A. Monnin \\\"Cependant 1.0 pas seulement un web statique, un web de lecture et d\\u2019\\u00e9criture d\\u00e8s le d\\u00e9but, donc un web social.\\\"\",\"created_at\":\"Tue Oct 18 16:33:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335193115148288\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":39,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335193115148288}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5349000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "16592b9a-7efc-4475-a7f4-d9677c82979c-126335193115148288" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5396000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz : \\\"le web social n'est pas une \\u00e9tape destin\\u00e9e \\u00e0 \\u00eatre supprim\\u00e9e par la suivante\\\" ++\",\"created_at\":\"Tue Oct 18 16:34:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335387869253632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7517,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335387869253632}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5396000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "653cede8-998b-4ceb-bde2-ec6469deb965-126335387869253632" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", -"img": { -"src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" -}, -"title": "Wikinade: RT @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5422000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @RemiMathis: .@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/lFrsriQC :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:35:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[115,124]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[17,30],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[90,110],\"url\":\"http:\\/\\/t.co\\/lFrsriQC\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335497948758017\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\".@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/lFrsriQC :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:18:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[99,108]}],\"user_mentions\":[{\"indices\":[1,14],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[74,94],\"url\":\"http:\\/\\/t.co\\/lFrsriQC\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331392534646784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12066,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331392534646784},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"statuses_count\":1368,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335497948758017}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5422000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "8a451b58-4bc2-4f62-9046-28545b9fd8ff-126335497948758017" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": ".@aamonnz : « Le web sémantique doit conserver les aspects sociaux » #museoweb #yes", -"img": { -"src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" -}, -"title": "Rémi Mathis: .@aamonnz : « Le web sémantique doit conserver les aspects sociaux » #museoweb #yes", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5447000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\".@aamonnz : \\u00ab Le web s\\u00e9mantique doit conserver les aspects sociaux \\u00bb #museoweb #yes\",\"created_at\":\"Tue Oct 18 16:35:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[69,78]},{\"text\":\"yes\",\"indices\":[79,83]}],\"user_mentions\":[{\"indices\":[1,9],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335602391121920\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12067,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335602391121920}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5447000, -"tags": [ -{ -"id-ref": "99814818-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99833dee-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6ecb0839-7ceb-492c-97d9-f2996d611458-126335602391121920" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"img": { -"src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" -}, -"title": "Wikinade: RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5453000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:35:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[42,52]},{\"text\":\"museoweb\",\"indices\":[109,118]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335627095584768\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:30:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[24,34]},{\"text\":\"museoweb\",\"indices\":[91,100]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334278446485505\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2016,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126334278446485505},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"default_profile\":false,\"statuses_count\":1369,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126335627095584768}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5453000, -"tags": [ -{ -"id-ref": "99833dee-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99833dee-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7dcf4d79-b007-463d-b264-7fce42a1f20d-126335627095584768" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "\"Rien ne dit que le web sémantique doive être auj associable.\" Alexandre Monnin #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: \"Rien ne dit que le web sémantique doive être auj associable.\" Alexandre Monnin #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5469000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"Rien ne dit que le web s\\u00e9mantique doive \\u00eatre auj associable.\\\" Alexandre Monnin #museoweb\",\"created_at\":\"Tue Oct 18 16:35:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[80,89]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335695844421632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2017,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335695844421632}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5469000, -"tags": [ -{ -"id-ref": "99833dee-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d2d5fa3b-8250-45a4-a4fc-6f517ffe615e-126335695844421632" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vincentpuig: #museoweb Wikipedia prêt à collaborer avec le web sémantique++", -"img": { -"src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" -}, -"title": "Wikinade: RT @vincentpuig: #museoweb Wikipedia prêt à collaborer avec le web sémantique++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5505000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb Wikipedia pr\\u00eat \\u00e0 collaborer avec le web s\\u00e9mantique++\",\"created_at\":\"Tue Oct 18 16:36:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335845719490560\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wikipedia pr\\u00eat \\u00e0 collaborer avec le web s\\u00e9mantique++\",\"created_at\":\"Tue Oct 18 16:33:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335171040518144\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"default_profile\":true,\"statuses_count\":364,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126335171040518144},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"default_profile\":false,\"statuses_count\":1370,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126335845719490560}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5505000, -"tags": [ -{ -"id-ref": "99833dee-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fe39f308-c0ee-4385-888b-32d2832a53ff-126335845719490560" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", -"img": { -"src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" -}, -"title": "Wikinade: RT @gonzagauthier: #museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5513000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb @aamonnz : \\\"le web social n'est pas une \\u00e9tape destin\\u00e9e \\u00e0 \\u00eatre supprim\\u00e9e par la suivante\\\" ++\",\"created_at\":\"Tue Oct 18 16:36:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[29,37],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335881245245440\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz : \\\"le web social n'est pas une \\u00e9tape destin\\u00e9e \\u00e0 \\u00eatre supprim\\u00e9e par la suivante\\\" ++\",\"created_at\":\"Tue Oct 18 16:34:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335387869253632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7517,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335387869253632},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"statuses_count\":1371,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335881245245440}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5513000, -"tags": [ -{ -"id-ref": "99833dee-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4adc2fa6-85bc-45e6-9d9a-c670d5c50db6-126335881245245440" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Utilisation de #Google en France à 95% #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Utilisation de #Google en France à 95% #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5561000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Utilisation de #Google en France \\u00e0 95% #museoweb\",\"created_at\":\"Tue Oct 18 16:37:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Google\",\"indices\":[15,22]},{\"text\":\"museoweb\",\"indices\":[39,48]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336080659230720\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2018,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336080659230720}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5561000, -"tags": [ -{ -"id-ref": "9983c1ec-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9983c1ec-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "12b6e718-5378-452a-9d62-68c0f9a300a5-126336080659230720" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Forcément, si @aamonnz présente la \"bataille des terminaux mobile\" en illustrant #iOs VS #android, je m'insurge --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Forcément, si @aamonnz présente la \"bataille des terminaux mobile\" en illustrant #iOs VS #android, je m'insurge --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5575000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Forc\\u00e9ment, si @aamonnz pr\\u00e9sente la \\\"bataille des terminaux mobile\\\" en illustrant #iOs VS #android, je m'insurge --\",\"created_at\":\"Tue Oct 18 16:37:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"iOs\",\"indices\":[91,95]},{\"text\":\"android\",\"indices\":[99,107]}],\"user_mentions\":[{\"indices\":[24,32],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336137571729408\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7518,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336137571729408}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5575000, -"tags": [ -{ -"id-ref": "9983dfe2-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9983e424-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9983e424-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "76ceda70-f9d5-468e-8189-01342691836d-126336137571729408" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb la guerre des navigateurs, puis la guerre des moteurs de recherche, puis la guerre des OS mobiles, puis la guerre du Cloud...", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb la guerre des navigateurs, puis la guerre des moteurs de recherche, puis la guerre des OS mobiles, puis la guerre du Cloud...", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5603000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb la guerre des navigateurs, puis la guerre des moteurs de recherche, puis la guerre des OS mobiles, puis la guerre du Cloud...\",\"created_at\":\"Tue Oct 18 16:38:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336258891984896\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1620,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336258891984896}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5603000, -"tags": [ -{ -"id-ref": "9983e424-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "23c88a8c-9a48-47c6-9f39-c6b9afbef57d-126336258891984896" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Ref : \"Le Web sémantique n'est pas antisocial\" par Fabien Gandon (pdf) http://t.co/TmPlfHiN ==", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb Ref : \"Le Web sémantique n'est pas antisocial\" par Fabien Gandon (pdf) http://t.co/TmPlfHiN ==", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5618000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Ref : \\\"Le Web s\\u00e9mantique n'est pas antisocial\\\" par Fabien Gandon (pdf) http:\\/\\/t.co\\/TmPlfHiN ==\",\"created_at\":\"Tue Oct 18 16:38:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[81,101],\"url\":\"http:\\/\\/t.co\\/TmPlfHiN\",\"expanded_url\":\"http:\\/\\/goo.gl\\/twek1\",\"display_url\":\"goo.gl\\/twek1\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336319478706176\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"default_profile\":false,\"statuses_count\":6652,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336319478706176}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5618000, -"tags": [ -{ -"id-ref": "9983e424-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "66029f57-6ea1-4334-805a-a1c3302d0f90-126336319478706176" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb le web ne serait il qu'un grand champ de bataille ??", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb le web ne serait il qu'un grand champ de bataille ??", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5645000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb le web ne serait il qu'un grand champ de bataille ??\",\"created_at\":\"Tue Oct 18 16:38:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336433911906304\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1621,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336433911906304}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5645000, -"tags": [ -{ -"id-ref": "9983e424-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f431ec5d-e569-4311-add1-6476f0ea6837-126336433911906304" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "pour les prochains #museoweb ça serait pas mal que le micro sature moins pour ceux qui suivent à distance #merci", -"img": { -"src": "http://a1.twimg.com/profile_images/1110558324/sylvain_bouteille_normal.jpg" -}, -"title": "Sylvain Machefert: pour les prochains #museoweb ça serait pas mal que le micro sature moins pour ceux qui suivent à distance #merci", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5651000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"pour les prochains #museoweb \\u00e7a serait pas mal que le micro sature moins pour ceux qui suivent \\u00e0 distance #merci\",\"created_at\":\"Tue Oct 18 16:38:53 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"merci\",\"indices\":[106,112]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336458104643584\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Tue Oct 28 16:18:44 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":401,\"description\":\"un geek au milieu des biblioth\\u00e9caires, wikip\\u00e9dien \\u00e0 ses heures perdues\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.sylvainmachefert.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":727,\"id_str\":\"17023747\",\"listed_count\":65,\"friends_count\":137,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Burdigala\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\",\"screen_name\":\"symac\",\"name\":\"Sylvain Machefert\",\"statuses_count\":3967,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":17023747,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336458104643584}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5651000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "94ee7597-7a47-46ac-8e5a-092d3a8366f7-126336458104643584" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "A une succession de webs répondrait une succession de paradigmes sur le web #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: A une succession de webs répondrait une succession de paradigmes sur le web #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5660000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"A une succession de webs r\\u00e9pondrait une succession de paradigmes sur le web #museoweb\",\"created_at\":\"Tue Oct 18 16:39:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[76,85]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336496671272960\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2019,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336496671272960}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5660000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "084b0c8e-40b9-4ac5-8a85-f76fbddb52dd-126336496671272960" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", -"img": { -"src": "None" -}, -"title": "Wikimédia France: RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5683000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @RemiMathis: Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:39:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[34,43]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[83,96],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[127,140],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336592813109248\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:01:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[67,80],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[111,124],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327173048057856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12067,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327173048057856},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1097,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336592813109248}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5683000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "bd4ca2e9-2441-4912-8d3d-aad967f04df9-126336592813109248" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz parle \"du\" web dans son unicité et son universalité. Mais là encore, ça sent le point de vue eurocentré ? --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @aamonnz parle \"du\" web dans son unicité et son universalité. Mais là encore, ça sent le point de vue eurocentré ? --", -"color": "16763904", -"polemics": [ -"Q", -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5712000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz parle \\\"du\\\" web dans son unicit\\u00e9 et son universalit\\u00e9. Mais l\\u00e0 encore, \\u00e7a sent le point de vue eurocentr\\u00e9 ? --\",\"created_at\":\"Tue Oct 18 16:39:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336712191389697\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7519,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336712191389697}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5712000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e2b93032-f594-4dea-92ac-6f14f1a8e8c5-126336712191389697" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "NOW ! RT @lizarewind #museoweb http://t.co/A0mB7k4L suivre le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: NOW ! RT @lizarewind #museoweb http://t.co/A0mB7k4L suivre le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5722000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"NOW ! RT @lizarewind #museoweb http:\\/\\/t.co\\/A0mB7k4L suivre le s\\u00e9minaire \\\"Mus\\u00e9ologie, mus\\u00e9ographie et nouvelles formes d\\u2019adresse au public\",\"created_at\":\"Tue Oct 18 16:40:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[21,30]}],\"user_mentions\":[{\"indices\":[9,20],\"id_str\":\"110428655\",\"name\":\"lizarewind\",\"screen_name\":\"lizarewind\",\"id\":110428655}],\"urls\":[{\"indices\":[31,51],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336755816333312\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1951,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336755816333312}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5722000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b013e17a-f1f5-4cc5-8bcb-67f79a382907-126336755816333312" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT: @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-)", -"img": { -"src": "None" -}, -"title": "Wikimédia France: RT: @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5748000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @figoblog: #museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-)\",\"created_at\":\"Tue Oct 18 16:40:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]}],\"user_mentions\":[{\"indices\":[4,13],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336864880820225\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1098,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336864880820225}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5748000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e376ecb7-b97c-4836-aeff-9a25fde9ac40-126336864880820225" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", -"img": { -"src": "http://a2.twimg.com/profile_images/1404377005/image_normal.jpg" -}, -"title": "Gayané Adourian: RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5788000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @RemiMathis: Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:41:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[34,43]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[83,96],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[127,140],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337034355871744\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:01:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[67,80],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[111,124],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327173048057856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12068,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126327173048057856},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"efefef\",\"created_at\":\"Thu Sep 24 18:04:41 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"eeeeee\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"followers_count\":1776,\"description\":\"Journaliste. Recherche\\/Innovation\\/Soci\\u00e9t\\u00e9 sur @Knowtex. Focus sur #environnement et #plan\\u00e8te. Curieuse, relationniste et #hihi! :) Pianiste aussi\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.gayane-adourian.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"favourites_count\":442,\"id_str\":\"77002320\",\"listed_count\":216,\"friends_count\":1319,\"profile_link_color\":\"009999\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1404377005\\/image_normal.jpg\",\"screen_name\":\"GayaneAdourian\",\"name\":\"Gayan\\u00e9 Adourian\",\"statuses_count\":6982,\"verified\":false,\"profile_background_color\":\"131516\",\"id\":77002320,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1404377005\\/image_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126337034355871744}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5788000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "38690ada-b401-4dbd-a730-ea569977f50d-126337034355871744" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT: @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/hZNJUnL7 :-D #museoweb", -"img": { -"src": "None" -}, -"title": "Wikimédia France: RT: @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/hZNJUnL7 :-D #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5806000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @RemiMathis: .@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/hZNJUnL7 :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:41:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[116,125]}],\"user_mentions\":[{\"indices\":[4,15],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[18,31],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[91,111],\"url\":\"http:\\/\\/t.co\\/hZNJUnL7\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337110264393728\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1099,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337110264393728}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5806000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "8e1a427c-9d65-44d0-b1b1-ca7abfe2f2c8-126337110264393728" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz définit pour le moment le web exclusivement d'un point de vue des normes.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @aamonnz définit pour le moment le web exclusivement d'un point de vue des normes.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5818000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz d\\u00e9finit pour le moment le web exclusivement d'un point de vue des normes.\",\"created_at\":\"Tue Oct 18 16:41:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337159409053697\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7520,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337159409053697}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5818000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f83174dd-4696-4bc8-b1ba-fab473d7286d-126337159409053697" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT: @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"img": { -"src": "None" -}, -"title": "Wikimédia France: RT: @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5839000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @cblogculture: Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:42:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[43,53]},{\"text\":\"museoweb\",\"indices\":[110,119]}],\"user_mentions\":[{\"indices\":[4,17],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337244951871489\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1100,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337244951871489}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5839000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "39851228-390f-4a77-b5a7-697287699526-126337244951871489" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5851000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz explique l'enjeu pour google de consid\\u00e9rer le web comme un web de pages, \\\"vue partielle\\\".\",\"created_at\":\"Tue Oct 18 16:42:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337295191252992\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7521,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337295191252992}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5851000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9c3ed3b7-b018-411a-aa0a-498d994be8ad-126337295191252992" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "\"Il ne faut pas confondre #Google et le #web\" Alexandre Monnin #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: \"Il ne faut pas confondre #Google et le #web\" Alexandre Monnin #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5884000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"Il ne faut pas confondre #Google et le #web\\\" Alexandre Monnin #museoweb\",\"created_at\":\"Tue Oct 18 16:42:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Google\",\"indices\":[26,33]},{\"text\":\"web\",\"indices\":[40,44]},{\"text\":\"museoweb\",\"indices\":[63,72]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337436849680384\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2020,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337436849680384}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5884000, -"tags": [ -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99844dba-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6b5fe659-c197-463d-8925-2bccfbd3a197-126337436849680384" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz cite @lespetitescases : il ne faut pas être sur le web mais dans le web ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb @aamonnz cite @lespetitescases : il ne faut pas être sur le web mais dans le web ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 5988000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz cite @lespetitescases : il ne faut pas \\u00eatre sur le web mais dans le web ++\",\"created_at\":\"Tue Oct 18 16:44:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472},{\"indices\":[24,40],\"id_str\":\"13810452\",\"name\":\"Gautier Poupeau\",\"screen_name\":\"lespetitescases\",\"id\":13810452}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337873044701185\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1623,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337873044701185}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 5988000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "53ef87a2-2ec4-4bde-8ed1-b2d8af0a7491-126337873044701185" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier #museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: RT @gonzagauthier #museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6003000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier #museoweb @aamonnz explique l'enjeu pour google de consid\\u00e9rer le web comme un web de pages, \\\"vue partielle\\\".\",\"created_at\":\"Tue Oct 18 16:44:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[28,36],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337933241356289\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1951,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337933241356289}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6003000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "424dfa52-79ae-41ac-a704-093a46a027b6-126337933241356289" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb A Monnin \"Pr ê sur le web, il suffit d’en suivre ses modes successives, pour ê dans le web il faut comprendre son infrastructure.", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb A Monnin \"Pr ê sur le web, il suffit d’en suivre ses modes successives, pour ê dans le web il faut comprendre son infrastructure.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6059000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb A Monnin \\\"Pr \\u00ea sur le web, il suffit d\\u2019en suivre ses modes successives, pour \\u00ea dans le web il faut comprendre son infrastructure.\",\"created_at\":\"Tue Oct 18 16:45:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126338168306933760\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":40,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126338168306933760}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6059000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ea7949de-c4ff-41ed-a9a6-8bac3f5045c3-126338168306933760" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Ça parle du poids de la classification dans les bibliothèque comme un élément performatif. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Ça parle du poids de la classification dans les bibliothèque comme un élément performatif. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6234000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\u00c7a parle du poids de la classification dans les biblioth\\u00e8que comme un \\u00e9l\\u00e9ment performatif. ++\",\"created_at\":\"Tue Oct 18 16:48:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126338904696692736\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7522,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126338904696692736}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6234000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6c44f798-3bb1-407a-97bd-ff42d35272f1-126338904696692736" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz présente les catégories principalement issues des studies américaines. On reste cohérent ^^ ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb @aamonnz présente les catégories principalement issues des studies américaines. On reste cohérent ^^ ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6289000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz pr\\u00e9sente les cat\\u00e9gories principalement issues des studies am\\u00e9ricaines. On reste coh\\u00e9rent ^^ ++\",\"created_at\":\"Tue Oct 18 16:49:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126339135987396608\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7523,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126339135987396608}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6289000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fc9331b9-b527-43ee-a3df-016c11d015a3-126339135987396608" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Une stratégie pour faire évoluer les choses en termes de metadonnées : faire changer les institutions @aamonnz #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Une stratégie pour faire évoluer les choses en termes de metadonnées : faire changer les institutions @aamonnz #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6384000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Une strat\\u00e9gie pour faire \\u00e9voluer les choses en termes de metadonn\\u00e9es : faire changer les institutions @aamonnz #museoweb\",\"created_at\":\"Tue Oct 18 16:51:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[111,120]}],\"user_mentions\":[{\"indices\":[102,110],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126339533322190848\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2021,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126339533322190848}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6384000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6086efac-9984-4c6e-be55-8fe9ca44e0d9-126339533322190848" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@aamonnz cite Clay Shirky : \"le choix du descripteur n'est pas neutre\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: @aamonnz cite Clay Shirky : \"le choix du descripteur n'est pas neutre\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6451000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"aamonnz\",\"in_reply_to_user_id\":7409472,\"text\":\"@aamonnz cite Clay Shirky : \\\"le choix du descripteur n'est pas neutre\\\" #museoweb\",\"created_at\":\"Tue Oct 18 16:52:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[71,80]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"7409472\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126339811723329536\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2022,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126339811723329536}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6451000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a11a610d-f319-4a98-bf0e-fbdc0d900ce1-126339811723329536" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb L'exemple choisi par @aamonnz pour montrer la pertinence des enjeux sémantiques dans les ontologies est celui du queer. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb L'exemple choisi par @aamonnz pour montrer la pertinence des enjeux sémantiques dans les ontologies est celui du queer. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6510000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb L'exemple choisi par @aamonnz pour montrer la pertinence des enjeux s\\u00e9mantiques dans les ontologies est celui du queer. ++\",\"created_at\":\"Tue Oct 18 16:53:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[31,39],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340061250854912\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"default_profile\":true,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7524,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340061250854912}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6510000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "03fbb030-e31f-473d-8a67-c52761bd0d82-126340061250854912" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Mais c'est pas risqué en France ? Ca va peut mener à des incompréhensions. D'ailleurs @aamonnz dérape parfois sur ses usages.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Mais c'est pas risqué en France ? Ca va peut mener à des incompréhensions. D'ailleurs @aamonnz dérape parfois sur ses usages.", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6579000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Mais c'est pas risqu\\u00e9 en France ? Ca va peut mener \\u00e0 des incompr\\u00e9hensions. D'ailleurs @aamonnz d\\u00e9rape parfois sur ses usages.\",\"created_at\":\"Tue Oct 18 16:54:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[96,104],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340351152754688\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7525,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340351152754688}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6579000, -"tags": [ -{ -"id-ref": "998569de-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "515dd17b-771a-44fc-9df0-43ceda00e077-126340351152754688" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Place aux hybrides ! < #Cyborg", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb Place aux hybrides ! < #Cyborg", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6694000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Place aux hybrides ! < #Cyborg\",\"created_at\":\"Tue Oct 18 16:56:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"Cyborg\",\"indices\":[36,43]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340833468366848\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6653,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340833468366848}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6694000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "87e836c7-7a6d-4840-98cc-3204ade8827d-126340833468366848" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb \"Va-t-on assister à une destruction des autorités dans les musées ? Je ne pense pas\". Dommage ! --", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb \"Va-t-on assister à une destruction des autorités dans les musées ? Je ne pense pas\". Dommage ! --", -"color": "16763904", -"polemics": [ -"Q", -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6704000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Va-t-on assister \\u00e0 une destruction des autorit\\u00e9s dans les mus\\u00e9es ? Je ne pense pas\\\". Dommage ! --\",\"created_at\":\"Tue Oct 18 16:56:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340875407204352\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7526,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340875407204352}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6704000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e9396670-2a2e-455a-929f-22ec7395a92a-126340875407204352" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Pr A Monnin ne devrait pas assister à une prise du web culturel --", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb Pr A Monnin ne devrait pas assister à une prise du web culturel --", -"color": "16763904", -"polemics": [ -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6735000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Pr A Monnin ne devrait pas assister \\u00e0 une prise du web culturel --\",\"created_at\":\"Tue Oct 18 16:56:57 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341004650487808\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":41,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341004650487808}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6735000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e1be6b10-d256-4ce6-92b5-7908c46f3128-126341004650487808" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Construire des hybrides pages / données / services @aamonnz ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb Construire des hybrides pages / données / services @aamonnz ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6796000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Construire des hybrides pages \\/ donn\\u00e9es \\/ services @aamonnz ++\",\"created_at\":\"Tue Oct 18 16:57:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[61,69],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341261111201792\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1624,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341261111201792}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6796000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "78b6d2ea-8e03-44d5-808a-3d5d216748b3-126341261111201792" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Auj on a affaire a des \"hybrides\" de web - @aamonnz montre le schéma de N. Delaforge déjà posté sur http://t.co/LDkzNPQq #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Auj on a affaire a des \"hybrides\" de web - @aamonnz montre le schéma de N. Delaforge déjà posté sur http://t.co/LDkzNPQq #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6802000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Auj on a affaire a des \\\"hybrides\\\" de web - @aamonnz montre le sch\\u00e9ma de N. Delaforge d\\u00e9j\\u00e0 post\\u00e9 sur http:\\/\\/t.co\\/LDkzNPQq #museoweb\",\"created_at\":\"Tue Oct 18 16:58:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[121,130]}],\"user_mentions\":[{\"indices\":[43,51],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[{\"indices\":[100,120],\"url\":\"http:\\/\\/t.co\\/LDkzNPQq\",\"expanded_url\":\"http:\\/\\/cblog.culture.fr\",\"display_url\":\"cblog.culture.fr\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341284062429184\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2023,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341284062429184}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6802000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7621f1fc-b300-4c1e-899f-286b84734758-126341284062429184" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb Construire des hybrides pages / données / services @aamonnz ++", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: RT @figoblog: #museoweb Construire des hybrides pages / données / services @aamonnz ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6828000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb Construire des hybrides pages \\/ donn\\u00e9es \\/ services @aamonnz ++\",\"created_at\":\"Tue Oct 18 16:58:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[75,83],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341393286307840\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6654,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341393286307840}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6828000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ff6a67dc-f1a3-4dbc-9359-59d77d593e82-126341393286307840" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb l'hybride comme dissolution des pouvoirs. Réduction des savoirs/pouvoirs ?? --", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" -}, -"title": "Emmanuel Chateau: #museoweb l'hybride comme dissolution des pouvoirs. Réduction des savoirs/pouvoirs ?? --", -"color": "16763904", -"polemics": [ -"Q", -"KO" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6856000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb l'hybride comme dissolution des pouvoirs. R\\u00e9duction des savoirs\\/pouvoirs\\u00a0??\\u00a0--\",\"created_at\":\"Tue Oct 18 16:58:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341512928825344\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":42,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341512928825344}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6856000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b4cc35ad-ab59-4ccf-acf5-18efcd8f32b7-126341512928825344" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @aamonnz a l'air très marqué par ses contacts avec des bibliothécaires, ça m'étonne qu'il échappe au #pointVictorHugo ;-)", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb @aamonnz a l'air très marqué par ses contacts avec des bibliothécaires, ça m'étonne qu'il échappe au #pointVictorHugo ;-)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6860000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz a l'air tr\\u00e8s marqu\\u00e9 par ses contacts avec des biblioth\\u00e9caires, \\u00e7a m'\\u00e9tonne qu'il \\u00e9chappe au #pointVictorHugo ;-)\",\"created_at\":\"Tue Oct 18 16:59:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"pointVictorHugo\",\"indices\":[111,127]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341529345327104\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1625,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341529345327104}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6860000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "57cdb5e3-8e4e-4496-a23b-2f3520d814f7-126341529345327104" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Podcast: RT @lizarewind: #museoweb http://t.co/Wc0TXvFN ,,, séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: Podcast: RT @lizarewind: #museoweb http://t.co/Wc0TXvFN ,,, séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6959000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Podcast: RT @lizarewind: #museoweb http:\\/\\/t.co\\/Wc0TXvFN ,,, s\\u00e9minaire \\\"Mus\\u00e9ologie, mus\\u00e9ographie et nouvelles formes d\\u2019adresse au public\\\"\",\"created_at\":\"Tue Oct 18 17:00:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]}],\"user_mentions\":[{\"indices\":[12,23],\"id_str\":\"110428655\",\"name\":\"lizarewind\",\"screen_name\":\"lizarewind\",\"id\":110428655}],\"urls\":[{\"indices\":[35,55],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341942559784960\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":334,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":150,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":924,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341942559784960}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6959000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7601d6b1-7e1a-4568-a2d7-8d73b2d9afbe-126341942559784960" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb ai reflechi a une ontologie de type evolutive http://t.co/f1jeVNk3", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: #museoweb ai reflechi a une ontologie de type evolutive http://t.co/f1jeVNk3", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 6988000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ai reflechi a une ontologie de type evolutive http:\\/\\/t.co\\/f1jeVNk3\",\"created_at\":\"Tue Oct 18 17:01:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[56,76],\"url\":\"http:\\/\\/t.co\\/f1jeVNk3\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ZxyhS==\",\"display_url\":\"goo.gl\\/ZxyhS==\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342066518245376\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48663,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342066518245376}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 6988000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fa9069f2-0c57-4cc3-ab78-4f37ecd1f245-126342066518245376" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb ai reflechi a une ontologie de type evolutive http://t.co/s8GLlnxy", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: #museoweb ai reflechi a une ontologie de type evolutive http://t.co/s8GLlnxy", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7049000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ai reflechi a une ontologie de type evolutive http:\\/\\/t.co\\/s8GLlnxy\",\"created_at\":\"Tue Oct 18 17:02:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[57,77],\"url\":\"http:\\/\\/t.co\\/s8GLlnxy\",\"expanded_url\":\"http:\\/\\/florencemeichel.blogspot.com\\/2010\\/09\\/poiesis-de-lontologie-semantique.html\",\"display_url\":\"florencemeichel.blogspot.com\\/2010\\/09\\/poiesi\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342323218038784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48665,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342323218038784}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7049000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "45d86885-0743-4d0b-bdc8-951eb8fb64e1-126342323218038784" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Fabien Gandon, chercheur à l'Inria & membre du W3C : le web et ses metadonnées, le territoire et sa carte #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Fabien Gandon, chercheur à l'Inria & membre du W3C : le web et ses metadonnées, le territoire et sa carte #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7119000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Fabien Gandon, chercheur \\u00e0 l'Inria & membre du W3C : le web et ses metadonn\\u00e9es, le territoire et sa carte #museoweb\",\"created_at\":\"Tue Oct 18 17:03:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[106,115]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342615338713088\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2024,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342615338713088}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7119000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "802e5f14-7373-42df-b38a-d84b99812791-126342615338713088" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7196000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Vannevar Bush propose des notions de #cyborg d\\u00e8s 1945 pour outiller sa m\\u00e9moire et son raisonnement.\",\"created_at\":\"Tue Oct 18 17:04:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"cyborg\",\"indices\":[47,54]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342940258865152\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7526,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342940258865152}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7196000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0329abae-b041-4bbc-856d-58cb2239aa9b-126342940258865152" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson...", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson...", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7242000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson...\",\"created_at\":\"Tue Oct 18 17:05:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,24],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343132135690240\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1626,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343132135690240}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7242000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d1604363-8711-4cac-bc83-0400d6b9a914-126343132135690240" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @cblogculture F. Gandon, chercheur Inria & membre W3C : le web & ses metadonnées, le territoire & sa carte #museoweb http://t.co/A0mB7k4L", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: RT @cblogculture F. Gandon, chercheur Inria & membre W3C : le web & ses metadonnées, le territoire & sa carte #museoweb http://t.co/A0mB7k4L", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7243000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture F. Gandon, chercheur Inria & membre W3C : le web & ses metadonn\\u00e9es, le territoire & sa carte #museoweb http:\\/\\/t.co\\/A0mB7k4L\",\"created_at\":\"Tue Oct 18 17:05:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[110,119]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[{\"indices\":[120,140],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343133855354881\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1955,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343133855354881}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7243000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "82883b98-a0f6-466c-8d21-4946f6b24c10-126343133855354881" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb En 1965, Ted Nelson va plus loin et casse la textualité des documents concernés. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb En 1965, Ted Nelson va plus loin et casse la textualité des documents concernés. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7266000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb En 1965, Ted Nelson va plus loin et casse la textualit\\u00e9 des documents concern\\u00e9s. ++\",\"created_at\":\"Tue Oct 18 17:05:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343231280644097\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"default_profile\":true,\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7528,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343231280644097}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7266000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b1f6ba2c-291d-403b-9bf6-a5583cec8080-126343231280644097" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @gonzagauthier: #museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: RT @gonzagauthier: #museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7283000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Vannevar Bush propose des notions de #cyborg d\\u00e8s 1945 pour outiller sa m\\u00e9moire et son raisonnement.\",\"created_at\":\"Tue Oct 18 17:06:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"cyborg\",\"indices\":[66,73]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343304953602048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6655,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343304953602048}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7283000, -"tags": [ -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7f485e33-9b45-4785-b321-c2536e13cac1-126343304953602048" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7362000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb plong\\u00e9e brillante et tr\\u00e8s p\\u00e9dagogique dans l'histoire du Web avec #fabien_gandon\",\"created_at\":\"Tue Oct 18 17:07:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"fabien_gandon\",\"indices\":[76,90]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343632893652992\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1627,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343632893652992}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7362000, -"tags": [ -{ -"id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "de26653f-18c9-4a1a-af7f-fba8b2e6e955-126343632893652992" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Fabien Gandon : \"le web, quand il est né, était accessible en lecture et en écriture, et ce pour n'importe quelle page\". #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Fabien Gandon : \"le web, quand il est né, était accessible en lecture et en écriture, et ce pour n'importe quelle page\". #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7384000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Fabien Gandon : \\\"le web, quand il est n\\u00e9, \\u00e9tait accessible en lecture et en \\u00e9criture, et ce pour n'importe quelle page\\\". #museoweb\",\"created_at\":\"Tue Oct 18 17:07:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[121,130]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343727970140160\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2025,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343727970140160}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7384000, -"tags": [ -{ -"id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d2a0970b-1b06-4736-bef6-a1bf9dd769e3-126343727970140160" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7388000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ontologie evolutive et tentative de court-circuit de Google http:\\/\\/t.co\\/pZmqLXbW\",\"created_at\":\"Tue Oct 18 17:07:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[70,90],\"url\":\"http:\\/\\/t.co\\/pZmqLXbW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/rE1Dw\",\"display_url\":\"goo.gl\\/rE1Dw\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343743707168768\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48666,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343743707168768}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7388000, -"tags": [ -{ -"id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0ff0a497-61ca-4b6e-9bd4-af95d88e4593-126343743707168768" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT: @figoblog: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson... < m'enfin, c'est moi qui remonte à Bush et Otlet d'hab !", -"img": { -"src": "http://a0.twimg.com/profile_images/932641420/800px-Roof_hafez_tomb_normal.jpg" -}, -"title": "Julien Fayolle: RT: @figoblog: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson... < m'enfin, c'est moi qui remonte à Bush et Otlet d'hab !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7472000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @figoblog: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson... < m'enfin, c'est moi qui remonte \\u00e0 Bush et Otlet d'hab !\",\"created_at\":\"Tue Oct 18 17:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]}],\"user_mentions\":[{\"indices\":[4,13],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[25,39],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344096464912385\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5dced\",\"default_profile\":false,\"created_at\":\"Sat Aug 01 11:36:19 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":242,\"description\":\"Je suis n\\u00e9. J'ai appris \\u00e0 lire et compter (et franchement j'en abuse). Je joue encore \\u00e0 la baballe. J'\\u00e9coute le vent. Je lutte contre la pesanteur.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/thhean.blogspot.com\",\"following\":null,\"profile_text_color\":\"382e38\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"62016822\",\"listed_count\":31,\"friends_count\":432,\"profile_link_color\":\"00b32a\",\"protected\":false,\"location\":\"Clermont-Ferrand\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/932641420\\/800px-Roof_hafez_tomb_normal.jpg\",\"screen_name\":\"Julien_f\",\"name\":\"Julien Fayolle\",\"statuses_count\":3913,\"verified\":false,\"profile_background_color\":\"f5f4ed\",\"id\":62016822,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/932641420\\/800px-Roof_hafez_tomb_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344096464912385}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7472000, -"tags": [ -{ -"id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0c5b5333-af3e-4f5c-97fe-8ee90e11b7ff-126344096464912385" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Un langage XML pour la communauté du tag sur bâtiment. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Un langage XML pour la communauté du tag sur bâtiment. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7477000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Un langage XML pour la communaut\\u00e9 du tag sur b\\u00e2timent. ++\",\"created_at\":\"Tue Oct 18 17:09:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344119005085696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7529,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344119005085696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7477000, -"tags": [ -{ -"id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e3f31d1f-e671-4ddd-bc08-1958480623d2-126344119005085696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7506000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb A l'origine le Web \\u00e9tait inscriptible nous rappelle Fabien Gandon (capture d'image \\u00e0 l'appui) http:\\/\\/t.co\\/Pxjrt5b4 #EDIT\",\"created_at\":\"Tue Oct 18 17:09:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]},{\"text\":\"EDIT\",\"indices\":[125,130]}],\"user_mentions\":[],\"urls\":[{\"indices\":[104,124],\"url\":\"http:\\/\\/t.co\\/Pxjrt5b4\",\"expanded_url\":\"http:\\/\\/goo.gl\\/b6iJv\",\"display_url\":\"goo.gl\\/b6iJv\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344237187989504\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6656,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344237187989504}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7506000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4cb12818-d1cd-47bc-8097-81cab1c895f8-126344237187989504" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@Lilmount Ici : http://t.co/L7U88o4c ;-) #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: @Lilmount Ici : http://t.co/L7U88o4c ;-) #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7516000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"Lilmount\",\"in_reply_to_user_id\":68658539,\"text\":\"@Lilmount Ici : http:\\/\\/t.co\\/L7U88o4c ;-) #museoweb\",\"created_at\":\"Tue Oct 18 17:09:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[41,50]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"68658539\",\"name\":\"Coline Aunis\",\"screen_name\":\"Lilmount\",\"id\":68658539}],\"urls\":[{\"indices\":[16,36],\"url\":\"http:\\/\\/t.co\\/L7U88o4c\",\"expanded_url\":\"http:\\/\\/cblog.culture.fr\\/2011\\/09\\/07\\/web-semantique-iri-opendat\",\"display_url\":\"cblog.culture.fr\\/2011\\/09\\/07\\/web\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126342793525346304\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"68658539\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344279290421248\",\"in_reply_to_status_id\":126342793525346304,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2026,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344279290421248}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7516000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "c6777f28-8852-4474-bf2a-25b59afd0826-126344279290421248" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7544000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Oui, on pourra revoir tout \\u00e7a o\\u00f9 ? RT @figoblog #museoweb plong\\u00e9e brillante et tr\\u00e8s p\\u00e9dagogique dans l'histoire du Web avec #fabien_gandon\",\"created_at\":\"Tue Oct 18 17:10:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[48,57]},{\"text\":\"fabien_gandon\",\"indices\":[124,138]}],\"user_mentions\":[{\"indices\":[38,47],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344398144413696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":false,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1956,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344398144413696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7544000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d179f3f2-2ab2-4927-b00e-c1b6fe8f5e78-126344398144413696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Fabien Gandon : \"lorsque les utilisateurs vont sur le web, ils ont un but et ils ont un modèle de la réalité en tête.\" #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Fabien Gandon : \"lorsque les utilisateurs vont sur le web, ils ont un but et ils ont un modèle de la réalité en tête.\" #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7641000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Fabien Gandon : \\\"lorsque les utilisateurs vont sur le web, ils ont un but et ils ont un mod\\u00e8le de la r\\u00e9alit\\u00e9 en t\\u00eate.\\\" #museoweb\",\"created_at\":\"Tue Oct 18 17:12:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344804673126400\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2027,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344804673126400}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7641000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d24a3d91-dbf6-4dc9-888e-8c0499f81553-126344804673126400" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", -"img": { -"src": "http://a1.twimg.com/profile_images/1578535119/DylanGlaser_normal.jpg" -}, -"title": "lizarewind: #MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7662000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb @fabien_gandon passionnant http:\\/\\/t.co\\/X0cwHJ8Q\",\"created_at\":\"Tue Oct 18 17:12:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,24],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[{\"indices\":[37,57],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344892547997696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":false,\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":551,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":642,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"statuses_count\":5537,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344892547997696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7662000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6c9099aa-fb11-4fec-b494-d36d379fe49c-126344892547997696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@vpaillas http://t.co/Wc0TXvFN RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: @vpaillas http://t.co/Wc0TXvFN RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7687000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas http:\\/\\/t.co\\/Wc0TXvFN RT @figoblog #museoweb plong\\u00e9e brillante et tr\\u00e8s p\\u00e9dagogique dans l'histoire du Web avec #fabien_gandon\",\"created_at\":\"Tue Oct 18 17:12:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[44,53]},{\"text\":\"fabien_gandon\",\"indices\":[120,134]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763},{\"indices\":[34,43],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[{\"indices\":[10,30],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344999360151552\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":334,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":150,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":925,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344999360151552}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7687000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2a9b75e1-db10-472b-b841-50254e23e349-126344999360151552" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@vpaillas Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée dans l'histoire du Web avec #fabien_gandon cc @aamonnz", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: @vpaillas Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée dans l'histoire du Web avec #fabien_gandon cc @aamonnz", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7697000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas Oui, on pourra revoir tout \\u00e7a o\\u00f9 ? RT @figoblog #museoweb plong\\u00e9e dans l'histoire du Web avec #fabien_gandon cc @aamonnz\",\"created_at\":\"Tue Oct 18 17:12:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[58,67]},{\"text\":\"fabien_gandon\",\"indices\":[108,122]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763},{\"indices\":[48,57],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[126,134],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\"\\u003EMobile Web\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345040799875073\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1628,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345040799875073}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7697000, -"tags": [ -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "99889f96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "acfac533-c326-41f7-934b-cf5c4d84aa12-126345040799875073" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb avec @fabien_gandon, faire du web sémantique est aussi facile que manger du chocolat :-) #fanclub ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb avec @fabien_gandon, faire du web sémantique est aussi facile que manger du chocolat :-) #fanclub ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7747000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb avec @fabien_gandon, faire du web s\\u00e9mantique est aussi facile que manger du chocolat :-) #fanclub ++\",\"created_at\":\"Tue Oct 18 17:13:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"fanclub\",\"indices\":[99,107]}],\"user_mentions\":[{\"indices\":[15,29],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345248191426560\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1629,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345248191426560}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7747000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a6424365-cb05-4158-b56e-58294fc8a4b5-126345248191426560" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir les vidéos après?", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir les vidéos après?", -"color": "16763904", -"polemics": [ -"Q", -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7769000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1957,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7769000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "643835b1-2a15-45f6-b6e1-29a07674eab3-126345340868771841" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", -"img": { -"src": "http://a2.twimg.com/profile_images/1532793455/IMG_1633_r_duit_normal.jpg" -}, -"title": "Bernard Desclaux: RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7788000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir ...\",\"created_at\":\"Tue Oct 18 17:14:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]},{\"text\":\"fabien_gandon\",\"indices\":[40,54]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[106,126],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345420245970946\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1957,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"FFF7CC\",\"default_profile\":false,\"created_at\":\"Sat Feb 06 15:24:25 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"F2E195\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"followers_count\":472,\"description\":\"Directeur de CIO (retrait\\u00e9), formateur, peintre sumi-e\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/bdesclaux.jimdo.com\\/\",\"following\":null,\"profile_text_color\":\"0C3E53\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"favourites_count\":8,\"id_str\":\"111910160\",\"listed_count\":66,\"friends_count\":273,\"profile_link_color\":\"FF0000\",\"protected\":false,\"location\":\"Avignon, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1532793455\\/IMG_1633_r_duit_normal.jpg\",\"screen_name\":\"BDesclaux\",\"name\":\"Bernard Desclaux\",\"statuses_count\":10034,\"verified\":false,\"profile_background_color\":\"BADFCD\",\"id\":111910160,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1532793455\\/IMG_1633_r_duit_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126345420245970946}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7788000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ee7483dc-162b-4c8a-833b-757161d193e3-126345420245970946" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@fabien_gandin utilise une tablette de chocolat pour expliquer le rdf #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: @fabien_gandin utilise une tablette de chocolat pour expliquer le rdf #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7816000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"@fabien_gandin utilise une tablette de chocolat pour expliquer le rdf #museoweb\",\"created_at\":\"Tue Oct 18 17:14:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[70,79]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345539200614401\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2028,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345539200614401}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7816000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2275df85-edcd-4627-9774-c85ad8e1da85-126345539200614401" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet chips !", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet chips !", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 7945000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb REF: Tim Berners-Lee, \\\"Open, Linked Data for a Global Community\\\" (video) http:\\/\\/t.co\\/iGu24aIP < Avec le paquet chips !\",\"created_at\":\"Tue Oct 18 17:17:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[83,103],\"url\":\"http:\\/\\/t.co\\/iGu24aIP\",\"expanded_url\":\"http:\\/\\/goo.gl\\/17uyF\",\"display_url\":\"goo.gl\\/17uyF\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346078382592000\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6657,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346078382592000}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 7945000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e7b1ee9e-be02-4063-8972-760b096d905c-126346078382592000" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@costisd le lien donné pour #museoweb c'est du streaming en direct ? ensuite, on retrouve les présentations quelque part ?", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: @costisd le lien donné pour #museoweb c'est du streaming en direct ? ensuite, on retrouve les présentations quelque part ?", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8002000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"costisd\",\"in_reply_to_user_id\":20733366,\"text\":\"@costisd le lien donn\\u00e9 pour #museoweb c'est du streaming en direct ? ensuite, on retrouve les pr\\u00e9sentations quelque part ?\",\"created_at\":\"Tue Oct 18 17:18:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[28,37]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"20733366\",\"name\":\"Costis Dallas\",\"screen_name\":\"costisd\",\"id\":20733366}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126344999360151552\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"20733366\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346317109805057\",\"in_reply_to_status_id\":126344999360151552,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1958,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346317109805057}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8002000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6292ab98-7d96-48c9-947c-f5ca6075cce3-126346317109805057" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb et un #PointVictorHugo pour @fabien_gandon !", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb et un #PointVictorHugo pour @fabien_gandon !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8015000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb et un #PointVictorHugo pour @fabien_gandon !\",\"created_at\":\"Tue Oct 18 17:18:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"PointVictorHugo\",\"indices\":[16,32]}],\"user_mentions\":[{\"indices\":[38,52],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346372894044161\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1630,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346372894044161}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8015000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a4c06c81-e1dd-4a7e-92fc-986ba1f7d07d-126346372894044161" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb et un #PointBBC par la même occasion @Fabien_gandon", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb et un #PointBBC par la même occasion @Fabien_gandon", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8082000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb et un #PointBBC par la m\\u00eame occasion @Fabien_gandon\",\"created_at\":\"Tue Oct 18 17:19:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"PointBBC\",\"indices\":[16,25]}],\"user_mentions\":[{\"indices\":[47,61],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346653828513792\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1631,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346653828513792}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8082000, -"tags": [ -{ -"id-ref": "9989553a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "da6011aa-02a1-4bf8-a48b-3402b7e925e9-126346653828513792" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@fabien_gandin 's fascinating live webcast: from hypertext 2 semantic web (in French) - could you upload it 4 l8r viewing? #museoweb", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: @fabien_gandin 's fascinating live webcast: from hypertext 2 semantic web (in French) - could you upload it 4 l8r viewing? #museoweb", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8108000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"@fabien_gandin 's fascinating live webcast: from hypertext 2 semantic web (in French) - could you upload it 4 l8r viewing? #museoweb\",\"created_at\":\"Tue Oct 18 17:19:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[123,132]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346764323258369\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":334,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":150,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":926,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346764323258369}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8108000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "78e8476a-8a67-4f0b-b61d-c79ad40bdcf2-126346764323258369" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @_omr: #museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet ch ...", -"img": { -"src": "http://a1.twimg.com/profile_images/1578535119/DylanGlaser_normal.jpg" -}, -"title": "lizarewind: RT @_omr: #museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet ch ...", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8113000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @_omr: #museoweb REF: Tim Berners-Lee, \\\"Open, Linked Data for a Global Community\\\" (video) http:\\/\\/t.co\\/iGu24aIP < Avec le paquet ch ...\",\"created_at\":\"Tue Oct 18 17:19:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[10,19]}],\"user_mentions\":[{\"indices\":[3,8],\"id_str\":\"16592723\",\"name\":\"Omer Pesquer\",\"screen_name\":\"_omr\",\"id\":16592723}],\"urls\":[{\"indices\":[93,113],\"url\":\"http:\\/\\/t.co\\/iGu24aIP\",\"expanded_url\":\"http:\\/\\/goo.gl\\/17uyF\",\"display_url\":\"goo.gl\\/17uyF\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346784376229889\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb REF: Tim Berners-Lee, \\\"Open, Linked Data for a Global Community\\\" (video) http:\\/\\/t.co\\/iGu24aIP < Avec le paquet chips !\",\"created_at\":\"Tue Oct 18 17:17:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[83,103],\"url\":\"http:\\/\\/t.co\\/iGu24aIP\",\"expanded_url\":\"http:\\/\\/goo.gl\\/17uyF\",\"display_url\":\"goo.gl\\/17uyF\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346078382592000\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"default_profile\":false,\"statuses_count\":6657,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346078382592000},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":552,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":642,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"default_profile\":false,\"statuses_count\":5538,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126346784376229889}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8113000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "608339f7-2b8c-49e3-bddc-7bf70aac1d55-126346784376229889" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb La BBC outsource sa classification documentaire avec #wikipedia. Formidable !", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb La BBC outsource sa classification documentaire avec #wikipedia. Formidable !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8120000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb La BBC outsource sa classification documentaire avec #wikipedia. Formidable !\",\"created_at\":\"Tue Oct 18 17:20:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[63,73]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346812855549952\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7529,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346812855549952}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8120000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "daacaa1f-6103-48f8-b1ca-120dbb6fa068-126346812855549952" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb (point BBC : toute discussion sur le web sémantique débouche a un moment ou a un autre sur la BBC.)", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb (point BBC : toute discussion sur le web sémantique débouche a un moment ou a un autre sur la BBC.)", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8137000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb (point BBC : toute discussion sur le web s\\u00e9mantique d\\u00e9bouche a un moment ou a un autre sur la BBC.)\",\"created_at\":\"Tue Oct 18 17:20:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346885404442624\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1632,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346885404442624}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8137000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "11fe633c-a151-4296-86e6-b8a22432aaad-126346885404442624" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @_omr: #MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", -"img": { -"src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" -}, -"title": "Coline Aunis: RT @_omr: #MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8288000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @_omr: #MuseoWeb A l'origine le Web \\u00e9tait inscriptible nous rappelle Fabien Gandon (capture d'image \\u00e0 l'appui) http:\\/\\/t.co\\/Pxjrt5b4 #EDIT\",\"created_at\":\"Tue Oct 18 17:22:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[10,19]},{\"text\":\"EDIT\",\"indices\":[135,140]}],\"user_mentions\":[{\"indices\":[3,8],\"id_str\":\"16592723\",\"name\":\"Omer Pesquer\",\"screen_name\":\"_omr\",\"id\":16592723}],\"urls\":[{\"indices\":[114,134],\"url\":\"http:\\/\\/t.co\\/Pxjrt5b4\",\"expanded_url\":\"http:\\/\\/goo.gl\\/b6iJv\",\"display_url\":\"goo.gl\\/b6iJv\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126347519931330560\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb A l'origine le Web \\u00e9tait inscriptible nous rappelle Fabien Gandon (capture d'image \\u00e0 l'appui) http:\\/\\/t.co\\/Pxjrt5b4 #EDIT\",\"created_at\":\"Tue Oct 18 17:09:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]},{\"text\":\"EDIT\",\"indices\":[125,130]}],\"user_mentions\":[],\"urls\":[{\"indices\":[104,124],\"url\":\"http:\\/\\/t.co\\/Pxjrt5b4\",\"expanded_url\":\"http:\\/\\/goo.gl\\/b6iJv\",\"display_url\":\"goo.gl\\/b6iJv\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344237187989504\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6657,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344237187989504},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2019,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126347519931330560}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8288000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b1bf7cc1-5271-4233-bbe4-ef7c3bf5e52c-126347519931330560" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "\"la page est à la fois document et source de données...\"fabien gandon Yes ! je commence à comprendre le monde du web sémantique ;) #museoweb", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: \"la page est à la fois document et source de données...\"fabien gandon Yes ! je commence à comprendre le monde du web sémantique ;) #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8348000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"la page est \\u00e0 la fois document et source de donn\\u00e9es...\\\"fabien gandon Yes ! je commence \\u00e0 comprendre le monde du web s\\u00e9mantique ;) #museoweb\",\"created_at\":\"Tue Oct 18 17:23:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126347770998173696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"default_profile\":false,\"statuses_count\":1959,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126347770998173696}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8348000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3bf45905-005d-48c4-83e6-a4df93cd93b2-126347770998173696" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Présentation du projet Datalift qui cherche à accélérer la production de jeu de données en ligne #museoweb @Fabien_gandon", -"img": { -"src": "None" -}, -"title": "C/blog: Présentation du projet Datalift qui cherche à accélérer la production de jeu de données en ligne #museoweb @Fabien_gandon", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8353000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Pr\\u00e9sentation du projet Datalift qui cherche \\u00e0 acc\\u00e9l\\u00e9rer la production de jeu de donn\\u00e9es en ligne #museoweb @Fabien_gandon\",\"created_at\":\"Tue Oct 18 17:23:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[97,106]}],\"user_mentions\":[{\"indices\":[107,121],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126347792938573825\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2029,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126347792938573825}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8353000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "419afcb9-5d7d-4013-abc2-578e863f6dee-126347792938573825" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb si l'opendata est le passeport pour le DPI alors le web semantique conduit a un web asocial", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: #museoweb si l'opendata est le passeport pour le DPI alors le web semantique conduit a un web asocial", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8455000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb si l'opendata est le passeport pour le DPI alors le web semantique conduit a un web asocial\",\"created_at\":\"Tue Oct 18 17:25:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348220233297920\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48667,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348220233297920}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8455000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3dcc367c-c8a0-408d-a434-850bf697adad-126348220233297920" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@vpaillas sur polemictweet.com :-) #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @vpaillas sur polemictweet.com :-) #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8488000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas sur polemictweet.com :-) #museoweb\",\"created_at\":\"Tue Oct 18 17:26:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[36,45]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[14,30],\"url\":\"polemictweet.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126344398144413696\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348357684838400\",\"in_reply_to_status_id\":126344398144413696,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"default_profile\":false,\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3259,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348357684838400}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8488000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "30666b98-9f71-4994-b27a-9acb10a3241b-126348357684838400" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Web 1.0 : documentaire, web 2.0 : je donne la main à l'utilisateur, web 3.0 je joins tout cela au web semantique @Fabien_gandon #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: Web 1.0 : documentaire, web 2.0 : je donne la main à l'utilisateur, web 3.0 je joins tout cela au web semantique @Fabien_gandon #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8500000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Web 1.0 : documentaire, web 2.0 : je donne la main \\u00e0 l'utilisateur, web 3.0 je joins tout cela au web semantique @Fabien_gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:26:22 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[128,137]}],\"user_mentions\":[{\"indices\":[113,127],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348408972771329\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2030,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348408972771329}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8500000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d99c170e-836e-4177-a017-22b364929e0b-126348408972771329" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb le web 3.0, c'est le web 1 + 2 + le web sémantique (et pas le web sémantique tout seul) selon @fabien_gandon ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb le web 3.0, c'est le web 1 + 2 + le web sémantique (et pas le web sémantique tout seul) selon @fabien_gandon ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8553000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb le web 3.0, c'est le web 1 + 2 + le web s\\u00e9mantique (et pas le web s\\u00e9mantique tout seul) selon @fabien_gandon ++\",\"created_at\":\"Tue Oct 18 17:27:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[104,118],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348629450555393\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1633,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348629450555393}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8553000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "539e39f9-0b81-498e-88fe-1ccf80f1a073-126348629450555393" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @lizarewind: #MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", -"img": { -"src": "http://a2.twimg.com/profile_images/1373717241/IMAG0908_normal.jpg" -}, -"title": "Julien Carrasco: RT @lizarewind: #MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8559000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @lizarewind: #MuseoWeb @fabien_gandon passionnant http:\\/\\/t.co\\/X0cwHJ8Q\",\"created_at\":\"Tue Oct 18 17:27:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[16,25]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"110428655\",\"name\":\"lizarewind\",\"screen_name\":\"lizarewind\",\"id\":110428655},{\"indices\":[26,40],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[{\"indices\":[53,73],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348653148385280\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb @fabien_gandon passionnant http:\\/\\/t.co\\/X0cwHJ8Q\",\"created_at\":\"Tue Oct 18 17:12:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,24],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[{\"indices\":[37,57],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344892547997696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":552,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":642,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"statuses_count\":5538,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344892547997696},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Wed Sep 09 13:24:40 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/314346450\\/262590_10150275114596178_647066177_7502923_3896783_n.jpg\",\"followers_count\":330,\"description\":\"Still Twitting on the fence - #art #movement #connections Time zone: London, Paris, Perpignan\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/atelierdespassages.blogspot.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/314346450\\/262590_10150275114596178_647066177_7502923_3896783_n.jpg\",\"favourites_count\":815,\"id_str\":\"72850903\",\"listed_count\":22,\"friends_count\":498,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1373717241\\/IMAG0908_normal.jpg\",\"screen_name\":\"Les_Passages\",\"name\":\"Julien Carrasco\",\"statuses_count\":1875,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":72850903,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1373717241\\/IMAG0908_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348653148385280}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8559000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "5016595e-fc5b-4760-8940-cbd3986a25be-126348653148385280" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "évolution Web : documentaire / structuré / sémantique / social... web 3.0 une zone de friction entre les 2 derniers. Fabien Gandon #museoweb", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: évolution Web : documentaire / structuré / sémantique / social... web 3.0 une zone de friction entre les 2 derniers. Fabien Gandon #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8595000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\u00e9volution Web : documentaire \\/ structur\\u00e9 \\/ s\\u00e9mantique \\/ social... web 3.0 une zone de friction entre les 2 derniers. Fabien Gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:27:57 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348808153083905\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1960,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348808153083905}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8595000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f8d066a7-ff2f-4580-ab2b-b28f364c454e-126348808153083905" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "\"les utilisateurs sont de + en + vus par les acteurs du #web comme des processeurs.\" @Fabien_gandon #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: \"les utilisateurs sont de + en + vus par les acteurs du #web comme des processeurs.\" @Fabien_gandon #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8606000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"les utilisateurs sont de + en + vus par les acteurs du #web comme des processeurs.\\\" @Fabien_gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:28:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"web\",\"indices\":[56,60]},{\"text\":\"museoweb\",\"indices\":[100,109]}],\"user_mentions\":[{\"indices\":[85,99],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348852730150913\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2031,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348852730150913}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8606000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "094fd199-7d6d-49e6-ae66-0d6ff977a678-126348852730150913" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@gonzagauthier c'est un universel en extension, pas en exclusion. Un parmi d'autres ! #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @gonzagauthier c'est un universel en extension, pas en exclusion. Un parmi d'autres ! #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8641000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier c'est un universel en extension, pas en exclusion. Un parmi d'autres ! #museoweb\",\"created_at\":\"Tue Oct 18 17:28:43 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[86,95]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126336712191389697\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348997869842432\",\"in_reply_to_status_id\":126336712191389697,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"default_profile\":false,\"statuses_count\":3260,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348997869842432}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8641000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "215fbe0f-4246-49b6-abb3-d424a5247672-126348997869842432" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8678000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb\",\"created_at\":\"Tue Oct 18 17:29:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349155588247552\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1634,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349155588247552}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8678000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "44628e03-d6a8-4aa7-9f9c-8f8d7087828a-126349155588247552" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici, épidémie de grippe).++(", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici, épidémie de grippe).++(", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8682000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"retweeted\":false,\"text\":\"#museoweb D\\u00e9monstration de la puissance de #google dans la pr\\u00e9diction des \\u00e9v\\u00e9nements sociaux (ici, \\u00e9pid\\u00e9mie de grippe).++(\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"entities\":{\"urls\":[],\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"google\",\"indices\":[43,50]}],\"user_mentions\":[]},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126349170046009344\",\"place\":null,\"contributors\":null,\"truncated\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"retweet_count\":0,\"in_reply_to_user_id\":null,\"favorited\":false,\"created_at\":\"Tue Oct 18 17:29:24 +0000 2011\",\"geo\":null,\"user\":{\"geo_enabled\":false,\"profile_use_background_image\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_text_color\":\"333333\",\"lang\":\"fr\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"location\":\"Paris \\/ Lille\",\"id_str\":\"136900327\",\"notifications\":null,\"profile_link_color\":\"0084B4\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"screen_name\":\"gonzagauthier\",\"is_translator\":false,\"verified\":false,\"favourites_count\":231,\"listed_count\":59,\"following\":null,\"friends_count\":425,\"profile_background_color\":\"C0DEED\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"show_all_inline_media\":false,\"contributors_enabled\":false,\"statuses_count\":7531,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"protected\":false,\"name\":\"gonzague gauthier\",\"default_profile_image\":false,\"default_profile\":true,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"followers_count\":728,\"id\":136900327,\"utc_offset\":3600,\"url\":null},\"in_reply_to_screen_name\":null,\"id\":126349170046009344}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8682000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2408bf1c-d7e0-4d86-8fb1-0ae8a911e14d-126349170046009344" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb oula les humains sont des processeurs qu'on peut utiliser ????? #transhumanisme", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: #museoweb oula les humains sont des processeurs qu'on peut utiliser ????? #transhumanisme", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8744000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb oula les humains sont des processeurs qu'on peut utiliser ????? #transhumanisme\",\"created_at\":\"Tue Oct 18 17:30:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"transhumanisme\",\"indices\":[74,89]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349431644758016\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"default_profile\":false,\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48668,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349431644758016}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8744000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "79850faa-16f2-4796-bd02-73dd0726a75b-126349431644758016" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8754000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb\",\"created_at\":\"Tue Oct 18 17:30:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349474237915137\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48669,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349474237915137}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8754000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d09732c3-3913-4fa6-9d20-939ae02cd1d7-126349474237915137" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "\"le web comme une machine virtuelle de moteurs à pulsions.\" @Fabien_gandon #museoweb", -"img": { -"src": "None" -}, -"title": "C/blog: \"le web comme une machine virtuelle de moteurs à pulsions.\" @Fabien_gandon #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8770000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"le web comme une machine virtuelle de moteurs \\u00e0 pulsions.\\\" @Fabien_gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:30:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[75,84]}],\"user_mentions\":[{\"indices\":[60,74],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349538393985024\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2032,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349538393985024}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8770000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a87096ba-c632-4d14-9ffe-0c5b9ae9cca8-126349538393985024" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@figoblog mais pas au point Shirky :-) #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @figoblog mais pas au point Shirky :-) #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8772000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"figoblog\",\"in_reply_to_user_id\":8814092,\"text\":\"@figoblog mais pas au point Shirky :-) #museoweb\",\"created_at\":\"Tue Oct 18 17:30:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[40,49]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126341529345327104\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"8814092\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349548225433600\",\"in_reply_to_status_id\":126341529345327104,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3261,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349548225433600}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8772000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2e4abf6f-da73-42b6-a469-474043ea5a1f-126349548225433600" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@florencemeichel je ne crois pas que Fabien ait dit cela. Plutôt que nous étions \"traités\" comme des ressources #nuance #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @florencemeichel je ne crois pas que Fabien ait dit cela. Plutôt que nous étions \"traités\" comme des ressources #nuance #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8873000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"florencemeichel\",\"in_reply_to_user_id\":5739312,\"text\":\"@florencemeichel je ne crois pas que Fabien ait dit cela. Plut\\u00f4t que nous \\u00e9tions \\\"trait\\u00e9s\\\" comme des ressources #nuance #museoweb\",\"created_at\":\"Tue Oct 18 17:32:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"nuance\",\"indices\":[112,119]},{\"text\":\"museoweb\",\"indices\":[120,129]}],\"user_mentions\":[{\"indices\":[0,16],\"id_str\":\"5739312\",\"name\":\"florence meichel\",\"screen_name\":\"florencemeichel\",\"id\":5739312}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126349431644758016\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"5739312\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349973452369921\",\"in_reply_to_status_id\":126349431644758016,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"default_profile\":false,\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3262,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349973452369921}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8873000, -"tags": [ -{ -"id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "9870b936-041a-475b-922d-1fabaab9727d-126349973452369921" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", -"img": { -"src": "http://a0.twimg.com/profile_images/1575374089/isa_normal.jpg" -}, -"title": "Isabelle Gruet: RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 8905000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir ...\",\"created_at\":\"Tue Oct 18 17:33:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]},{\"text\":\"fabien_gandon\",\"indices\":[40,54]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[106,126],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350106705395714\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"default_profile\":false,\"statuses_count\":1961,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e2d9b2\",\"created_at\":\"Thu Apr 09 05:49:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"d3d2cf\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/59473055\\/circle-bouqet.jpg\",\"followers_count\":2001,\"description\":\"Relationniste pour Thot Cursus (@thot) - R\\u00e9seaux sociaux, community management, veille : \\u00e9ducation, formation, TIC ... et curiosit\\u00e9s !\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.doyoubuzz.com\\/isabelle-gruet\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/59473055\\/circle-bouqet.jpg\",\"favourites_count\":1127,\"id_str\":\"29932245\",\"listed_count\":330,\"friends_count\":721,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Rennes\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1575374089\\/isa_normal.jpg\",\"screen_name\":\"igruet\",\"name\":\"Isabelle Gruet\",\"default_profile\":false,\"statuses_count\":18919,\"verified\":false,\"profile_background_color\":\"e1b1d0\",\"id\":29932245,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1575374089\\/isa_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":true,\"id\":126350106705395714}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 8905000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2ef3da34-3a75-4add-a547-61dfe236ce2f-126350106705395714" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb RT @gonzagauthier: Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici,épidémie de grippe).++", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb RT @gonzagauthier: Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici,épidémie de grippe).++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9049000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb RT @gonzagauthier: D\\u00e9monstration de la puissance de #google dans la pr\\u00e9diction des \\u00e9v\\u00e9nements sociaux (ici,\\u00e9pid\\u00e9mie de grippe).++\",\"created_at\":\"Tue Oct 18 17:35:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"google\",\"indices\":[62,69]}],\"user_mentions\":[{\"indices\":[13,27],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350712077680640\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6658,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126350712077680640}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9049000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "1d2b40ba-1716-4415-909d-3351ba3824dd-126350712077680640" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "est-ce que les videos des interventions sur #museoweb sont disponibles a posteriori ou seulement en livestreaming ?", -"img": { -"src": "http://a1.twimg.com/profile_images/1110558324/sylvain_bouteille_normal.jpg" -}, -"title": "Sylvain Machefert: est-ce que les videos des interventions sur #museoweb sont disponibles a posteriori ou seulement en livestreaming ?", -"color": "16763904", -"polemics": [ -"Q" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9054000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"est-ce que les videos des interventions sur #museoweb sont disponibles a posteriori ou seulement en livestreaming ?\",\"created_at\":\"Tue Oct 18 17:35:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[44,53]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350732831096833\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Tue Oct 28 16:18:44 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":401,\"description\":\"un geek au milieu des biblioth\\u00e9caires, wikip\\u00e9dien \\u00e0 ses heures perdues\",\"default_profile\":true,\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.sylvainmachefert.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":727,\"id_str\":\"17023747\",\"listed_count\":65,\"friends_count\":138,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Burdigala\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\",\"screen_name\":\"symac\",\"name\":\"Sylvain Machefert\",\"statuses_count\":3969,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":17023747,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126350732831096833}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9054000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "936e8750-36e4-4c7e-9801-9ed107bbf17e-126350732831096833" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@igruet retrouvez la video du séminaire sur polemictweet.com :-) #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @igruet retrouvez la video du séminaire sur polemictweet.com :-) #museoweb", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9118000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"igruet\",\"in_reply_to_user_id\":29932245,\"text\":\"@igruet retrouvez la video du s\\u00e9minaire sur polemictweet.com :-) #museoweb\",\"created_at\":\"Tue Oct 18 17:36:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[66,75]}],\"user_mentions\":[{\"indices\":[0,7],\"id_str\":\"29932245\",\"name\":\"Isabelle Gruet\",\"screen_name\":\"igruet\",\"id\":29932245}],\"urls\":[{\"indices\":[44,60],\"url\":\"polemictweet.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126350106705395714\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"29932245\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350999844700160\",\"in_reply_to_status_id\":126350106705395714,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"default_profile\":false,\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3264,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126350999844700160}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9118000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b2d2af6e-e273-4a9d-b179-6c29095ccc25-126350999844700160" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Bravo pour la mise en abime, rendez vous en fin de semaine pour voir nos tweets sur les tweets filmés par la caméra !!++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Bravo pour la mise en abime, rendez vous en fin de semaine pour voir nos tweets sur les tweets filmés par la caméra !!++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9133000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Bravo pour la mise en abime, rendez vous en fin de semaine pour voir nos tweets sur les tweets film\\u00e9s par la cam\\u00e9ra !!++\",\"created_at\":\"Tue Oct 18 17:36:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351062008475649\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":175,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":364,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351062008475649}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9133000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "41445443-5844-41f6-aa71-5466bba11dc1-126351062008475649" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb REf: http://t.co/doa9Kqd7 Google FluTrends \"Suivez l'évolution de la grippe dans le monde entier\" /cc @gonzagauthier", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb REf: http://t.co/doa9Kqd7 Google FluTrends \"Suivez l'évolution de la grippe dans le monde entier\" /cc @gonzagauthier", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9147000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb REf: http:\\/\\/t.co\\/doa9Kqd7 Google FluTrends \\\"Suivez l'\\u00e9volution de la grippe dans le monde entier\\\" \\/cc @gonzagauthier\",\"created_at\":\"Tue Oct 18 17:37:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[113,127],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[{\"indices\":[16,36],\"url\":\"http:\\/\\/t.co\\/doa9Kqd7\",\"expanded_url\":\"http:\\/\\/www.google.org\\/flutrends\\/\",\"display_url\":\"google.org\\/flutrends\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351120825196545\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6659,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351120825196545}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9147000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "41b69d6e-4f1e-40d6-bad0-e635455d4347-126351120825196545" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@symac les deux ! #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @symac les deux ! #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9152000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"symac\",\"in_reply_to_user_id\":17023747,\"text\":\"@symac les deux ! #museoweb\",\"created_at\":\"Tue Oct 18 17:37:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[0,6],\"id_str\":\"17023747\",\"name\":\"Sylvain Machefert\",\"screen_name\":\"symac\",\"id\":17023747}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126350732831096833\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"17023747\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351140446146560\",\"in_reply_to_status_id\":126350732831096833,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3265,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351140446146560}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9152000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "8ac85d56-f878-4f9c-827c-17511e4e7074-126351140446146560" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb La fin de l'intervention remet en place des enjeux politiques du web. ++", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: #museoweb La fin de l'intervention remet en place des enjeux politiques du web. ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9319000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb La fin de l'intervention remet en place des enjeux politiques du web. ++\",\"created_at\":\"Tue Oct 18 17:40:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351843709304832\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7532,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351843709304832}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9319000, -"tags": [ -{ -"id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "936f27f6-ed74-4322-8dfd-fc16cacb6074-126351843709304832" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9319000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet ++\",\"created_at\":\"Tue Oct 18 17:40:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"iri\",\"indices\":[55,59]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351844644618241\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1021,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1635,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351844644618241}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9319000, -"tags": [ -{ -"id-ref": "998d3736-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998d3736-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "2a9cf3c0-439f-4663-846c-7d6a60ab0ef0-126351844644618241" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Scotchée par la proposition mise en abime vidéo / tweets sur une timeline #museoweb", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: Scotchée par la proposition mise en abime vidéo / tweets sur une timeline #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9320000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Scotch\\u00e9e par la proposition mise en abime vid\\u00e9o \\/ tweets sur une timeline #museoweb\",\"created_at\":\"Tue Oct 18 17:40:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[75,84]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351847714852865\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":577,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1962,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351847714852865}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9320000, -"tags": [ -{ -"id-ref": "998d3736-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "bd885748-13e9-4fb0-97a7-899068916fba-126351847714852865" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@vpaillas j'espere qu' au moins la presentation ppt de @fabien_gandin sera disponible en ligne #museoweb", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: @vpaillas j'espere qu' au moins la presentation ppt de @fabien_gandin sera disponible en ligne #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9384000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas j'espere qu' au moins la presentation ppt de @fabien_gandin sera disponible en ligne #museoweb\",\"created_at\":\"Tue Oct 18 17:41:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[95,104]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352116653625344\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":928,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352116653625344}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9384000, -"tags": [ -{ -"id-ref": "998d3736-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "5c06b414-f38e-4e64-aa1a-2750088867e2-126352116653625344" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@gonzagauthier non, non, car la cible de Shirky au final c'était les bibliothécaires ! #mauvaisepolitique #museoweb #nepasetromperdecible", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @gonzagauthier non, non, car la cible de Shirky au final c'était les bibliothécaires ! #mauvaisepolitique #museoweb #nepasetromperdecible", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9388000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier non, non, car la cible de Shirky au final c'\\u00e9tait les biblioth\\u00e9caires ! #mauvaisepolitique #museoweb #nepasetromperdecible\",\"created_at\":\"Tue Oct 18 17:41:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"mauvaisepolitique\",\"indices\":[87,105]},{\"text\":\"museoweb\",\"indices\":[106,115]},{\"text\":\"nepasetromperdecible\",\"indices\":[116,137]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126340875407204352\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352133011419136\",\"in_reply_to_status_id\":126340875407204352,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"default_profile\":false,\"statuses_count\":3266,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352133011419136}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9388000, -"tags": [ -{ -"id-ref": "998d872c-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998d872c-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "be03bc3b-e9a3-46a3-82b7-22ca6888365c-126352133011419136" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", -"color": "16763904", -"polemics": [ -"Q", -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9453000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Fabien Gandon : un bon plaidoyer pour le droit \\u00e0 la d\\u00e9nonnexion !! Malgr\\u00e9 lui ?++\",\"created_at\":\"Tue Oct 18 17:42:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352405846687745\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"default_profile\":true,\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":176,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":366,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352405846687745}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9453000, -"tags": [ -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a25b93ea-8e5a-4032-867f-e042c1f3bc8a-126352405846687745" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@costisd Fabien Gandon ;) #museoweb Sûrement sur Slideshare !", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @costisd Fabien Gandon ;) #museoweb Sûrement sur Slideshare !", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9477000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"costisd\",\"in_reply_to_user_id\":20733366,\"text\":\"@costisd Fabien Gandon ;) #museoweb S\\u00fbrement sur Slideshare !\",\"created_at\":\"Tue Oct 18 17:42:39 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[26,35]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"20733366\",\"name\":\"Costis Dallas\",\"screen_name\":\"costisd\",\"id\":20733366}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126352116653625344\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"20733366\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352505805352961\",\"in_reply_to_status_id\":126352116653625344,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"default_profile\":false,\"statuses_count\":3266,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352505805352961}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9477000, -"tags": [ -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4b9b21a2-df19-41cf-9c03-bd34f5fcab63-126352505805352961" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Super ! Merci RT @figoblog #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet", -"img": { -"src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" -}, -"title": "Virginie Paillas: Super ! Merci RT @figoblog #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9490000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Super ! Merci RT @figoblog #museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet\",\"created_at\":\"Tue Oct 18 17:42:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[28,37]},{\"text\":\"iri\",\"indices\":[83,87]}],\"user_mentions\":[{\"indices\":[18,27],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352560704598016\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":577,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1963,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352560704598016}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9490000, -"tags": [ -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b9b5cf63-0f39-4043-b05e-d9581f5be92b-126352560704598016" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vincentpuig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", -"img": { -"src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" -}, -"title": "florence meichel: RT @vincentpuig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", -"color": "16763904", -"polemics": [ -"Q", -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9504000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit \\u00e0 la d\\u00e9nonnexion !! Malgr\\u00e9 lui ?++\",\"created_at\":\"Tue Oct 18 17:43:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352619206742018\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Fabien Gandon : un bon plaidoyer pour le droit \\u00e0 la d\\u00e9nonnexion !! Malgr\\u00e9 lui ?++\",\"created_at\":\"Tue Oct 18 17:42:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352405846687745\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":176,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":366,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126352405846687745},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48672,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126352619206742018}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9504000, -"tags": [ -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4d1ab3c7-5c58-4468-a6b2-0302198b09e5-126352619206742018" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Fabien Gadon cite le projet \"Live Social Semantics\" - Video http://t.co/cWt4CHxt", -"img": { -"src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" -}, -"title": "Omer Pesquer: #museoweb Fabien Gadon cite le projet \"Live Social Semantics\" - Video http://t.co/cWt4CHxt", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9579000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Fabien Gadon cite le projet \\\"Live Social Semantics\\\" - Video http:\\/\\/t.co\\/cWt4CHxt\",\"created_at\":\"Tue Oct 18 17:44:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[71,91],\"url\":\"http:\\/\\/t.co\\/cWt4CHxt\",\"expanded_url\":\"http:\\/\\/vimeo.com\\/6590604\",\"display_url\":\"vimeo.com\\/6590604\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352933800509440\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6660,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352933800509440}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9579000, -"tags": [ -{ -"id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "a5a10de7-8e6f-4f88-af0a-eb78d5f98046-126352933800509440" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb tout ça ne peut marcher que si les metadonnees sont au coeur de tout. @fabien_gandon #c'estBeau ++", -"img": { -"src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" -}, -"title": "Emmanuelle Bermes: #museoweb tout ça ne peut marcher que si les metadonnees sont au coeur de tout. @fabien_gandon #c'estBeau ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9634000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb tout \\u00e7a ne peut marcher que si les metadonnees sont au coeur de tout. @fabien_gandon #c'estBeau ++\",\"created_at\":\"Tue Oct 18 17:45:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"c\",\"indices\":[95,97]}],\"user_mentions\":[{\"indices\":[80,94],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353164663406592\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1021,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1636,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353164663406592}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9634000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "e72144f4-9d85-4397-be86-8496b98ee320-126353164663406592" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@gonzagauthier de son architecture et tout le monde l'ignore. C'est un pont de vue minoritaire en dépit des apparences #museoweb", -"img": { -"src": "None" -}, -"title": "Alexandre Monnin: @gonzagauthier de son architecture et tout le monde l'ignore. C'est un pont de vue minoritaire en dépit des apparences #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9691000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier de son architecture et tout le monde l'ignore. C'est un pont de vue minoritaire en d\\u00e9pit des apparences #museoweb\",\"created_at\":\"Tue Oct 18 17:46:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126337159409053697\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353401679327232\",\"in_reply_to_status_id\":126337159409053697,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3268,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353401679327232}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9691000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "4ab2d1b6-d7e2-4abb-a3fc-97167131d567-126353401679327232" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Really gr8 #museoweb symposium on digital museum communication (in French) at #iri. Watch next week for video podcast: http://t.co/Wc0TXvFN", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: Really gr8 #museoweb symposium on digital museum communication (in French) at #iri. Watch next week for video podcast: http://t.co/Wc0TXvFN", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9699000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Really gr8 #museoweb symposium on digital museum communication (in French) at #iri. Watch next week for video podcast: http:\\/\\/t.co\\/Wc0TXvFN\",\"created_at\":\"Tue Oct 18 17:46:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"iri\",\"indices\":[78,82]}],\"user_mentions\":[],\"urls\":[{\"indices\":[119,139],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353435787411456\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":929,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353435787411456}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9699000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "d1d93524-4a0b-4ad9-8eaf-8395ee4e7474-126353435787411456" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @florencemeichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", -"img": { -"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png" -}, -"title": "MARIA : RT @florencemeichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9707000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @florencemeichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http:\\/\\/t.co\\/pZmqLXbW\",\"created_at\":\"Tue Oct 18 17:46:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[21,30]}],\"user_mentions\":[{\"indices\":[3,19],\"id_str\":\"5739312\",\"name\":\"florence meichel\",\"screen_name\":\"florencemeichel\",\"id\":5739312}],\"urls\":[{\"indices\":[91,111],\"url\":\"http:\\/\\/t.co\\/pZmqLXbW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/rE1Dw\",\"display_url\":\"goo.gl\\/rE1Dw\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353471472549888\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ontologie evolutive et tentative de court-circuit de Google http:\\/\\/t.co\\/pZmqLXbW\",\"created_at\":\"Tue Oct 18 17:07:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[70,90],\"url\":\"http:\\/\\/t.co\\/pZmqLXbW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/rE1Dw\",\"display_url\":\"goo.gl\\/rE1Dw\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343743707168768\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48672,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343743707168768},\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"created_at\":\"Sun Aug 28 14:47:00 +0000 2011\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DBE9ED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"followers_count\":0,\"description\":\"\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"363692606\",\"listed_count\":0,\"friends_count\":0,\"profile_link_color\":\"CC3366\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"screen_name\":\"mimoulahmer\",\"name\":\"MARIA \",\"statuses_count\":10,\"verified\":false,\"profile_background_color\":\"DBE9ED\",\"id\":363692606,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353471472549888}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9707000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "7da284d8-0985-4428-9d2a-28839e116cdf-126353471472549888" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", -"img": { -"src": "http://a0.twimg.com/profile_images/1413500452/303b8aaf-8960-4da5-89fb-d82f2afda78f_normal.png" -}, -"title": "Damien Clauzel: RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 9747000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 17:47:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[89,101]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[102,115],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353638179356672\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:01:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[75,87]}],\"user_mentions\":[{\"indices\":[88,101],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326944408158208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1021,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1636,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126326944408158208},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Apr 29 07:52:58 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/56303225\\/1256758211639.jpg\",\"followers_count\":439,\"description\":\"Chercheur en informatique. Plongeur. Sp\\u00e9cialiste de l'innovation. Geek. Enseignant. Libriste.\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/Damien.Clauzel.nom.fr\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/56303225\\/1256758211639.jpg\",\"favourites_count\":154,\"id_str\":\"14582008\",\"listed_count\":32,\"friends_count\":291,\"profile_link_color\":\"7696bf\",\"protected\":false,\"location\":\"Villeurbanne, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1413500452\\/303b8aaf-8960-4da5-89fb-d82f2afda78f_normal.png\",\"screen_name\":\"dclauzel\",\"name\":\"Damien Clauzel\",\"statuses_count\":5163,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":14582008,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1413500452\\/303b8aaf-8960-4da5-89fb-d82f2afda78f_normal.png\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126353638179356672}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 9747000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "ced98295-cefe-4f9d-941f-c9242d3d459d-126353638179356672" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "Just hrd @Fabien_Gandon interesting talk in #museoweb symposium #iri. Earlier presentations: http://t.co/yfzW7nqv Merci @aamonnz!", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: Just hrd @Fabien_Gandon interesting talk in #museoweb symposium #iri. Earlier presentations: http://t.co/yfzW7nqv Merci @aamonnz!", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10041000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Just hrd @Fabien_Gandon interesting talk in #museoweb symposium #iri. Earlier presentations: http:\\/\\/t.co\\/yfzW7nqv Merci @aamonnz!\",\"created_at\":\"Tue Oct 18 17:52:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[44,53]},{\"text\":\"iri\",\"indices\":[64,68]}],\"user_mentions\":[{\"indices\":[9,23],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911},{\"indices\":[120,128],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[{\"indices\":[93,113],\"url\":\"http:\\/\\/t.co\\/yfzW7nqv\",\"expanded_url\":\"http:\\/\\/slidesha.re\\/pkk2w8\",\"display_url\":\"slidesha.re\\/pkk2w8\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126354872210702336\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":930,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126354872210702336}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10041000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "3b25676d-64d5-4cb0-95ab-ec1e9045f410-126354872210702336" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @figoblog: #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", -"img": { -"src": "http://a2.twimg.com/profile_images/1562510466/WikiGnomes_21_normal.png" -}, -"title": "Frère Moine: RT @figoblog: #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", -"color": "16763904", -"polemics": [ -"OK" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10090000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"text\":\"RT @figoblog: #museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet ++\",\"created_at\":\"Tue Oct 18 17:52:52 +0000 2011\",\"in_reply_to_screen_name\":null,\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]},{\"text\":\"iri\",\"indices\":[69,73]}],\"user_mentions\":[{\"indices\":[3,12],\"screen_name\":\"figoblog\",\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"id\":8814092}],\"urls\":[]},\"geo\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"source\":\"web\",\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126355074887856130\",\"in_reply_to_status_id\":null,\"contributors\":null,\"truncated\":false,\"retweeted_status\":{\"text\":\"#museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet ++\",\"created_at\":\"Tue Oct 18 17:40:01 +0000 2011\",\"in_reply_to_screen_name\":null,\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"iri\",\"indices\":[55,59]}],\"user_mentions\":[],\"urls\":[]},\"geo\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126351844644618241\",\"in_reply_to_status_id\":null,\"contributors\":null,\"truncated\":false,\"user\":{\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"lang\":\"en\",\"followers_count\":1021,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"screen_name\":\"figoblog\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"profile_text_color\":\"000000\",\"following\":null,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"id_str\":\"8814092\",\"profile_link_color\":\"0000ff\",\"location\":\"Paris\",\"is_translator\":false,\"notifications\":null,\"favourites_count\":1,\"protected\":false,\"listed_count\":145,\"verified\":false,\"friends_count\":78,\"profile_background_color\":\"9ae4e8\",\"name\":\"Emmanuelle Bermes\",\"profile_background_tile\":true,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"id\":8814092,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"statuses_count\":1636,\"utc_offset\":-10800,\"profile_sidebar_fill_color\":\"e0ff92\"},\"id\":126351844644618241,\"retweet_count\":1,\"in_reply_to_user_id\":null,\"favorited\":false},\"user\":{\"created_at\":\"Sat Mar 13 15:55:20 +0000 2010\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a02527\",\"lang\":\"fr\",\"followers_count\":244,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/fr.wikipedia.org\\/wiki\\/utilisateur:Acer11\",\"description\":\"Moine catholique, conjuguant wikip\\u00e9dia, wikisource et la bibliophilie (BIBLIO, hein).\",\"screen_name\":\"Wikimoine\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/92680429\\/Archange-Gabriel-12-09.jpeg\",\"profile_text_color\":\"a24d36\",\"following\":null,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/92680429\\/Archange-Gabriel-12-09.jpeg\",\"id_str\":\"122701181\",\"profile_link_color\":\"0084B4\",\"location\":\"T\\u00eate_au_ciel._Pieds_sur_terre.\",\"is_translator\":false,\"notifications\":null,\"favourites_count\":9,\"protected\":false,\"listed_count\":34,\"verified\":false,\"friends_count\":97,\"profile_background_color\":\"fdd0a9\",\"name\":\"Fr\\u00e8re Moine\",\"profile_background_tile\":true,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1562510466\\/WikiGnomes_21_normal.png\",\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1562510466\\/WikiGnomes_21_normal.png\",\"id\":122701181,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"statuses_count\":1932,\"utc_offset\":3600,\"profile_sidebar_fill_color\":\"9fd5d6\"},\"id\":126355074887856130,\"retweet_count\":1,\"in_reply_to_user_id\":null,\"favorited\":false}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10090000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "79070417-8a88-40dc-b150-53d9444cfa33-126355074887856130" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb MediaLab Sciencespo:penser d'abord interfaces entre Web semantique / Web social. Stiegler approuverait mais posons les bases", -"img": { -"src": "None" -}, -"title": "Vincent Puig: #museoweb MediaLab Sciencespo:penser d'abord interfaces entre Web semantique / Web social. Stiegler approuverait mais posons les bases", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10148000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb MediaLab Sciencespo:penser d'abord interfaces entre Web semantique \\/ Web social. Stiegler approuverait mais posons les bases\",\"created_at\":\"Tue Oct 18 17:53:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126355319147331584\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":176,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":367,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126355319147331584}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10148000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "6060eaad-04cd-4534-86d9-62d0f6f45ba8-126355319147331584" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", -"img": { -"src": "http://a1.twimg.com/profile_images/1594817766/Homer_Simpson_Sideart_Homebrew_normal.jpg" -}, -"title": "rafael vidal: RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10348000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir ...\",\"created_at\":\"Tue Oct 18 17:57:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]},{\"text\":\"fabien_gandon\",\"indices\":[40,54]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[106,126],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126356159790723072\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":577,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1963,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Mar 01 18:27:01 +0000 2011\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"followers_count\":5,\"description\":\"\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"favourites_count\":0,\"id_str\":\"259363998\",\"listed_count\":1,\"friends_count\":58,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"nimes\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1594817766\\/Homer_Simpson_Sideart_Homebrew_normal.jpg\",\"screen_name\":\"matcamga\",\"name\":\"rafael vidal\",\"statuses_count\":9,\"verified\":false,\"profile_background_color\":\"EBEBEB\",\"id\":259363998,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1594817766\\/Homer_Simpson_Sideart_Homebrew_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":true,\"id\":126356159790723072}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10348000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -}, -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "f579e2b2-6de3-42ff-8dd4-bb5c8c00f2df-126356159790723072" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@aamonnz Si le bibliothécaire est vu comme une autorité incontournable qui empêche les productions collectives... #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: @aamonnz Si le bibliothécaire est vu comme une autorité incontournable qui empêche les productions collectives... #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10407000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"aamonnz\",\"in_reply_to_user_id\":7409472,\"text\":\"@aamonnz Si le biblioth\\u00e9caire est vu comme une autorit\\u00e9 incontournable qui emp\\u00eache les productions collectives... #museoweb\",\"created_at\":\"Tue Oct 18 17:58:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[114,123]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126352133011419136\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"7409472\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126356405048451072\",\"in_reply_to_status_id\":126352133011419136,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"default_profile\":true,\"listed_count\":60,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7534,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126356405048451072}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10407000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b5a664c5-da77-4a8a-a415-1585e936aacb-126356405048451072" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "@aamonnz Vu comme ça, ok, je comprends mieux. Même si la notion d'universelle est selon moi biaisée, dégagée des enjeux politiques #museoweb", -"img": { -"src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" -}, -"title": "gonzague gauthier: @aamonnz Vu comme ça, ok, je comprends mieux. Même si la notion d'universelle est selon moi biaisée, dégagée des enjeux politiques #museoweb", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10466000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":\"aamonnz\",\"in_reply_to_user_id\":7409472,\"text\":\"@aamonnz Vu comme \\u00e7a, ok, je comprends mieux. M\\u00eame si la notion d'universelle est selon moi biais\\u00e9e, d\\u00e9gag\\u00e9e des enjeux politiques #museoweb\",\"created_at\":\"Tue Oct 18 17:59:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126348997869842432\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"7409472\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126356653254787073\",\"in_reply_to_status_id\":126348997869842432,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":60,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7535,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126356653254787073}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10466000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "28006bde-b985-41de-97bf-9988d13bdd5e-126356653254787073" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb discussion: Bernard Stiegler situates web communication as sociotechnical system, w/ affordances / model of exploiting user traces", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: #museoweb discussion: Bernard Stiegler situates web communication as sociotechnical system, w/ affordances / model of exploiting user traces", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10567000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb discussion: Bernard Stiegler situates web communication as sociotechnical system, w\\/ affordances \\/ model of exploiting user traces\",\"created_at\":\"Tue Oct 18 18:00:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126357078741753856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":931,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126357078741753856}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10567000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "b747a160-2744-4f48-8886-5ca8b2d6bd6d-126357078741753856" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb symposium - fruitful debate spanning museum / digital culture practice, technologists, STS perspectives.", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: #museoweb symposium - fruitful debate spanning museum / digital culture practice, technologists, STS perspectives.", -"color": "16763904", -"polemics": [], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10787000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb symposium - fruitful debate spanning museum \\/ digital culture practice, technologists, STS perspectives.\",\"created_at\":\"Tue Oct 18 18:04:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126358001874509825\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":932,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126358001874509825}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10787000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "0f1d1644-4a67-483c-8dd7-dc95ad2912d5-126358001874509825" -}, -{ -"content": { -"mimetype": "application/x-ldt-structured", -"description": "#museoweb Bernard Stiegler proposes three distinct articulations between folskonomy and ontology. Fascinating. http://t.co/Wc0TXvFN", -"img": { -"src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" -}, -"title": "Costis Dallas: #museoweb Bernard Stiegler proposes three distinct articulations between folskonomy and ontology. Fascinating. http://t.co/Wc0TXvFN", -"color": "16763904", -"polemics": [ -"REF" -], -"audio": { -"mimetype": "audio/mp3", -"src": "", -"href": null -} -}, -"begin": 10875000, -"meta": { -"dc:contributor": "perso", -"dc:source": { -"mimetype": "application/json", -"url": "http://dev.twitter.com", -"content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Bernard Stiegler proposes three distinct articulations between folskonomy and ontology. Fascinating. http:\\/\\/t.co\\/Wc0TXvFN\",\"created_at\":\"Tue Oct 18 18:05:57 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[111,131],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126358369127768065\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":933,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126358369127768065}\n" -}, -"dc:creator": "perso", -"id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:modified": "2011-11-03T12:44:41.605056" -}, -"end": 10875000, -"tags": [ -{ -"id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" -} -], -"color": "16763904", -"media": "76171168-ff2b-11e0-bfbc-00145ea49a02", -"id": "fe7553b0-0cc8-43c4-8d4c-f390a1b48d6f-126358369127768065" -} -], -"annotation-types": [ -{ -"dc:contributor": "perso", -"dc:creator": "perso", -"dc:title": "Intervention", -"id": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", -"dc:created": "2011-11-03T12:44:41.600365", -"dc:description": "", -"dc:modified": "2011-11-03T12:44:41.600365" -}, -{ -"dc:contributor": "perso", -"dc:creator": "perso", -"dc:title": "Tweets", -"id": "732b819c-8f83-4458-88f1-242f0e8d3334", -"dc:created": "2011-11-03T12:44:41.605056", -"dc:description": "Tweets", -"dc:modified": "2011-11-03T12:44:41.605056" -} -] + "views": [ + { + "id": "0", + "contents": ["76171168-ff2b-11e0-bfbc-00145ea49a02"], + "annotation_types": ["c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", "732b819c-8f83-4458-88f1-242f0e8d3334"] + } + ], + "tags": [ + { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.773884", + "dc:title": "PointBBC", + "dc:modified": "2011-11-03T12:44:41.773884", + "dc:creator": "IRI" + }, + "id": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.687456", + "dc:title": "wikimedia", + "dc:modified": "2011-11-03T12:44:41.687456", + "dc:creator": "IRI" + }, + "id": "997cea3e-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.647203", + "dc:title": "culture", + "dc:modified": "2011-11-03T12:44:41.647203", + "dc:creator": "IRI" + }, + "id": "9976c5f0-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.632533", + "dc:title": "metadonnées", + "dc:modified": "2011-11-03T12:44:41.632533", + "dc:creator": "IRI" + }, + "id": "997488b2-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.629832", + "dc:title": "websocial", + "dc:modified": "2011-11-03T12:44:41.629832", + "dc:creator": "IRI" + }, + "id": "99741f4e-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.665634", + "dc:title": "Wikipédia", + "dc:modified": "2011-11-03T12:44:41.665634", + "dc:creator": "IRI" + }, + "id": "99799640-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.728828", + "dc:title": "yes", + "dc:modified": "2011-11-03T12:44:41.728828", + "dc:creator": "IRI" + }, + "id": "99833dee-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.614363", + "dc:title": "numérique", + "dc:modified": "2011-11-03T12:44:41.614363", + "dc:creator": "IRI" + }, + "id": "9971c316-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.710670", + "dc:title": "pointVictorHugo", + "dc:modified": "2011-11-03T12:44:41.710670", + "dc:creator": "IRI" + }, + "id": "99807532-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.743135", + "dc:title": "web", + "dc:modified": "2011-11-03T12:44:41.743135", + "dc:creator": "IRI" + }, + "id": "998569de-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.627754", + "dc:title": "semantique", + "dc:modified": "2011-11-03T12:44:41.627754", + "dc:creator": "IRI" + }, + "id": "9973ce0e-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.715962", + "dc:title": "fablab", + "dc:modified": "2011-11-03T12:44:41.715962", + "dc:creator": "IRI" + }, + "id": "998143a4-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.794282", + "dc:title": "iri", + "dc:modified": "2011-11-03T12:44:41.794282", + "dc:creator": "IRI" + }, + "id": "998d3736-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.768841", + "dc:title": "fanclub", + "dc:modified": "2011-11-03T12:44:41.768841", + "dc:creator": "IRI" + }, + "id": "9989553a-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.715962", + "dc:title": "open", + "dc:modified": "2011-11-03T12:44:41.715962", + "dc:creator": "IRI" + }, + "id": "99814818-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.749727", + "dc:title": "Cyborg", + "dc:modified": "2011-11-03T12:44:41.749727", + "dc:creator": "IRI" + }, + "id": "99866aaa-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.666428", + "dc:title": "wikipedia", + "dc:modified": "2011-11-03T12:44:41.666428", + "dc:creator": "IRI" + }, + "id": "9979b4e0-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.694233", + "dc:title": "transhumanisme", + "dc:modified": "2011-11-03T12:44:41.694233", + "dc:creator": "IRI" + }, + "id": "997df30c-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.606022", + "dc:title": "museoweb", + "dc:modified": "2011-11-03T12:44:41.606022", + "dc:creator": "IRI" + }, + "id": "99708000-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.733070", + "dc:title": "android", + "dc:modified": "2011-11-03T12:44:41.733070", + "dc:creator": "IRI" + }, + "id": "9983dfe2-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.698927", + "dc:title": "victorhugo", + "dc:modified": "2011-11-03T12:44:41.698927", + "dc:creator": "IRI" + }, + "id": "997eaa72-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.760838", + "dc:title": "fabien_gandon", + "dc:modified": "2011-11-03T12:44:41.760838", + "dc:creator": "IRI" + }, + "id": "99881ce2-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.676030", + "dc:title": "empirisme", + "dc:modified": "2011-11-03T12:44:41.676030", + "dc:creator": "IRI" + }, + "id": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.788288", + "dc:title": "nuance", + "dc:modified": "2011-11-03T12:44:41.788288", + "dc:creator": "IRI" + }, + "id": "998c4d80-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.610860", + "dc:title": "métadonnées", + "dc:modified": "2011-11-03T12:44:41.610860", + "dc:creator": "IRI" + }, + "id": "99713aa4-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.610860", + "dc:title": "websemantique", + "dc:modified": "2011-11-03T12:44:41.610860", + "dc:creator": "IRI" + }, + "id": "99713f40-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.621046", + "dc:title": "histoiredesarts", + "dc:modified": "2011-11-03T12:44:41.621046", + "dc:creator": "IRI" + }, + "id": "9972c842-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.625576", + "dc:title": "etalab", + "dc:modified": "2011-11-03T12:44:41.625576", + "dc:creator": "IRI" + }, + "id": "99737c7e-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.681492", + "dc:title": "scalabilité", + "dc:modified": "2011-11-03T12:44:41.681492", + "dc:creator": "IRI" + }, + "id": "997c01dc-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.733070", + "dc:title": "iOs", + "dc:modified": "2011-11-03T12:44:41.733070", + "dc:creator": "IRI" + }, + "id": "9983e424-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.800506", + "dc:title": "c", + "dc:modified": "2011-11-03T12:44:41.800506", + "dc:creator": "IRI" + }, + "id": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.732300", + "dc:title": "Google", + "dc:modified": "2011-11-03T12:44:41.732300", + "dc:creator": "IRI" + }, + "id": "9983c1ec-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.637198", + "dc:title": "Semantic", + "dc:modified": "2011-11-03T12:44:41.637198", + "dc:creator": "IRI" + }, + "id": "99753f32-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.764191", + "dc:title": "EDIT", + "dc:modified": "2011-11-03T12:44:41.764191", + "dc:creator": "IRI" + }, + "id": "99889f96-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.647203", + "dc:title": "websemantic", + "dc:modified": "2011-11-03T12:44:41.647203", + "dc:creator": "IRI" + }, + "id": "9976ce9c-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.796334", + "dc:title": "nepasetromperdecible", + "dc:modified": "2011-11-03T12:44:41.796334", + "dc:creator": "IRI" + }, + "id": "998d8b96-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.638674", + "dc:title": "Teasing", + "dc:modified": "2011-11-03T12:44:41.638674", + "dc:creator": "IRI" + }, + "id": "997578bc-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.735882", + "dc:title": "merci", + "dc:modified": "2011-11-03T12:44:41.735882", + "dc:creator": "IRI" + }, + "id": "99844dba-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.647203", + "dc:title": "Metadonnees", + "dc:modified": "2011-11-03T12:44:41.647203", + "dc:creator": "IRI" + }, + "id": "9976ca6e-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.688234", + "dc:title": "NCO", + "dc:modified": "2011-11-03T12:44:41.688234", + "dc:creator": "IRI" + }, + "id": "997d0898-0619-11e1-9067-00145ea49a02" + }, { + "meta": { + "dc:contributor": "IRI", + "dc:created": "2011-11-03T12:44:41.796334", + "dc:title": "mauvaisepolitique", + "dc:modified": "2011-11-03T12:44:41.796334", + "dc:creator": "IRI" + }, + "id": "998d872c-0619-11e1-9067-00145ea49a02" + } + ], + "lists": [ + { + "items": [ + { + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8" + } + ], + "meta": { + "dc:contributor": "undefined", + "dc:created": "2011-11-03T12:44:41.600331", + "dc:creator": "undefined", + "id-ref": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "dc:title": "Découpages personnels", + "editable": "false", + "dc:modified": "2011-11-03T12:44:41.600331", + "dc:description": "" + }, + "id": "g_5B7955E0-0591-69B8-4658-3BBCBF5B15D1" + }, { + "items": [ + { + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334" + } + ], + "meta": { + "dc:contributor": "undefined", + "dc:created": "2011-11-03T12:44:41.605027", + "dc:creator": "undefined", + "id-ref": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "dc:title": "Ensemble Twitter", + "editable": "false", + "dc:modified": "2011-11-03T12:44:41.605027", + "dc:description": "Ensemble Twitter" + }, + "id": "tweet_e610a998-f4ba-45c7-9627-2d15c37ede64" + } + ], + "medias": [ + { + "origin": "0", + "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0", + "href": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/ldtplatform/museologie_inaugurale_20111018_flat.f4v", + "meta": { + "dc:contributor": "IRI", + "item": { + "name": "streamer", + "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/" + }, + "dc:created": "2011-10-25T19:06:47.044514", + "dc:duration": 10876600, + "dc:creator": "IRI", + "dc:created.contents": "2011-10-25", + "dc:title": "Muséologie 2011/2012 - Séance inaugurale", + "dc:creator.contents": "IRI", + "dc:modified": "2011-10-25T19:08:58.915436", + "dc:description": "Séance inaugurale Muséologie 2011/2012" + }, + "id": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "unit": "ms" + } + ], + "meta": { + "dc:contributor": "admin", + "dc:created": "2011-10-25T19:10:10.538355", + "dc:creator": "admin", + "main_media": { + "id-ref": "76171168-ff2b-11e0-bfbc-00145ea49a02" + }, + "dc:description": "", + "dc:title": "Muséologie 2011/2012 - Séance inaugurale", + "id": "321ae0b0-ff2c-11e0-95c2-00145ea49a02", + "dc:modified": "2011-10-27T00:37:38.276752" + }, + "annotations": [ + { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Co-directeur de l'IRI.", + "img": { + "src": "" + }, + "title": "Présentation des intervenants par Vincent Puig", + "color": "16711680", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 0, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 265282, + "tags": null, + "color": "16711680", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_4C23DCAA-EDAA-ECC0-5B64-41F2E2A09DC8" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Délégué adjoint au développement et aux affaires internationales.", + "img": { + "src": "" + }, + "title": "Ouverture du séminaire par Jean-François Chaintreau", + "color": "65382", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 265282, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 865659, + "tags": null, + "color": "65382", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_D0301B82-9451-9458-FE19-41F3E95B926B" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Directeur de l'Institut de Recherche et d'Innovation.", + "img": { + "src": "" + }, + "title": "Bernard Stiegler", + "color": "26265", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 879622, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 2722640, + "tags": null, + "color": "26265", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_66D7D36D-72B8-1D97-B3A1-41F9D78F8210" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Directrice des programmes de Wikimédia France. Titre de l'intervention : \"Wikimédia : web sémantique ou web social ?\".", + "img": { + "src": "" + }, + "title": "Adrienne Alix", + "color": "10027110", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2750565, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 5138111, + "tags": null, + "color": "10027110", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_66489AE5-3692-F9B9-D9BD-41FF53E680B7" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Responsable Recherche Web et Métadonnées à l'IRI, responsable du séminaire. \"Présentation du séminaire muséologie 2.0.\"", + "img": { + "src": "" + }, + "title": "Alexandre Monnin", + "color": "16777062", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5152073, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 7023015, + "tags": null, + "color": "16777062", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_00904B14-3E31-EC07-8823-4200B4DDB70A" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Chargé de recherche à l'INRIA de Sophia Antipolis. Titre de l'intervention : \"Le Web et ses métadonnées, le territoire et sa carte\".", + "img": { + "src": "" + }, + "title": "Fabien Gandon", + "color": "16737843", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7023016, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 9619996, + "tags": null, + "color": "16737843", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_B2719E8C-ECE4-20F9-AB4F-4202D89E95CD" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "", + "img": { + "src": "" + }, + "title": "Séance de questions-réponses", + "color": "16751052", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9619996, + "meta": { + "dc:contributor": "perso", + "id-ref": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:modified": "2011-11-03T12:44:41.600365", + "dc:creator": "perso" + }, + "end": 10876599, + "tags": null, + "color": "16751052", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "s_2D56F86B-F5AA-CA3D-3071-4203126E4049" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "En direct de #museoweb avec @gonzagauthier @aamonnz @AdrienneAlix @fabien_gandon @vincentpuig etc ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: En direct de #museoweb avec @gonzagauthier @aamonnz @AdrienneAlix @fabien_gandon @vincentpuig etc ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 113000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"En direct de #museoweb avec @gonzagauthier @aamonnz @AdrienneAlix @fabien_gandon @vincentpuig etc ++\",\"created_at\":\"Tue Oct 18 15:06:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[13,22]}],\"user_mentions\":[{\"indices\":[28,42],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[43,51],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472},{\"indices\":[52,65],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[66,80],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911},{\"indices\":[82,94],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313230850203649\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1590,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313230850203649}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 113000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "37df963f-61f8-4104-8598-9488ba8133ee-126313230850203649" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "La conférence est diffusée sur le web en streaming #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: La conférence est diffusée sur le web en streaming #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 125000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"La conf\\u00e9rence est diffus\\u00e9e sur le web en streaming #museoweb\",\"created_at\":\"Tue Oct 18 15:06:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[51,60]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313280460423168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":186,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1985,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313280460423168}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 125000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "06169c17-1184-499d-a03a-09c684a754ac-126313280460423168" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", + "img": { + "src": "http://a1.twimg.com/profile_images/1125092807/af3abe61-0116-483f-ada5-85066f324dfc_normal.png" + }, + "title": "CentrePompidou: RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 145000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @ymh_work #museoweb Premi\\u00e8re s\\u00e9ance s\\u00e9minaire mus\\u00e9o en direct sur http:\\/\\/t.co\\/I0DUkbcE\",\"created_at\":\"Tue Oct 18 15:07:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[13,22]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"47312923\",\"name\":\"Yves-Marie Haussonne\",\"screen_name\":\"ymh_work\",\"id\":47312923}],\"urls\":[{\"indices\":[69,89],\"url\":\"http:\\/\\/t.co\\/I0DUkbcE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/5DZWG\",\"display_url\":\"goo.gl\\/5DZWG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313362224197632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0e0e0\",\"created_at\":\"Wed Aug 06 10:43:42 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"c90a0a\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"followers_count\":24147,\"description\":\"Centre d'arts, pluridisciplinaire et transversal ouvert \\u00e0 tous les publics\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"0f0d21\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"favourites_count\":6,\"id_str\":\"15748390\",\"listed_count\":1839,\"friends_count\":225,\"profile_link_color\":\"c90a0a\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\",\"screen_name\":\"centrepompidou\",\"name\":\"CentrePompidou\",\"statuses_count\":3652,\"verified\":false,\"profile_background_color\":\"fcfcfc\",\"id\":15748390,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313362224197632}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 145000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c96b41a2-9210-44d6-87a2-5b7582e54a70-126313362224197632" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb VP == convergence du web sémantique et du web des musées http://t.co/dQsm7A8N", + "img": { + "src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" + }, + "title": "nicolasauret: #museoweb VP == convergence du web sémantique et du web des musées http://t.co/dQsm7A8N", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 169000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb VP == convergence du web s\\u00e9mantique et du web des mus\\u00e9es http:\\/\\/t.co\\/dQsm7A8N\",\"created_at\":\"Tue Oct 18 15:07:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[67,87],\"url\":\"http:\\/\\/t.co\\/dQsm7A8N\",\"expanded_url\":\"http:\\/\\/4sq.com\\/pDthzQ\",\"display_url\":\"4sq.com\\/pDthzQ\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313465999667200\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":296,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313465999667200}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 169000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "50ea920f-e61c-4fd2-ba54-206fdae03022-126313465999667200" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @centrepompidou: RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", + "img": { + "src": "http://a3.twimg.com/profile_images/1557046949/kandinsky_gugg_0910_16_normal.jpg" + }, + "title": "marina rossi: RT @centrepompidou: RT @ymh_work #museoweb Première séance séminaire muséo en direct sur http://t.co/I0DUkbcE", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 239000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @centrepompidou: RT @ymh_work #museoweb Premi\\u00e8re s\\u00e9ance s\\u00e9minaire mus\\u00e9o en direct sur http:\\/\\/t.co\\/I0DUkbcE\",\"created_at\":\"Tue Oct 18 15:08:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[33,42]}],\"user_mentions\":[{\"indices\":[3,18],\"id_str\":\"15748390\",\"name\":\"CentrePompidou\",\"screen_name\":\"centrepompidou\",\"id\":15748390},{\"indices\":[23,32],\"id_str\":\"47312923\",\"name\":\"Yves-Marie Haussonne\",\"screen_name\":\"ymh_work\",\"id\":47312923}],\"urls\":[{\"indices\":[89,109],\"url\":\"http:\\/\\/t.co\\/I0DUkbcE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/5DZWG\",\"display_url\":\"goo.gl\\/5DZWG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313757998714881\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @ymh_work #museoweb Premi\\u00e8re s\\u00e9ance s\\u00e9minaire mus\\u00e9o en direct sur http:\\/\\/t.co\\/I0DUkbcE\",\"created_at\":\"Tue Oct 18 15:07:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[13,22]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"47312923\",\"name\":\"Yves-Marie Haussonne\",\"screen_name\":\"ymh_work\",\"id\":47312923}],\"urls\":[{\"indices\":[69,89],\"url\":\"http:\\/\\/t.co\\/I0DUkbcE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/5DZWG\",\"display_url\":\"goo.gl\\/5DZWG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313362224197632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0e0e0\",\"default_profile\":false,\"created_at\":\"Wed Aug 06 10:43:42 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"c90a0a\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"followers_count\":24147,\"description\":\"Centre d'arts, pluridisciplinaire et transversal ouvert \\u00e0 tous les publics\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"0f0d21\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/292335599\\/twitterhashtags.jpg\",\"favourites_count\":6,\"id_str\":\"15748390\",\"listed_count\":1839,\"friends_count\":225,\"profile_link_color\":\"c90a0a\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\",\"screen_name\":\"centrepompidou\",\"name\":\"CentrePompidou\",\"statuses_count\":3652,\"verified\":false,\"profile_background_color\":\"fcfcfc\",\"id\":15748390,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1125092807\\/af3abe61-0116-483f-ada5-85066f324dfc_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313362224197632},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"default_profile\":false,\"created_at\":\"Mon Mar 22 01:15:33 +0000 2010\",\"lang\":\"it\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":9,\"description\":\"\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"0fc7ff\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":7,\"id_str\":\"125193669\",\"listed_count\":0,\"friends_count\":172,\"profile_link_color\":\"303152\",\"protected\":false,\"location\":\"italy\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1557046949\\/kandinsky_gugg_0910_16_normal.jpg\",\"screen_name\":\"kandy9000\",\"name\":\"marina rossi\",\"statuses_count\":191,\"verified\":false,\"profile_background_color\":\"0affeb\",\"id\":125193669,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1557046949\\/kandinsky_gugg_0910_16_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313757998714881}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 239000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9dfcb6ef-da44-448c-a61d-51190335ac8d-126313757998714881" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "+1 RT @gonzagauthier Conférence #museoweb (@ Centre Pompidou (CNAC)) http://t.co/NXtGha4X", + "img": { + "src": "http://a1.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg" + }, + "title": "L. Natarianni: +1 RT @gonzagauthier Conférence #museoweb (@ Centre Pompidou (CNAC)) http://t.co/NXtGha4X", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 278000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"+1 RT @gonzagauthier Conf\\u00e9rence #museoweb (@ Centre Pompidou (CNAC)) http:\\/\\/t.co\\/NXtGha4X\",\"created_at\":\"Tue Oct 18 15:09:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[32,41]}],\"user_mentions\":[{\"indices\":[6,20],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[{\"indices\":[69,89],\"url\":\"http:\\/\\/t.co\\/NXtGha4X\",\"expanded_url\":\"http:\\/\\/4sq.com\\/pDthzQ\",\"display_url\":\"4sq.com\\/pDthzQ\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126313922121838592\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"efefef\",\"default_profile\":false,\"created_at\":\"Thu Dec 11 13:30:58 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"eeeeee\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80051491\\/twilk_background_4b8e2d0612f83.jpg\",\"followers_count\":299,\"description\":\"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80051491\\/twilk_background_4b8e2d0612f83.jpg\",\"favourites_count\":2784,\"id_str\":\"18047103\",\"listed_count\":19,\"friends_count\":580,\"profile_link_color\":\"009999\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1219841315\\/lionel-sbook_normal.jpg\",\"screen_name\":\"lionnoge\",\"name\":\"L. Natarianni\",\"statuses_count\":1926,\"verified\":false,\"profile_background_color\":\"131516\",\"id\":18047103,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1219841315\\/lionel-sbook_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126313922121838592}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 278000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b332079f-0562-4819-a137-74b11bbafdc1-126313922121838592" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#MuseoWeb Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/xe76xz08", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: #MuseoWeb Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/xe76xz08", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 321000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb Bcp d'inscrits \\u00e0 cette 1\\u00e8re s\\u00e9ance ! Alors je suis \\u00e0 distance et en live >> http:\\/\\/t.co\\/xe76xz08\",\"created_at\":\"Tue Oct 18 15:10:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/xe76xz08\",\"expanded_url\":\"http:\\/\\/goo.gl\\/zV6qo\",\"display_url\":\"goo.gl\\/zV6qo\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314102141362177\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2004,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314102141362177}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 321000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "080edaf6-3e59-48e9-b69b-e9a3a5ed7af7-126314102141362177" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @centrepompidou A partir de 17h, suivez la conférence \"L'enjeu des #métadonnées et données pr la convergence du #websemantique\" #MuseoWeb", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @centrepompidou A partir de 17h, suivez la conférence \"L'enjeu des #métadonnées et données pr la convergence du #websemantique\" #MuseoWeb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 436000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @centrepompidou A partir de 17h, suivez la conf\\u00e9rence \\\"L'enjeu des #m\\u00e9tadonn\\u00e9es et donn\\u00e9es pr la convergence du #websemantique\\\" #MuseoWeb\",\"created_at\":\"Tue Oct 18 15:11:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"m\\u00e9tadonn\\u00e9es\",\"indices\":[70,82]},{\"text\":\"websemantique\",\"indices\":[115,129]},{\"text\":\"MuseoWeb\",\"indices\":[131,140]}],\"user_mentions\":[{\"indices\":[3,18],\"id_str\":\"15748390\",\"name\":\"CentrePompidou\",\"screen_name\":\"centrepompidou\",\"id\":15748390}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314584297586688\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"default_profile\":false,\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2006,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314584297586688}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 436000, + "tags": [ + { + "id-ref": "99708000-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99713aa4-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99713f40-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "11dec33c-85b9-4bf8-b449-ca83369489ed-126314584297586688" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "3 priorités pour le MCC: numérisation, recherche culturelle et innovation numérique + lien avec enseignement supérieur culture #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: 3 priorités pour le MCC: numérisation, recherche culturelle et innovation numérique + lien avec enseignement supérieur culture #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 478000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"3 priorit\\u00e9s pour le MCC: num\\u00e9risation, recherche culturelle et innovation num\\u00e9rique + lien avec enseignement sup\\u00e9rieur culture #museoweb\",\"created_at\":\"Tue Oct 18 15:12:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[127,136]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314762677125120\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1592,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314762677125120}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 478000, + "tags": [ + { + "id-ref": "99713f40-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a77a2554-ffb9-43b7-a0ed-28f18ca24a6e-126314762677125120" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "JF Chaintreau, chef du SCPCI : il y a un effort historique très ancien, une priorité liée à la numérisation du patrimoine culturel #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: JF Chaintreau, chef du SCPCI : il y a un effort historique très ancien, une priorité liée à la numérisation du patrimoine culturel #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 488000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JF Chaintreau, chef du SCPCI : il y a un effort historique tr\\u00e8s ancien, une priorit\\u00e9 li\\u00e9e \\u00e0 la num\\u00e9risation du patrimoine culturel #museoweb\",\"created_at\":\"Tue Oct 18 15:12:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314804519514112\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":1986,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314804519514112}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 488000, + "tags": [ + { + "id-ref": "99713f40-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0fa39223-ac16-4b07-824e-c810b72291c4-126314804519514112" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Le séminaire de recherche est lié aux structures d'enseignement, pour que les étudiants valorisent leur savoir. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Le séminaire de recherche est lié aux structures d'enseignement, pour que les étudiants valorisent leur savoir. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 523000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le s\\u00e9minaire de recherche est li\\u00e9 aux structures d'enseignement, pour que les \\u00e9tudiants valorisent leur savoir. ++\",\"created_at\":\"Tue Oct 18 15:13:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126314948203786241\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7474,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126314948203786241}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 523000, + "tags": [ + { + "id-ref": "99713f40-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3f51fc0c-9d33-4b1a-ac4a-902d96ebd144-126314948203786241" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb JF Chaintreau plaide pour le service public numérique++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb JF Chaintreau plaide pour le service public numérique++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 563000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb JF Chaintreau plaide pour le service public num\\u00e9rique++\",\"created_at\":\"Tue Oct 18 15:14:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315117947269121\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":343,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315117947269121}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 563000, + "tags": [ + { + "id-ref": "99713f40-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3996b980-72cd-467d-a7f7-fe039c43b8cf-126315117947269121" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "JFC : l'offre numérique culturelle ne se confond ps ac la numérisation, c'est ce que j'appelle le \"service public #numérique\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: JFC : l'offre numérique culturelle ne se confond ps ac la numérisation, c'est ce que j'appelle le \"service public #numérique\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 565000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : l'offre num\\u00e9rique culturelle ne se confond ps ac la num\\u00e9risation, c'est ce que j'appelle le \\\"service public #num\\u00e9rique\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:14:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"num\\u00e9rique\",\"indices\":[114,124]},{\"text\":\"museoweb\",\"indices\":[126,135]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315127128604675\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":1987,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315127128604675}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 565000, + "tags": [ + { + "id-ref": "99713f40-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7cc158bb-978b-4493-919d-6fa9fc7f64c2-126315127128604675" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"J'insiste sur la notion service public du numérique, important pr chercheurs et citoyens contre la privatisation des données\" ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"J'insiste sur la notion service public du numérique, important pr chercheurs et citoyens contre la privatisation des données\" ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 584000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb \\\"J'insiste sur la notion service public du num\\u00e9rique, important pr chercheurs et citoyens contre la privatisation des donn\\u00e9es\\\" ++\",\"created_at\":\"Tue Oct 18 15:14:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126315205595627521\",\"user\":{\"statuses_count\":7475,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":null,\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"id\":136900327,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"in_reply_to_status_id\":null,\"id\":126315205595627521}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 584000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "64406fc3-c911-44d8-8fae-b20e2212e0e0-126315205595627521" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "conférence #museoweb @centrepompidou sur http://t.co/50AYubDA", + "img": { + "src": "http://a0.twimg.com/profile_images/1377869165/IMG_0968_2_normal.gif" + }, + "title": "domingoslepores: conférence #museoweb @centrepompidou sur http://t.co/50AYubDA", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 607000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"conf\\u00e9rence #museoweb @centrepompidou sur http:\\/\\/t.co\\/50AYubDA\",\"created_at\":\"Tue Oct 18 15:14:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]}],\"user_mentions\":[{\"indices\":[21,36],\"id_str\":\"15748390\",\"name\":\"CentrePompidou\",\"screen_name\":\"centrepompidou\",\"id\":15748390}],\"urls\":[{\"indices\":[41,61],\"url\":\"http:\\/\\/t.co\\/50AYubDA\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315301359980544\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Tue Jul 07 02:34:05 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":10,\"description\":\"i just dropped by to say hello\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"54421093\",\"listed_count\":0,\"friends_count\":92,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1377869165\\/IMG_0968_2_normal.gif\",\"screen_name\":\"domingoslepores\",\"name\":\"domingoslepores\",\"default_profile\":true,\"statuses_count\":7,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":54421093,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1377869165\\/IMG_0968_2_normal.gif\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315301359980544}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 607000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "36ee651a-eff6-443a-9ed2-a70ef35a1a3d-126315301359980544" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "JFC : en 2010 appel a projets services numériques culturels innovants - liste des 62 projets soutenus sur culturelabs #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: JFC : en 2010 appel a projets services numériques culturels innovants - liste des 62 projets soutenus sur culturelabs #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 641000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : en 2010 appel a projets services num\\u00e9riques culturels innovants - liste des 62 projets soutenus sur culturelabs #museoweb\",\"created_at\":\"Tue Oct 18 15:15:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[118,127]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315444993921025\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1988,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315444993921025}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 641000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "44d65017-ff6e-4f52-9812-62bd985b2380-126315444993921025" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb CultureLabs présente les projets Services Culturels innovants dont deux projets de l'Iri ++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb CultureLabs présente les projets Services Culturels innovants dont deux projets de l'Iri ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 642000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb CultureLabs pr\\u00e9sente les projets Services Culturels innovants dont deux projets de l'Iri ++\",\"created_at\":\"Tue Oct 18 15:15:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315449532166144\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":344,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315449532166144}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 642000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "46dc097c-e205-44b2-a1b4-992d6ddd5612-126315449532166144" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Appel à projet: soutenir des usages nouveaux du numérique, à partir du 28 novembre (pour 2012)", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Appel à projet: soutenir des usages nouveaux du numérique, à partir du 28 novembre (pour 2012)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 685000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Appel \\u00e0 projet: soutenir des usages nouveaux du num\\u00e9rique, \\u00e0 partir du 28 novembre (pour 2012)\",\"created_at\":\"Tue Oct 18 15:16:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315628272427010\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7476,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315628272427010}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 685000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7fade754-7760-482b-8ecc-6cd5f90d034a-126315628272427010" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "2012: appel a projet pour des services numériques innovants (cf culturelab) sera lancé le 28/11 #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: 2012: appel a projet pour des services numériques innovants (cf culturelab) sera lancé le 28/11 #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 696000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"2012: appel a projet pour des services num\\u00e9riques innovants (cf culturelab) sera lanc\\u00e9 le 28\\/11 #museoweb\",\"created_at\":\"Tue Oct 18 15:16:18 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[96,105]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315673910644736\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1592,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315673910644736}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 696000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b1272805-4555-4f19-bc01-55fdf4cc9f88-126315673910644736" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Trying hard to follow a conference in French and its debate on Twitter #museoWeb", + "img": { + "src": "http://a3.twimg.com/profile_images/1585449430/Picture_5_normal.png" + }, + "title": "Andrea Cevenini: Trying hard to follow a conference in French and its debate on Twitter #museoWeb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 744000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Trying hard to follow a conference in French and its debate on Twitter #museoWeb\",\"created_at\":\"Tue Oct 18 15:17:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoWeb\",\"indices\":[71,80]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315875883159552\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"created_at\":\"Mon Oct 03 10:38:31 +0000 2011\",\"lang\":\"en\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DBE9ED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"followers_count\":29,\"description\":\"European Designer.\\r\\n\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.andreacevenini.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"favourites_count\":2,\"id_str\":\"384249937\",\"listed_count\":1,\"friends_count\":112,\"profile_link_color\":\"CC3366\",\"protected\":false,\"location\":\"K\\u00f6ln \\/ Paris \\/ Milan\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\",\"screen_name\":\"ACevenini\",\"name\":\"Andrea Cevenini\",\"statuses_count\":52,\"verified\":false,\"profile_background_color\":\"DBE9ED\",\"id\":384249937,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315875883159552}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 744000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "349d267b-ed8d-4d5d-8f33-bf15ee226492-126315875883159552" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", + "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": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:17:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315965607723008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":345,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315965607723008}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 765000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "20cb3c6c-05a8-4130-b257-52fb45997151-126315965607723008" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"nous essayons de faire évoluer le portail 'histoire des arts', pour ouvrir des perspectives de coopérations\"", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"nous essayons de faire évoluer le portail 'histoire des arts', pour ouvrir des perspectives de coopérations\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 767000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"nous essayons de faire \\u00e9voluer le portail 'histoire des arts', pour ouvrir des perspectives de coop\\u00e9rations\\\"\",\"created_at\":\"Tue Oct 18 15:17:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315972821921792\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7477,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315972821921792}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 767000, + "tags": [ + { + "id-ref": "9971c316-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "89f14abd-d34e-42a9-970c-9b1ff9e089fe-126315972821921792" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "JFC : soutien du SG a l'IRI via le portail #histoiredesarts destiné a regrouper les ressources pédagogiques pr les enseignants #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: JFC : soutien du SG a l'IRI via le portail #histoiredesarts destiné a regrouper les ressources pédagogiques pr les enseignants #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 769000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : soutien du SG a l'IRI via le portail #histoiredesarts destin\\u00e9 a regrouper les ressources p\\u00e9dagogiques pr les enseignants #museoweb\",\"created_at\":\"Tue Oct 18 15:17:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"histoiredesarts\",\"indices\":[43,59]},{\"text\":\"museoweb\",\"indices\":[127,136]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315982913421313\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1989,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315982913421313}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 769000, + "tags": [ + { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b57ee2ac-dcb6-4b88-a4c2-c2448493bdae-126315982913421313" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#MuseoWeb le stream video ici : http://t.co/G41ju88r vous pouvez utiliser ++ , -- , == , ?? pour positionner vos tweets", + "img": { + "src": "None" + }, + "title": "IRI Polemic Tweet: #MuseoWeb le stream video ici : http://t.co/G41ju88r vous pouvez utiliser ++ , -- , == , ?? pour positionner vos tweets", + "color": "16763904", + "polemics": ["Q", "KO", "OK", "REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 818000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb le stream video ici : http:\\/\\/t.co\\/G41ju88r vous pouvez utiliser ++ , -- , == , ?? pour positionner vos tweets\",\"created_at\":\"Tue Oct 18 15:18:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[33,53],\"url\":\"http:\\/\\/t.co\\/G41ju88r\",\"expanded_url\":\"http:\\/\\/goo.gl\\/GmurC\",\"display_url\":\"goo.gl\\/GmurC\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316187935178753\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Fri Apr 08 11:03:27 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":33,\"description\":\"System which allows live event followers to twitt bearing an engaged position in reaction to live or recorded talks and media programs, and consequently to \",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/polemictweet.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":40,\"id_str\":\"278987636\",\"listed_count\":3,\"friends_count\":145,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1368500311\\/Capture_d__cran_2011-05-25___16.47.31_normal.png\",\"screen_name\":\"PolemicTweet\",\"name\":\"IRI Polemic Tweet\",\"statuses_count\":230,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":278987636,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1368500311\\/Capture_d__cran_2011-05-25___16.47.31_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316187935178753}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 818000, + "tags": [ + { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7e23481b-c26b-4e58-b563-d9f118b1c57d-126316187935178753" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "nouvelles perspectives offertes par le web sémantique et l'open Data ++ #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: nouvelles perspectives offertes par le web sémantique et l'open Data ++ #museoweb", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 834000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"nouvelles perspectives offertes par le web s\\u00e9mantique et l'open Data ++ #museoweb\",\"created_at\":\"Tue Oct 18 15:18:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[72,81]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316252800094208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1594,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316252800094208}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 834000, + "tags": [ + { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "8bf59dfc-2d45-46d8-84ee-e7c5f98c91f9-126316252800094208" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Ça discute de @Etalab et libre disposition de l'accès citoyen, en évitant l'absorption par les partenaires. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Ça discute de @Etalab et libre disposition de l'accès citoyen, en évitant l'absorption par les partenaires. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 857000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\u00c7a discute de @Etalab et libre disposition de l'acc\\u00e8s citoyen, en \\u00e9vitant l'absorption par les partenaires. ++\",\"created_at\":\"Tue Oct 18 15:18:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[24,31],\"id_str\":\"311880926\",\"name\":\"Etalab\",\"screen_name\":\"Etalab\",\"id\":311880926}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316351622098945\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":727,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7478,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316351622098945}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 857000, + "tags": [ + { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "21ec2a60-a443-4139-9ee6-b568d3d3b9a1-126316351622098945" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Initiative EtatLab pour la mise à disposition des données publiques", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Initiative EtatLab pour la mise à disposition des données publiques", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 881000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Initiative EtatLab pour la mise \\u00e0 disposition des donn\\u00e9es publiques\",\"created_at\":\"Tue Oct 18 15:19:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316450200825856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":346,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316450200825856}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 881000, + "tags": [ + { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f13bfdb9-9082-4ca2-ac2c-5c15a5b9de49-126316450200825856" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 894000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:19:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316507776040962\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:17:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315965607723008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":346,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126315965607723008},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2007,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316507776040962}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 894000, + "tags": [ + { + "id-ref": "9972c842-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "cd639cb5-e587-4708-b942-5548e9abf9d2-126316507776040962" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "JFC : initiative #etalab doit veiller a ce que l'eco num se développe en ne touchant pas a la libre disposition des serv citoyens #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: JFC : initiative #etalab doit veiller a ce que l'eco num se développe en ne touchant pas a la libre disposition des serv citoyens #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 916000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"JFC : initiative #etalab doit veiller a ce que l'eco num se d\\u00e9veloppe en ne touchant pas a la libre disposition des serv citoyens #museoweb\",\"created_at\":\"Tue Oct 18 15:19:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"etalab\",\"indices\":[17,24]},{\"text\":\"museoweb\",\"indices\":[130,139]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316596850470912\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1990,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316596850470912}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 916000, + "tags": [ + { + "id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "bd318747-06a7-4b2c-8244-b5d03605e64e-126316596850470912" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#MuseoWeb RT @Lilmount: Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/QvPh0Quo <+1", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #MuseoWeb RT @Lilmount: Bcp d'inscrits à cette 1ère séance ! Alors je suis à distance et en live >> http://t.co/QvPh0Quo <+1", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 932000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#MuseoWeb RT @Lilmount: Bcp d'inscrits \\u00e0 cette 1\\u00e8re s\\u00e9ance ! Alors je suis \\u00e0 distance et en live >> http:\\/\\/t.co\\/QvPh0Quo <+1\",\"created_at\":\"Tue Oct 18 15:20:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[13,22],\"name\":\"Coline Aunis\",\"screen_name\":\"Lilmount\",\"id_str\":\"68658539\",\"id\":68658539}],\"urls\":[{\"indices\":[107,127],\"url\":\"http:\\/\\/t.co\\/QvPh0Quo\",\"expanded_url\":\"http:\\/\\/goo.gl\\/zV6qo\",\"display_url\":\"goo.gl\\/zV6qo\"}]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126316663435046914\",\"user\":{\"statuses_count\":6649,\"verified\":false,\"profile_background_color\":\"bababa\",\"profile_background_tile\":true,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"f5f5f5\",\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"default_profile\":false,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"url\":\"http:\\/\\/omer.mobi\\/\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1315,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris - France\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"id\":16592723,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126316663435046914}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 932000, + "tags": [ + { + "id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e7dc1b6a-5052-4ad4-8985-9d1c94c4b7cd-126316663435046914" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Bernard Stiegler : \"il y a autour de l'avenir du web bcp de polémiques, notamment sur le rôle du #websemantique\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Bernard Stiegler : \"il y a autour de l'avenir du web bcp de polémiques, notamment sur le rôle du #websemantique\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 992000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Bernard Stiegler : \\\"il y a autour de l'avenir du web bcp de pol\\u00e9miques, notamment sur le r\\u00f4le du #websemantique\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:21:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"websemantique\",\"indices\":[97,111]},{\"text\":\"museoweb\",\"indices\":[113,122]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126316916884242432\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1991,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126316916884242432}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 992000, + "tags": [ + { + "id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "63c10c33-3b8a-471e-bc32-97d98aebb79f-126316916884242432" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Pas d'opposition, mais une composition entre web #semantique et web social. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Pas d'opposition, mais une composition entre web #semantique et web social. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1034000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Pas d'opposition, mais une composition entre web #semantique et web social. ++\",\"created_at\":\"Tue Oct 18 15:21:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"semantique\",\"indices\":[59,70]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317091010781184\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7479,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317091010781184}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1034000, + "tags": [ + { + "id-ref": "99737c7e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3ca6bd26-0787-4a60-894a-b3d79b79cd9c-126317091010781184" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B. Stiegler : pas d'opposition entre web sémantique et web social, mais composition entre tendances bottom-up/top-down ++ #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: B. Stiegler : pas d'opposition entre web sémantique et web social, mais composition entre tendances bottom-up/top-down ++ #museoweb", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1049000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B. Stiegler : pas d'opposition entre web s\\u00e9mantique et web social, mais composition entre tendances bottom-up\\/top-down ++ #museoweb\",\"created_at\":\"Tue Oct 18 15:22:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[122,131]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317155619840001\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1595,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317155619840001}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1049000, + "tags": [ + { + "id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7bddf9dd-0369-491b-935b-d529c42492aa-126317155619840001" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS: pas d'opposition entre web sémantique et web social, mais une composition ++", + "img": { + "src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" + }, + "title": "nicolasauret: #museoweb BS: pas d'opposition entre web sémantique et web social, mais une composition ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1050000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS: pas d'opposition entre web s\\u00e9mantique et web social, mais une composition ++\",\"created_at\":\"Tue Oct 18 15:22:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317158497140738\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"default_profile\":true,\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":297,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317158497140738}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1050000, + "tags": [ + { + "id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2e9516a6-f067-48a6-8da3-1aa751547093-126317158497140738" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : à l' IRI, on considère qu'il n'y a pas d'opposition entre #websemantique et #websocial ms une composition #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : à l' IRI, on considère qu'il n'y a pas d'opposition entre #websemantique et #websocial ms une composition #museoweb", + "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": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\u00e0 l' IRI, on consid\\u00e8re qu'il n'y a pas d'opposition entre #websemantique et #websocial ms une composition #museoweb\",\"created_at\":\"Tue Oct 18 15:22:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"websemantique\",\"indices\":[71,85]},{\"text\":\"websocial\",\"indices\":[89,99]},{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317271135162368\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1992,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317271135162368}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1076000, + "tags": [ + { + "id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9973ce0e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e362bc60-3ab8-4ac1-aa96-bbde8e5a652f-126317271135162368" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1080000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense \\u00e0 l'imaginaire du flux ++\",\"created_at\":\"Tue Oct 18 15:22:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317286868004865\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7480,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317286868004865}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1080000, + "tags": [ + { + "id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "18a58518-9d19-4af3-b2b0-3d894753fd0b-126317286868004865" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb B. Stiegler cite Luciano Fioridi et conteste qu'il y ait une opposition entre Web sémantique et Web social", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb B. Stiegler cite Luciano Fioridi et conteste qu'il y ait une opposition entre Web sémantique et Web social", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1088000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb B. Stiegler cite Luciano Fioridi et conteste qu'il y ait une opposition entre Web s\\u00e9mantique et Web social\",\"created_at\":\"Tue Oct 18 15:22:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317319952662529\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":347,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317319952662529}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1088000, + "tags": [ + { + "id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "364f382e-aeb8-40fe-99f9-f945e40661a1-126317319952662529" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"A l'Iri, nous considérons que le web 3, ce n'est pas la victoire du web sémantique, mais sa co-construction avec le web social\"", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"A l'Iri, nous considérons que le web 3, ce n'est pas la victoire du web sémantique, mais sa co-construction avec le web social\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1157000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"A l'Iri, nous consid\\u00e9rons que le web 3, ce n'est pas la victoire du web s\\u00e9mantique, mais sa co-construction avec le web social\\\"\",\"created_at\":\"Tue Oct 18 15:23:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317608055226369\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7481,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317608055226369}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1157000, + "tags": [ + { + "id-ref": "99741f4e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a8dab6c4-741e-4a63-9100-9ce9604afd0b-126317608055226369" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Bernard Stiegler : \"une institution patrimoniale a en charge la production de #metadonnées\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Bernard Stiegler : \"une institution patrimoniale a en charge la production de #metadonnées\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1198000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Bernard Stiegler : \\\"une institution patrimoniale a en charge la production de #metadonn\\u00e9es\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:24:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"metadonn\\u00e9es\",\"indices\":[78,90]},{\"text\":\"museoweb\",\"indices\":[92,101]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317780772466688\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1130,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1993,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317780772466688}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1198000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "8c74025e-74c5-456c-be7b-18805028d904-126317780772466688" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Rajeunissement des publics\", Stiegler parle de génération Y, mais quel est le fondement de cette catégoriet dans la pratique ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Rajeunissement des publics\", Stiegler parle de génération Y, mais quel est le fondement de cette catégoriet dans la pratique ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1240000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Rajeunissement des publics\\\", Stiegler parle de g\\u00e9n\\u00e9ration Y, mais quel est le fondement de cette cat\\u00e9goriet dans la pratique ??\",\"created_at\":\"Tue Oct 18 15:25:22 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317955968536576\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7482,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317955968536576}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1240000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6ff5595a-d7e3-4f16-a07e-c6e8b126cea3-126317955968536576" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "BS: traditionnellement, production de metadonnees patrimoniales dans un mode top-down. Auj s'y ajoutent des traces bottom-up #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: BS: traditionnellement, production de metadonnees patrimoniales dans un mode top-down. Auj s'y ajoutent des traces bottom-up #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1244000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"BS: traditionnellement, production de metadonnees patrimoniales dans un mode top-down. Auj s'y ajoutent des traces bottom-up #museoweb\",\"created_at\":\"Tue Oct 18 15:25:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[125,134]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317973425238016\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1596,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317973425238016}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1244000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2afdb756-2401-469e-9040-05339f1b2af3-126317973425238016" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : cmt agencer cette activité de production de traces et quelles en st enjeux culturels patrimoniaux et esthétiques ? #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : cmt agencer cette activité de production de traces et quelles en st enjeux culturels patrimoniaux et esthétiques ? #museoweb", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1283000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : cmt agencer cette activit\\u00e9 de production de traces et quelles en st enjeux culturels patrimoniaux et esth\\u00e9tiques ? #museoweb\",\"created_at\":\"Tue Oct 18 15:26:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[128,137]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318137334431744\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":1994,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318137334431744}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1283000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "bb60bf0f-ea15-4b7e-8bfe-182a93df821b-126318137334431744" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", + "img": { + "src": "http://a1.twimg.com/profile_images/1410096403/photoCA0ULHWT_normal.jpg" + }, + "title": "Laurent Bel: RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel à Service Culturel innovant pour 2012", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1320000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:26:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318292305575937\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 28 novembre: lancement de l'appel \\u00e0 Service Culturel innovant pour 2012\",\"created_at\":\"Tue Oct 18 15:17:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126315965607723008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":172,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":347,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126315965607723008},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Wed Jan 19 15:24:46 +0000 2011\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":27,\"description\":\"Provider Technologique, Base de donn\\u00e9es RDF pour le web de donn\\u00e9es \\/ web semantique\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.armadillo.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"240279846\",\"listed_count\":0,\"friends_count\":36,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1410096403\\/photoCA0ULHWT_normal.jpg\",\"screen_name\":\"Laurent_BEL\",\"name\":\"Laurent Bel\",\"statuses_count\":13,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":240279846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1410096403\\/photoCA0ULHWT_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126318292305575937}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1320000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0404159a-f8a8-4027-8566-e9d9f0fad601-126318292305575937" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : qd on parle de web sémantique, on parle de nvx processus de grammatisation #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : qd on parle de web sémantique, on parle de nvx processus de grammatisation #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1346000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : qd on parle de web s\\u00e9mantique, on parle de nvx processus de grammatisation #museoweb\",\"created_at\":\"Tue Oct 18 15:27:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[88,97]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318399931432961\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1995,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318399931432961}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1346000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e54b5b13-9393-486e-8deb-3611135b2881-126318399931432961" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: RT @gonzagauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense à l'imaginaire du flux ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1366000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense \\u00e0 l'imaginaire du flux ++\",\"created_at\":\"Tue Oct 18 15:27:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318487554621440\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler parle du temps synchronique et diacrhonique. Essentiel quand on pense \\u00e0 l'imaginaire du flux ++\",\"created_at\":\"Tue Oct 18 15:22:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126317286868004865\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7482,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126317286868004865},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1315,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6650,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318487554621440}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1366000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9d84691f-17af-4a30-a14f-0a30040478d6-126318487554621440" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Web #Semantic New Grammar process ?? http://t.co/OUknE9n1 ==", + "img": { + "src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" + }, + "title": "Samuel Huron: #museoweb Web #Semantic New Grammar process ?? http://t.co/OUknE9n1 ==", + "color": "16763904", + "polemics": ["Q", "REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1431000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Web #Semantic New Grammar process ?? http:\\/\\/t.co\\/OUknE9n1 ==\",\"created_at\":\"Tue Oct 18 15:28:33 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"Semantic\",\"indices\":[14,23]}],\"user_mentions\":[],\"urls\":[{\"indices\":[47,67],\"url\":\"http:\\/\\/t.co\\/OUknE9n1\",\"expanded_url\":\"http:\\/\\/goo.gl\\/uCuNG\",\"display_url\":\"goo.gl\\/uCuNG\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318758062071808\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":671,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2403,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318758062071808}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1431000, + "tags": [ + { + "id-ref": "997488b2-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99753f32-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7d499cd5-7608-4d49-976f-5a30b1fa0d02-126318758062071808" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS: de la parole à l'écriture jusqu'à la grammatisation : formalisation d'une pratique. Vers une grammatisation du web ??", + "img": { + "src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" + }, + "title": "nicolasauret: #museoweb BS: de la parole à l'écriture jusqu'à la grammatisation : formalisation d'une pratique. Vers une grammatisation du web ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1443000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS: de la parole \\u00e0 l'\\u00e9criture jusqu'\\u00e0 la grammatisation : formalisation d'une pratique. Vers une grammatisation du web ??\",\"created_at\":\"Tue Oct 18 15:28:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318808355971072\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":298,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318808355971072}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1443000, + "tags": [ + { + "id-ref": "99753f32-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "dc74d2ed-5d22-4f07-b309-d6b512adf1f4-126318808355971072" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Stiegler: #Teasing \"Je vais vous parler de Kant\" !", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Stiegler: #Teasing \"Je vais vous parler de Kant\" !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1445000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler: #Teasing \\\"Je vais vous parler de Kant\\\" !\",\"created_at\":\"Tue Oct 18 15:28:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"Teasing\",\"indices\":[20,28]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318816190922752\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7483,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318816190922752}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1445000, + "tags": [ + { + "id-ref": "99753f32-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "154dc18b-bbab-4263-8a63-9fff13666682-126318816190922752" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Stiegler pose un premier présupposé avec la grammatisation (élargie), plaçant la technique comme initiatrice de la communication.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Stiegler pose un premier présupposé avec la grammatisation (élargie), plaçant la technique comme initiatrice de la communication.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1448000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Stiegler pose un premier pr\\u00e9suppos\\u00e9 avec la grammatisation (\\u00e9largie), pla\\u00e7ant la technique comme initiatrice de la communication.\",\"created_at\":\"Tue Oct 18 15:28:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318828056616960\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7484,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318828056616960}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1448000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "63a999b2-59e6-4810-8a0f-396dda608083-126318828056616960" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "BS: Web sémantique et social = nouveaux processus de grammatisation, cad tous les flux d'expression humains (écriture et autres) #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: BS: Web sémantique et social = nouveaux processus de grammatisation, cad tous les flux d'expression humains (écriture et autres) #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1449000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"BS: Web s\\u00e9mantique et social = nouveaux processus de grammatisation, cad tous les flux d'expression humains (\\u00e9criture et autres) #museoweb\",\"created_at\":\"Tue Oct 18 15:28:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[129,138]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318835723800577\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1597,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318835723800577}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1449000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0870e258-5a04-4f8d-b006-faf52f158f83-126318835723800577" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Ecouter en ligne le séminaire : http://t.co/Du5ZRiPe #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Ecouter en ligne le séminaire : http://t.co/Du5ZRiPe #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1460000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Ecouter en ligne le s\\u00e9minaire : http:\\/\\/t.co\\/Du5ZRiPe #museoweb\",\"created_at\":\"Tue Oct 18 15:29:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[53,62]}],\"user_mentions\":[],\"urls\":[{\"indices\":[32,52],\"url\":\"http:\\/\\/t.co\\/Du5ZRiPe\",\"expanded_url\":\"http:\\/\\/goo.gl\\/zV6qo\",\"display_url\":\"goo.gl\\/zV6qo\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318881307500545\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1996,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318881307500545}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1460000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "53fcce13-8e21-4c94-bc94-9bb006b6f124-126318881307500545" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Grammatisation chez Sylvain Auroux, un outil conceptuel permettant de penser le langage mais aussi de tous les flux==", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Grammatisation chez Sylvain Auroux, un outil conceptuel permettant de penser le langage mais aussi de tous les flux==", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1468000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Grammatisation chez Sylvain Auroux, un outil conceptuel permettant de penser le langage mais aussi de tous les flux==\",\"created_at\":\"Tue Oct 18 15:29:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126318914207625216\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":348,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126318914207625216}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1468000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "517a4793-ea0a-4a16-aaf9-1791d1d43cac-126318914207625216" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS parle des flux, indique qu'ils sont grammatisés. Mais ils le sont parfois sans règle, or n'est-ce pas essentiel au procès ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb BS parle des flux, indique qu'ils sont grammatisés. Mais ils le sont parfois sans règle, or n'est-ce pas essentiel au procès ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1549000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS parle des flux, indique qu'ils sont grammatis\\u00e9s. Mais ils le sont parfois sans r\\u00e8gle, or n'est-ce pas essentiel au proc\\u00e8s ??\",\"created_at\":\"Tue Oct 18 15:30:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319254181122048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7485,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319254181122048}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1549000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7a3298ed-5d05-4246-a3b5-28fcce4ef844-126319254181122048" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Le web social est une grammatisation des rapports des flux et non le flux\" Processus de création de sens hypermoderne ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Le web social est une grammatisation des rapports des flux et non le flux\" Processus de création de sens hypermoderne ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1620000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Le web social est une grammatisation des rapports des flux et non le flux\\\" Processus de cr\\u00e9ation de sens hypermoderne ??\",\"created_at\":\"Tue Oct 18 15:31:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319549887942656\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7486,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319549887942656}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1620000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d182d951-b0fd-4635-ad30-e68e524b7dc0-126319549887942656" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1634000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1997,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1634000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c8558149-f6c8-4d42-b517-0327c8b7de40-126319609228955650" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/1075692355/richard-avedon_1188215126_normal.jpg" + }, + "title": "Claire: RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1663000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:32:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319730394013696\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1997,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Sun Apr 18 15:08:56 +0000 2010\",\"lang\":\"en\",\"time_zone\":null,\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"followers_count\":230,\"description\":\"Consultante en affaires publiques et com' digitale\\r\\nGeekeries, trends et autres anglicismes\\u2026\\r\\nhttp:\\/\\/sliceofgeek.wordpress.com\\/\\r\\n\\r\\n\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":false,\"following\":null,\"profile_text_color\":\"050a17\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"134484433\",\"listed_count\":10,\"friends_count\":524,\"profile_link_color\":\"217002\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1075692355\\/richard-avedon_1188215126_normal.jpg\",\"screen_name\":\"ClaireJDuriez\",\"name\":\"Claire\",\"statuses_count\":1186,\"verified\":false,\"profile_background_color\":\"c7d0e0\",\"id\":134484433,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1075692355\\/richard-avedon_1188215126_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319730394013696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1663000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "621eb209-82d6-4bf0-ab60-55b747430da3-126319730394013696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "\"Vous êtes venus là pour vous transindividuer psychiquement\" B. Stiegler #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: \"Vous êtes venus là pour vous transindividuer psychiquement\" B. Stiegler #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1692000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"Vous \\u00eates venus l\\u00e0 pour vous transindividuer psychiquement\\\" B. Stiegler #museoweb\",\"created_at\":\"Tue Oct 18 15:32:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[73,82]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319854142763009\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1598,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126319854142763009}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1692000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9e0f2862-3950-45f3-b15e-e93a6a732d51-126319854142763009" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", + "img": { + "src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" + }, + "title": "Samuel Huron: #museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", + "color": "16763904", + "polemics": ["Q", "REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1751000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS:\\\"metastabilisation\\\" == Shirky:\\\"crystallization\\\" ??\",\"created_at\":\"Tue Oct 18 15:33:53 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320099639566337\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"default_profile\":false,\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":671,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2404,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320099639566337}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1751000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "5cf1e44e-aaab-40b9-8cdc-6900f02d545b-126320099639566337" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"La transindividuation n'est pas homogène mais contribue à consolider des relations\" J'aime le fait d'éviter le consensus ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"La transindividuation n'est pas homogène mais contribue à consolider des relations\" J'aime le fait d'éviter le consensus ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1763000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"La transindividuation n'est pas homog\\u00e8ne mais contribue \\u00e0 consolider des relations\\\" J'aime le fait d'\\u00e9viter le consensus ++\",\"created_at\":\"Tue Oct 18 15:34:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320149992177664\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7487,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320149992177664}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1763000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c8c8c266-84da-4e35-8c54-59c8319ec620-126320149992177664" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cybunk: #museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", + "img": { + "src": "http://a1.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg" + }, + "title": "nicolasauret: RT @cybunk: #museoweb BS:\"metastabilisation\" == Shirky:\"crystallization\" ??", + "color": "16763904", + "polemics": ["Q", "REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1790000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cybunk: #museoweb BS:\\\"metastabilisation\\\" == Shirky:\\\"crystallization\\\" ??\",\"created_at\":\"Tue Oct 18 15:34:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[12,21]}],\"user_mentions\":[{\"indices\":[3,10],\"id_str\":\"14905766\",\"name\":\"Samuel Huron\",\"screen_name\":\"cybunk\",\"id\":14905766}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320265255862275\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS:\\\"metastabilisation\\\" == Shirky:\\\"crystallization\\\" ??\",\"created_at\":\"Tue Oct 18 15:33:53 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320099639566337\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":671,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2404,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320099639566337},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu May 05 08:31:25 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":93,\"description\":\"Founder of Inflammable Productions, producer for new media + project manager @IRI Centre Pompidou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.inflammableproductions.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"293395401\",\"listed_count\":6,\"friends_count\":74,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\",\"screen_name\":\"nicolasauret\",\"name\":\"nicolasauret\",\"statuses_count\":300,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":293395401,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1339638568\\/photoNicoS_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320265255862275}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1790000, + "tags": [ + { + "id-ref": "997578bc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "aa3dbfd6-0d91-4369-888f-c5e0964a2741-126320265255862275" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#Metadonnees #websemantic #culture RT @polemictweet: #MuseoWeb le stream video ici : http://t.co/rIp3qL5h", + "img": { + "src": "http://a2.twimg.com/profile_images/1594192310/e5cd561d-d258-4e16-9ca4-c765f21786f1_normal.png" + }, + "title": "samuel bausson: #Metadonnees #websemantic #culture RT @polemictweet: #MuseoWeb le stream video ici : http://t.co/rIp3qL5h", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1876000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#Metadonnees #websemantic #culture RT @polemictweet: #MuseoWeb le stream video ici : http:\\/\\/t.co\\/rIp3qL5h\",\"created_at\":\"Tue Oct 18 15:35:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Metadonnees\",\"indices\":[0,12]},{\"text\":\"websemantic\",\"indices\":[13,25]},{\"text\":\"culture\",\"indices\":[26,34]},{\"text\":\"MuseoWeb\",\"indices\":[53,62]}],\"user_mentions\":[{\"indices\":[38,51],\"id_str\":\"278987636\",\"name\":\"IRI Polemic Tweet\",\"screen_name\":\"PolemicTweet\",\"id\":278987636}],\"urls\":[{\"indices\":[86,106],\"url\":\"http:\\/\\/t.co\\/rIp3qL5h\",\"expanded_url\":\"http:\\/\\/goo.gl\\/GmurC\",\"display_url\":\"goo.gl\\/GmurC\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320623436832768\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"a9d494\",\"created_at\":\"Tue Feb 26 02:42:30 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"d1d1d1\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/79876591\\/409420142_ae78dee08c_o.jpg\",\"followers_count\":2178,\"description\":\"ouebmister @museumtoulouse \\u2022 #LegoMuseums #FreeCulture #CoDesign #OpenInnovation \\u2022 http:\\/\\/lesplanade.org \\u2022 http:\\/\\/museomix.com \\u2022 let's remix museums !\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/www.mixeum.net\",\"following\":null,\"profile_text_color\":\"454545\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/79876591\\/409420142_ae78dee08c_o.jpg\",\"favourites_count\":126,\"id_str\":\"13981242\",\"listed_count\":299,\"friends_count\":984,\"profile_link_color\":\"000000\",\"protected\":false,\"location\":\"Toulouse, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1594192310\\/e5cd561d-d258-4e16-9ca4-c765f21786f1_normal.png\",\"screen_name\":\"samuelbausson\",\"name\":\"samuel bausson\",\"statuses_count\":5114,\"verified\":false,\"profile_background_color\":\"80b25d\",\"id\":13981242,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1594192310\\/e5cd561d-d258-4e16-9ca4-c765f21786f1_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320623436832768}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1876000, + "tags": [ + { + "id-ref": "9976c5f0-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9976ca6e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9976ca6e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "dc5f26fb-0a78-4b4e-b66d-90a671b9355b-126320623436832768" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Le Web social serait pas seulement le web des relations sociales mais aussi de toutes les relations entre humains et ressources??", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Le Web social serait pas seulement le web des relations sociales mais aussi de toutes les relations entre humains et ressources??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1880000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le Web social serait pas seulement le web des relations sociales mais aussi de toutes les relations entre humains et ressources??\",\"created_at\":\"Tue Oct 18 15:36:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320641963081730\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":349,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320641963081730}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1880000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "97dbf1d1-508c-43a1-ae8e-e3a26b06e898-126320641963081730" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le changement technique --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le changement technique --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 1943000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb \\\"Le processus de grammatisation technique cr\\u00e9e de la d\\u00e9sindividuation\\\" Seulement si on n'accompagne pas le changement technique --\",\"created_at\":\"Tue Oct 18 15:37:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126320907277959168\",\"user\":{\"statuses_count\":7487,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":null,\"default_profile\":true,\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"id\":136900327,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"in_reply_to_status_id\":null,\"id\":126320907277959168}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 1943000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "52402092-b633-43cd-8d33-9e680fc4803a-126320907277959168" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS explique les mécanismes systémiques de l'évolution des processus d'individation.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb BS explique les mécanismes systémiques de l'évolution des processus d'individation.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2097000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS explique les m\\u00e9canismes syst\\u00e9miques de l'\\u00e9volution des processus d'individation.\",\"created_at\":\"Tue Oct 18 15:39:39 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321550193463296\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7489,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321550193463296}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2097000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "12fe3190-94a4-4d7d-b751-90342d6a41ed-126321550193463296" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le ...", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @gonzagauthier: #museoweb \"Le processus de grammatisation technique crée de la désindividuation\" Seulement si on n'accompagne pas le ...", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2110000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb \\\"Le processus de grammatisation technique cr\\u00e9e de la d\\u00e9sindividuation\\\" Seulement si on n'accompagne pas le ...\",\"created_at\":\"Tue Oct 18 15:39:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321607361822721\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Le processus de grammatisation technique cr\\u00e9e de la d\\u00e9sindividuation\\\" Seulement si on n'accompagne pas le changement technique --\",\"created_at\":\"Tue Oct 18 15:37:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126320907277959168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7489,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126320907277959168},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2009,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126321607361822721}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2110000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9963c845-2119-42b4-9e93-1f600074e9b7-126321607361822721" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Pouvoir et savoir sur la transindividuation doit on choisir ??", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Pouvoir et savoir sur la transindividuation doit on choisir ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2114000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Pouvoir et savoir sur la transindividuation doit on choisir ??\",\"created_at\":\"Tue Oct 18 15:39:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321624126468096\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":350,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321624126468096}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2114000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6a39df37-f63f-4d81-a10a-f9b69fa97674-126321624126468096" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "img": { + "src": "http://a3.twimg.com/profile_images/1562090347/Moi_Facebook_Twitter_redim_normal.jpg" + }, + "title": "Chirollet JC: RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2152000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:40:34 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321782687932416\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1997,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f6ffd1\",\"created_at\":\"Sat Jul 09 07:23:51 +0000 2011\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"fff8ad\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"followers_count\":20,\"description\":\"Philosophe, Universitaire_Esth\\u00e9tique_Fractals \\/ Art Fractal_Arts Num\\u00e9riques_Num\\u00e9risation du Patrimoine Artistique_Photographie Num\\u00e9rique\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"favourites_count\":3,\"id_str\":\"332115667\",\"listed_count\":0,\"friends_count\":134,\"profile_link_color\":\"0099CC\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\",\"screen_name\":\"fracjc\",\"name\":\"Chirollet JC\",\"statuses_count\":40,\"verified\":false,\"profile_background_color\":\"FFF04D\",\"id\":332115667,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126321782687932416}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2152000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ccd05ec5-577b-46be-97cf-487cd4fc927b-126321782687932416" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb la transindividuation produit du pouvoir, ou du savoir, ou les deux (c'est a dire des grands dirigeants !)", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb la transindividuation produit du pouvoir, ou du savoir, ou les deux (c'est a dire des grands dirigeants !)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2159000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb la transindividuation produit du pouvoir, ou du savoir, ou les deux (c'est a dire des grands dirigeants !)\",\"created_at\":\"Tue Oct 18 15:40:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321809833476096\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1017,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1599,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321809833476096}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2159000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "632313a8-b336-4796-a247-89fb9f5f65f5-126321809833476096" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS reprend la question de savoir/pouvoir, et indique que l'un et l'autre peuvent être séparés, que le savoir peut exister seul. --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb BS reprend la question de savoir/pouvoir, et indique que l'un et l'autre peuvent être séparés, que le savoir peut exister seul. --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2159000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS reprend la question de savoir\\/pouvoir, et indique que l'un et l'autre peuvent \\u00eatre s\\u00e9par\\u00e9s, que le savoir peut exister seul. --\",\"created_at\":\"Tue Oct 18 15:40:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321811494420481\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7490,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321811494420481}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2159000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4eb55f93-1e26-423e-a540-46179ede247b-126321811494420481" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb suis-je un transducteur ? (je m'interroge) /cc @lilmount @gonzagauthier", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb suis-je un transducteur ? (je m'interroge) /cc @lilmount @gonzagauthier", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2177000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb suis-je un transducteur ? (je m'interroge) \\/cc @lilmount @gonzagauthier\",\"created_at\":\"Tue Oct 18 15:40:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[57,66],\"id_str\":\"68658539\",\"name\":\"Coline Aunis\",\"screen_name\":\"Lilmount\",\"id\":68658539},{\"indices\":[67,81],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321885930721280\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1315,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6651,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321885930721280}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2177000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "48f80e58-bfc7-4dd1-b851-740ac7d562a6-126321885930721280" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS:\"transducteur\" == McKenzie Wark \"vector\" ?? http://t.co/Y5WtmljB", + "img": { + "src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" + }, + "title": "Samuel Huron: #museoweb BS:\"transducteur\" == McKenzie Wark \"vector\" ?? http://t.co/Y5WtmljB", + "color": "16763904", + "polemics": ["Q", "REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2187000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS:\\\"transducteur\\\" == McKenzie Wark \\\"vector\\\" ?? http:\\/\\/t.co\\/Y5WtmljB\",\"created_at\":\"Tue Oct 18 15:41:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[57,77],\"url\":\"http:\\/\\/t.co\\/Y5WtmljB\",\"expanded_url\":\"http:\\/\\/goo.gl\\/c5InY\",\"display_url\":\"goo.gl\\/c5InY\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126321928066699264\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"default_profile\":false,\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":673,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2405,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126321928066699264}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2187000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f8d79730-e261-4ef6-aa36-6914892902d5-126321928066699264" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : \"les metadonnées mettent en œuvre des règles, qui sont des relations transindividualisées\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : \"les metadonnées mettent en œuvre des règles, qui sont des relations transindividualisées\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2247000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\\"les metadonn\\u00e9es mettent en \\u0153uvre des r\\u00e8gles, qui sont des relations transindividualis\\u00e9es\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:42:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[104,113]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322182484795393\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1998,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322182484795393}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2247000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "313b76d6-3a8d-4b88-bcab-264dac36d513-126322182484795393" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Articuler le sychronique et le diacronique sans interrompre la dynamique sociale++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Articuler le sychronique et le diacronique sans interrompre la dynamique sociale++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2283000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Articuler le sychronique et le diacronique sans interrompre la dynamique sociale++\",\"created_at\":\"Tue Oct 18 15:42:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322330086547456\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":351,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322330086547456}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2283000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3ea7ca5f-9345-4e61-92c4-5c7c75d809d4-126322330086547456" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Bs: Enjeu du séminaire: mettre en place des processus qui permettront d'augmenter la capacité à créer du lien entre les savoirs.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Bs: Enjeu du séminaire: mettre en place des processus qui permettront d'augmenter la capacité à créer du lien entre les savoirs.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2285000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Bs: Enjeu du s\\u00e9minaire: mettre en place des processus qui permettront d'augmenter la capacit\\u00e9 \\u00e0 cr\\u00e9er du lien entre les savoirs.\",\"created_at\":\"Tue Oct 18 15:42:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322338303193089\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7491,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322338303193089}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2285000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d805f44c-f184-401e-9abb-f741da837d41-126322338303193089" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb BS le web sem est un processus de grammatisation analytique - production de metadonnees, vers une automatisation totale", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb BS le web sem est un processus de grammatisation analytique - production de metadonnees, vers une automatisation totale", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2358000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb BS le web sem est un processus de grammatisation analytique - production de metadonnees, vers une automatisation totale\",\"created_at\":\"Tue Oct 18 15:44:00 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322646907502592\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1017,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1600,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322646907502592}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2358000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "51b5e6b1-f4f1-4007-ad40-5022353793b1-126322646907502592" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \" B Stiegler \"Le web social c’est autre chose, c’est la grammatisation d’un pouvoir de synthésisation, d’un pouvoir de jugement.\"", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb \" B Stiegler \"Le web social c’est autre chose, c’est la grammatisation d’un pouvoir de synthésisation, d’un pouvoir de jugement.\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2384000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\" B\\u00a0Stiegler \\\"Le web social c\\u2019est autre chose, c\\u2019est la grammatisation d\\u2019un pouvoir de synth\\u00e9sisation, d\\u2019un pouvoir de jugement.\\\"\",\"created_at\":\"Tue Oct 18 15:44:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322756559192065\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":31,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322756559192065}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2384000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "984bf0bd-823a-49fe-99af-f09a1110df6b-126322756559192065" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : \"le web sémantique est un processus de grammatisation analytique alors que web social pouvoir de jugement\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : \"le web sémantique est un processus de grammatisation analytique alors que web social pouvoir de jugement\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2386000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\\"le web s\\u00e9mantique est un processus de grammatisation analytique alors que web social pouvoir de jugement\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:44:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[120,129]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322762078892035\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":1999,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322762078892035}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2386000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c5dbcd07-11f6-4c93-b09c-1127282eaf72-126322762078892035" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"BS: grammatisation d'un pouvoir de jugement\" Quid de l'entraide ?? Le conseil est-il un jugement ?", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"BS: grammatisation d'un pouvoir de jugement\" Quid de l'entraide ?? Le conseil est-il un jugement ?", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2388000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"BS: grammatisation d'un pouvoir de jugement\\\" Quid de l'entraide ?? Le conseil est-il un jugement ?\",\"created_at\":\"Tue Oct 18 15:44:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322771440570368\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7491,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322771440570368}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2388000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1cff1d16-dd2a-48ee-a462-55a9b76edfca-126322771440570368" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Museologie 2.0 #museoweb (@ Centre Pompidou (CNAC)) http://t.co/7NSMdzeJ", + "img": { + "src": "http://a3.twimg.com/profile_images/1585449430/Picture_5_normal.png" + }, + "title": "Andrea Cevenini: Museologie 2.0 #museoweb (@ Centre Pompidou (CNAC)) http://t.co/7NSMdzeJ", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2412000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Museologie 2.0 #museoweb (@ Centre Pompidou (CNAC)) http:\\/\\/t.co\\/7NSMdzeJ\",\"created_at\":\"Tue Oct 18 15:44:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]}],\"user_mentions\":[],\"urls\":[{\"indices\":[52,72],\"url\":\"http:\\/\\/t.co\\/7NSMdzeJ\",\"expanded_url\":\"http:\\/\\/4sq.com\\/oyCBym\",\"display_url\":\"4sq.com\\/oyCBym\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/foursquare.com\\\" rel=\\\"nofollow\\\"\\u003Efoursquare\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322871306944512\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"created_at\":\"Mon Oct 03 10:38:31 +0000 2011\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DBE9ED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"followers_count\":29,\"description\":\"European Designer.\\r\\n\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.andreacevenini.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"favourites_count\":8,\"id_str\":\"384249937\",\"listed_count\":1,\"friends_count\":112,\"profile_link_color\":\"CC3366\",\"protected\":false,\"location\":\"K\\u00f6ln \\/ Paris \\/ Milan\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\",\"screen_name\":\"ACevenini\",\"name\":\"Andrea Cevenini\",\"statuses_count\":53,\"verified\":false,\"profile_background_color\":\"DBE9ED\",\"id\":384249937,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1585449430\\/Picture_5_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322871306944512}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2412000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e623a44c-caf9-4b96-99b0-c1c0346d83cb-126322871306944512" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2416000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le Web s\\u00e9mantique serait l'analytique et le web social le synth\\u00e9tique (le social peut aussi \\u00eatre analytique)--\",\"created_at\":\"Tue Oct 18 15:44:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322889908682752\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":352,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126322889908682752}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2416000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "531a42dc-e3e2-41cc-b8f3-cb90b0ff0dd2-126322889908682752" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Ca y est, on parle de Kant. Je me méfie toujours des pensées basées sur l'esthétique kantienne. --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Ca y est, on parle de Kant. Je me méfie toujours des pensées basées sur l'esthétique kantienne. --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2445000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Ca y est, on parle de Kant. Je me m\\u00e9fie toujours des pens\\u00e9es bas\\u00e9es sur l'esth\\u00e9tique kantienne. --\",\"created_at\":\"Tue Oct 18 15:45:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323009186312192\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7493,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323009186312192}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2445000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ced70a7f-6c17-44e7-b198-36ee78d6f1f5-126323009186312192" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Stiegler : jugement esthétique selon Kant subjectif / réfléchissant #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Stiegler : jugement esthétique selon Kant subjectif / réfléchissant #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2479000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Stiegler : jugement esth\\u00e9tique selon Kant subjectif \\/ r\\u00e9fl\\u00e9chissant #museoweb\",\"created_at\":\"Tue Oct 18 15:46:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[68,77]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323152967041024\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2000,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323152967041024}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2479000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1a2ae8cf-c0fd-41aa-9d36-7d099197babf-126323152967041024" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Il y a du mystique dans la qualification de l'oeuvre par Stiegler, qui nie quelque part son potentiel social et politique. --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Il y a du mystique dans la qualification de l'oeuvre par Stiegler, qui nie quelque part son potentiel social et politique. --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2626000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Il y a du mystique dans la qualification de l'oeuvre par Stiegler, qui nie quelque part son potentiel social et politique. --\",\"created_at\":\"Tue Oct 18 15:48:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323769043193856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7494,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323769043193856}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2626000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9ce8d50d-df86-4ff4-82b4-54f58bd3b5f2-126323769043193856" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Le jugement ne peut pas faire l'objet d'une preuve, dépasse les capacités analytiques. \"une oeuvre est quelque chose d'improbable", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb Le jugement ne peut pas faire l'objet d'une preuve, dépasse les capacités analytiques. \"une oeuvre est quelque chose d'improbable", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2628000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le jugement ne peut pas faire l'objet d'une preuve, d\\u00e9passe les capacit\\u00e9s analytiques. \\\"une oeuvre est quelque chose d'improbable\",\"created_at\":\"Tue Oct 18 15:48:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323778736242689\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1017,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1601,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323778736242689}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2628000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "540bd204-dee2-4457-b4a9-3a55707b7ce8-126323778736242689" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2638000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Une oeuvre d'art d\\u00e9passe mon jugement analytique, elle est improbable++\",\"created_at\":\"Tue Oct 18 15:48:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126323821480378368\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":352,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126323821480378368}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2638000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "60a879f2-054b-455f-9450-82e720ab6d5c-126323821480378368" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2725000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : \\\"il faut introduire le web s\\u00e9mantique dans des mus\\u00e9es d'art\\\" #museoweb\",\"created_at\":\"Tue Oct 18 15:50:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[74,83]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324185818607616\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2001,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324185818607616}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2725000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "efd3630c-3b3b-4d22-8c01-cd52de64b43c-126324185818607616" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Les communautés de jugement, communautés d'amateur, communiquent plutot qu'analysent ? Quelle place pour le symbole ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Les communautés de jugement, communautés d'amateur, communiquent plutot qu'analysent ? Quelle place pour le symbole ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2737000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Les communaut\\u00e9s de jugement, communaut\\u00e9s d'amateur, communiquent plutot qu'analysent ? Quelle place pour le symbole ??\",\"created_at\":\"Tue Oct 18 15:50:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324237697949697\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7495,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324237697949697}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2737000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d72bd668-f05d-49da-94ef-dfce4a19545f-126324237697949697" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb je ne vois pas en quoi le web sem serait impuissant a exprimer des faits relevant du jugement et non de l'analytique --", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb je ne vois pas en quoi le web sem serait impuissant a exprimer des faits relevant du jugement et non de l'analytique --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2758000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb je ne vois pas en quoi le web sem serait impuissant a exprimer des faits relevant du jugement et non de l'analytique --\",\"created_at\":\"Tue Oct 18 15:50:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324323089784832\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1602,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324323089784832}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2758000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ba7d6fff-d632-4190-be6c-fcbf295aa606-126324323089784832" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Adrienne Alix : espaces de #Wikipédia guidés par la contribution individuelle spontanée #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Adrienne Alix : espaces de #Wikipédia guidés par la contribution individuelle spontanée #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2850000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : espaces de #Wikip\\u00e9dia guid\\u00e9s par la contribution individuelle spontan\\u00e9e #museoweb\",\"created_at\":\"Tue Oct 18 15:52:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Wikip\\u00e9dia\",\"indices\":[27,37]},{\"text\":\"museoweb\",\"indices\":[88,97]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324709888491521\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2002,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324709888491521}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2850000, + "tags": [ + { + "id-ref": "9976ce9c-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99799640-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e28b384d-3264-4b67-b5d2-e65068b946ce-126324709888491521" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix présente les espaces individuels spontanés de contribution sur #wikipedia, qui convergent vers le #semantique", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix présente les espaces individuels spontanés de contribution sur #wikipedia, qui convergent vers le #semantique", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2850000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les espaces individuels spontan\\u00e9s de contribution sur #wikipedia, qui convergent vers le #semantique\",\"created_at\":\"Tue Oct 18 15:52:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[87,97]},{\"text\":\"semantique\",\"indices\":[122,133]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324711612354560\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7496,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324711612354560}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2850000, + "tags": [ + { + "id-ref": "99799640-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99799640-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "23078cee-84e8-4396-b4d0-64b252e1d873-126324711612354560" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Google Art : un outil analytique ? Malheureusement pas toujours perçu ainsi --", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Google Art : un outil analytique ? Malheureusement pas toujours perçu ainsi --", + "color": "16763904", + "polemics": ["Q", "KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2870000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Google Art : un outil analytique ? Malheureusement pas toujours per\\u00e7u ainsi --\",\"created_at\":\"Tue Oct 18 15:52:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126324795003510784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"default_profile\":true,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":354,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126324795003510784}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2870000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9f4b5a2e-cdf9-4b98-a11f-b0d859ec300d-126324795003510784" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "img": { + "src": "http://a2.twimg.com/profile_images/455510659/balons_normal.jpg" + }, + "title": "Daniel Anic: RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2921000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:53:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325008803954688\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"B Stiegler : le web social produit une grammatisation relationnelle, sur les RAPPORTS entre les flux #museoweb\",\"created_at\":\"Tue Oct 18 15:31:56 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126319609228955650\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2002,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":3,\"favorited\":false,\"truncated\":false,\"id\":126319609228955650},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Tue Apr 14 12:56:48 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":159,\"description\":\"D\\u00e9veloppeur web & logiciel freelance\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.anic.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":70,\"id_str\":\"31114844\",\"listed_count\":14,\"friends_count\":236,\"profile_link_color\":\"788784\",\"protected\":false,\"location\":\"paris FR\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/455510659\\/balons_normal.jpg\",\"screen_name\":\"anic_fr\",\"name\":\"Daniel Anic\",\"statuses_count\":2132,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":31114844,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/455510659\\/balons_normal.jpg\"},\"retweet_count\":3,\"favorited\":false,\"truncated\":false,\"id\":126325008803954688}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2921000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "56eab658-8b6b-4021-9e26-3ba62328b568-126325008803954688" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"L'encyclopédie de Diderot est loin d'etre neutre de point de vue\". Comme toutes les autres ! Le chercheur est tjrs situable ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"L'encyclopédie de Diderot est loin d'etre neutre de point de vue\". Comme toutes les autres ! Le chercheur est tjrs situable ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2952000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"L'encyclop\\u00e9die de Diderot est loin d'etre neutre de point de vue\\\". Comme toutes les autres ! Le chercheur est tjrs situable ++\",\"created_at\":\"Tue Oct 18 15:53:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325137145470976\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7497,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325137145470976}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2952000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "05990024-8c88-40a0-b3b4-590884b9a844-126325137145470976" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Q à BS: le jugement esthétique ne s'applique-t-il pas au process de grammatisatisation proposé par les plateformes du websocial??", + "img": { + "src": "http://a3.twimg.com/profile_images/535539026/oaoa_normal.JPG" + }, + "title": "Olivier Auber: #museoweb Q à BS: le jugement esthétique ne s'applique-t-il pas au process de grammatisatisation proposé par les plateformes du websocial??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2968000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Q \\u00e0 BS: le jugement esth\\u00e9tique ne s'applique-t-il pas au process de grammatisatisation propos\\u00e9 par les plateformes du websocial??\",\"created_at\":\"Tue Oct 18 15:54:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325206666055682\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"FFFFFF\",\"created_at\":\"Sun Jan 07 07:36:21 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Brussels\",\"profile_sidebar_border_color\":\"FFFFFF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/29472\\/polignac28Gen2NB250.jpg\",\"followers_count\":1760,\"description\":\"Bricolage th\\u00e9orique. Th\\u00e9orie du bricolage.\\r\\nParis - Bruxelles.\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/perspective-numerique.net\",\"following\":null,\"profile_text_color\":\"AC8CB7\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/29472\\/polignac28Gen2NB250.jpg\",\"favourites_count\":2268,\"id_str\":\"609513\",\"listed_count\":179,\"friends_count\":1026,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/535539026\\/oaoa_normal.JPG\",\"screen_name\":\"OlivierAuber\",\"name\":\"Olivier Auber\",\"default_profile\":false,\"statuses_count\":9658,\"verified\":false,\"profile_background_color\":\"FFFFFF\",\"id\":609513,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/535539026\\/oaoa_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325206666055682}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2968000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3e0c4298-93b2-4960-9d29-0a1b98fc687d-126325206666055682" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", + "img": { + "src": "http://a3.twimg.com/profile_images/1562090347/Moi_Facebook_Twitter_redim_normal.jpg" + }, + "title": "Chirollet JC: RT @cblogculture: B Stiegler : \"il faut introduire le web sémantique dans des musées d'art\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2974000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweeted\":false,\"text\":\"RT @cblogculture: B Stiegler : \\\"il faut introduire le web s\\u00e9mantique dans des mus\\u00e9es d'art\\\" #museoweb\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"entities\":{\"urls\":[],\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[92,101]}],\"user_mentions\":[{\"indices\":[3,16],\"screen_name\":\"cblogculture\",\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"id\":216030846}]},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126325230514864128\",\"place\":null,\"contributors\":null,\"truncated\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"retweeted_status\":{\"retweeted\":false,\"text\":\"B Stiegler : \\\"il faut introduire le web s\\u00e9mantique dans des mus\\u00e9es d'art\\\" #museoweb\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"entities\":{\"urls\":[],\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[74,83]}],\"user_mentions\":[]},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126324185818607616\",\"place\":null,\"contributors\":null,\"truncated\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"retweet_count\":0,\"in_reply_to_user_id\":null,\"favorited\":false,\"created_at\":\"Tue Oct 18 15:50:07 +0000 2011\",\"geo\":null,\"user\":{\"geo_enabled\":false,\"profile_use_background_image\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"profile_text_color\":\"9b8f40\",\"lang\":\"fr\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"location\":\"\",\"id_str\":\"216030846\",\"notifications\":null,\"profile_link_color\":\"da5700\",\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"screen_name\":\"cblogculture\",\"is_translator\":false,\"verified\":false,\"favourites_count\":1,\"listed_count\":62,\"following\":null,\"friends_count\":187,\"profile_background_color\":\"3c4006\",\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"show_all_inline_media\":false,\"contributors_enabled\":false,\"statuses_count\":2002,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"profile_sidebar_fill_color\":\"ced7d6\",\"protected\":false,\"name\":\"C\\/blog\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"followers_count\":1132,\"id\":216030846,\"utc_offset\":null,\"url\":\"http:\\/\\/cblog.culture.fr\"},\"in_reply_to_screen_name\":null,\"id\":126324185818607616},\"retweet_count\":0,\"in_reply_to_user_id\":null,\"favorited\":false,\"created_at\":\"Tue Oct 18 15:54:16 +0000 2011\",\"geo\":null,\"user\":{\"geo_enabled\":false,\"profile_use_background_image\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_text_color\":\"333333\",\"lang\":\"fr\",\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"location\":\"France\",\"id_str\":\"332115667\",\"notifications\":null,\"profile_link_color\":\"0099CC\",\"description\":\"Philosophe, Universitaire_Esth\\u00e9tique_Fractals \\/ Art Fractal_Arts Num\\u00e9riques_Num\\u00e9risation du Patrimoine Artistique_Photographie Num\\u00e9rique\",\"screen_name\":\"fracjc\",\"is_translator\":false,\"verified\":false,\"favourites_count\":3,\"listed_count\":0,\"following\":null,\"friends_count\":134,\"profile_background_color\":\"FFF04D\",\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1562090347\\/Moi_Facebook_Twitter_redim_normal.jpg\",\"show_all_inline_media\":true,\"contributors_enabled\":false,\"statuses_count\":42,\"created_at\":\"Sat Jul 09 07:23:51 +0000 2011\",\"profile_sidebar_fill_color\":\"f6ffd1\",\"protected\":false,\"name\":\"Chirollet JC\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"fff8ad\",\"followers_count\":20,\"id\":332115667,\"utc_offset\":-10800,\"url\":null},\"in_reply_to_screen_name\":null,\"id\":126325230514864128}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2974000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1c12d22f-604d-4ac1-a385-c087ede4ff21-126325230514864128" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2981000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"A Alix : pr\\u00e9sentation de 4 encyclop\\u00e9dies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb\",\"created_at\":\"Tue Oct 18 15:54:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[99,108]}],\"user_mentions\":[],\"urls\":[{\"indices\":[73,84],\"url\":\"Nupedia.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325257618464769\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2003,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325257618464769}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2981000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "8ea3f805-6879-4b8e-8a80-782e739324e5-126325257618464769" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", + "img": { + "src": "http://a1.twimg.com/profile_images/1294841927/mde_normal.jpg" + }, + "title": "MdE78: RT @cblogculture: A Alix : présentation de 4 encyclopédies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 2997000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: A Alix : pr\\u00e9sentation de 4 encyclop\\u00e9dies : Diderot, Larousse sur cd-Rom, Nupedia.com, Wikipedia... #museoweb\",\"created_at\":\"Tue Oct 18 15:54:39 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[117,126]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[{\"indices\":[91,102],\"url\":\"Nupedia.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325328552525825\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f4dc\",\"created_at\":\"Thu Mar 31 14:30:28 +0000 2011\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/227482331\\/siteoff0-76911.png\",\"followers_count\":208,\"description\":\"La Maison de l'\\u00c9ducation des Yvelines vous accueille \\u00e0 Marly-le-Roi : M\\u00e9diath\\u00e8que, animations p\\u00e9dagogiques, formations TIce...\",\"default_profile\":false,\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.mde78.fr\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/227482331\\/siteoff0-76911.png\",\"favourites_count\":0,\"id_str\":\"275041850\",\"listed_count\":22,\"friends_count\":201,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Marly le Roi, 78\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1294841927\\/mde_normal.jpg\",\"screen_name\":\"MdE78\",\"name\":\"MdE78\",\"statuses_count\":717,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":275041850,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1294841927\\/mde_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325328552525825}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 2997000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "57bb1c91-0094-4507-ba61-9e4e88951a8c-126325328552525825" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Entre l'encyclopédie Diderot et le dictionnaire sur cdrom j'aurai cité le dico scolaire comme outil largement diffusé--", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Entre l'encyclopédie Diderot et le dictionnaire sur cdrom j'aurai cité le dico scolaire comme outil largement diffusé--", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3034000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Entre l'encyclop\\u00e9die Diderot et le dictionnaire sur cdrom j'aurai cit\\u00e9 le dico scolaire comme outil largement diffus\\u00e9--\",\"created_at\":\"Tue Oct 18 15:55:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325479778156545\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":355,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325479778156545}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3034000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "32cfbdf1-c586-442b-b2e5-0aa4862f0c9c-126325479778156545" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"wikipédia en tant que brouillon de Nupédia\"", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb \"wikipédia en tant que brouillon de Nupédia\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3046000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"wikip\\u00e9dia en tant que brouillon de Nup\\u00e9dia\\\"\",\"created_at\":\"Tue Oct 18 15:55:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325532542517248\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":33,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325532542517248}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3046000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "edb0a7ee-aa20-4b2c-9e9b-51af5f60acb7-126325532542517248" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb L'encyclopédie Universalis n'est pas citée, est ce un acte manqué de la part du principal concurrent de fait Wikipedia ??", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb L'encyclopédie Universalis n'est pas citée, est ce un acte manqué de la part du principal concurrent de fait Wikipedia ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3104000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb L'encyclop\\u00e9die Universalis n'est pas cit\\u00e9e, est ce un acte manqu\\u00e9 de la part du principal concurrent de fait Wikipedia ??\",\"created_at\":\"Tue Oct 18 15:56:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325773975035904\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":355,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325773975035904}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3104000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1631cc74-8716-4239-8c16-a99ed452d289-126325773975035904" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Sur #wikipedia on n'écrit pas seul\" Bon outil de création de symbole contre les solitudes numériques. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Sur #wikipedia on n'écrit pas seul\" Bon outil de création de symbole contre les solitudes numériques. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3149000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Sur #wikipedia on n'\\u00e9crit pas seul\\\" Bon outil de cr\\u00e9ation de symbole contre les solitudes num\\u00e9riques. ++\",\"created_at\":\"Tue Oct 18 15:57:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126325963402387456\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7498,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126325963402387456}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3149000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "717e0a9c-bb5b-4072-a39e-311103d56d26-126325963402387456" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "3 caractéristiques de Wikipédia : 1. collaborative, ouverte a ts (filtre de la compétence), 2. diffusée ss licence libre #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: 3 caractéristiques de Wikipédia : 1. collaborative, ouverte a ts (filtre de la compétence), 2. diffusée ss licence libre #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3189000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"3 caract\\u00e9ristiques de Wikip\\u00e9dia : 1. collaborative, ouverte a ts (filtre de la comp\\u00e9tence), 2. diffus\\u00e9e ss licence libre #museoweb\",\"created_at\":\"Tue Oct 18 15:57:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[121,130]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326129714937857\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2004,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326129714937857}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3189000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ded701e9-c4a1-4a4c-855e-6b46c4c2b0b8-126326129714937857" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Au départ la licence libre a un but pratique : nécessaire pour pouvoir modifier un contenu existant @AdrienneAlix ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb Au départ la licence libre a un but pratique : nécessaire pour pouvoir modifier un contenu existant @AdrienneAlix ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3220000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Au d\\u00e9part la licence libre a un but pratique : n\\u00e9cessaire pour pouvoir modifier un contenu existant @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 15:58:22 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[110,123],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326260891783168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1603,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326260891783168}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3220000, + "tags": [ + { + "id-ref": "9979b4e0-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "912d9561-9f2d-4fd0-96c9-c9ed23143626-126326260891783168" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3222000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]},{\"text\":\"empirisme\",\"indices\":[99,109]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326272191234048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7499,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326272191234048}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3222000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "55d5b682-68f7-40c2-904e-066196e70ecc-126326272191234048" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Et 3. Multilingue (+ 280 langues) #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Et 3. Multilingue (+ 280 langues) #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3230000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Et 3. Multilingue (+ 280 langues) #museoweb\",\"created_at\":\"Tue Oct 18 15:58:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[34,43]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326304990699521\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2005,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326304990699521}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3230000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "513105b3-765f-4a57-8efe-91878b84d252-126326304990699521" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb l'encyclopédie Diderot, un travail déja collaboratif ? Pas au sens où on l'entend aujourd'hui, Diderot passait commande--", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb l'encyclopédie Diderot, un travail déja collaboratif ? Pas au sens où on l'entend aujourd'hui, Diderot passait commande--", + "color": "16763904", + "polemics": ["Q", "KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3234000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb l'encyclop\\u00e9die Diderot, un travail d\\u00e9ja collaboratif ? Pas au sens o\\u00f9 on l'entend aujourd'hui, Diderot passait commande--\",\"created_at\":\"Tue Oct 18 15:58:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326319029039104\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":173,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":357,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326319029039104}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3234000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "211a0e30-0aa3-42b4-84f1-4f6f3af8d795-126326319029039104" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", + "img": { + "src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png" + }, + "title": "Samuel Huron: RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3239000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"wikipedia\",\"indices\":[34,44]},{\"text\":\"empirisme\",\"indices\":[118,128]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326341699248128\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]},{\"text\":\"empirisme\",\"indices\":[99,109]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326272191234048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7499,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326272191234048},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ffffff\",\"created_at\":\"Mon May 26 06:02:18 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"b3009b\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"followers_count\":558,\"description\":\"Designer @ IRI Centre Pompidou \\/ PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.cybunk.com\",\"following\":null,\"profile_text_color\":\"4c9c8f\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/51130859\\/3577914799_1350cff02e.jpg\",\"favourites_count\":316,\"id_str\":\"14905766\",\"listed_count\":62,\"friends_count\":673,\"profile_link_color\":\"b3009b\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\",\"screen_name\":\"cybunk\",\"name\":\"Samuel Huron\",\"statuses_count\":2407,\"verified\":false,\"profile_background_color\":\"000000\",\"id\":14905766,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/309624209\\/Cy2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326341699248128}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3239000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3e4c6161-9c6b-4a3d-b170-981076a8a44b-126326341699248128" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "2011 : 280 éditions linguistiques, 34 d'entre elles + 100 000 articles #museoweb #Wikipédia", + "img": { + "src": "None" + }, + "title": "C/blog: 2011 : 280 éditions linguistiques, 34 d'entre elles + 100 000 articles #museoweb #Wikipédia", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3293000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"2011 : 280 \\u00e9ditions linguistiques, 34 d'entre elles + 100 000 articles #museoweb #Wikip\\u00e9dia\",\"created_at\":\"Tue Oct 18 15:59:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[71,80]},{\"text\":\"Wikip\\u00e9dia\",\"indices\":[81,91]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326568367833089\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2006,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326568367833089}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3293000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "5e1ee618-9bf2-463e-b165-997efa8ae8a4-126326568367833089" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. Quels buts alors ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. Quels buts alors ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3303000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix sugg\\u00e8re que la production d'articles, m\\u00eame de peu de qualit\\u00e9 est d\\u00e9j\\u00e0 une victoire du projet. Quels buts alors ??\",\"created_at\":\"Tue Oct 18 15:59:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326610222792705\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7500,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326610222792705}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3303000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "83e73434-6446-499d-8334-ec895f241194-126326610222792705" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3306000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix\",\"created_at\":\"Tue Oct 18 15:59:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[75,88],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326624584089601\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1604,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326624584089601}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3306000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9d20d081-b2bf-466a-b7cf-47fcd17df6cb-126326624584089601" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Wikimedia Commons est une médiathèque de contenus centrale, qui compte auj + 11 millions de fichiers #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Wikimedia Commons est une médiathèque de contenus centrale, qui compte auj + 11 millions de fichiers #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3364000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Wikimedia Commons est une m\\u00e9diath\\u00e8que de contenus centrale, qui compte auj + 11 millions de fichiers #museoweb\",\"created_at\":\"Tue Oct 18 16:00:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[101,110]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326866461208576\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2007,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326866461208576}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3364000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "12f4cf3f-09fb-4bb5-afbc-b0d02c10aab6-126326866461208576" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3383000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:01:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[75,87]}],\"user_mentions\":[{\"indices\":[88,101],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326944408158208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1604,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326944408158208}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3383000, + "tags": [ + { + "id-ref": "997b2f28-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3b9536d5-29b3-4d21-a4f9-7efde55126b5-126326944408158208" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a précédé la théorisation philosophique ++ #empirisme", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3384000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 16:01:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"wikipedia\",\"indices\":[34,44]},{\"text\":\"empirisme\",\"indices\":[118,128]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326950406012928\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Dans #wikipedia le pratique (et la technique) a pr\\u00e9c\\u00e9d\\u00e9 la th\\u00e9orisation philosophique ++ #empirisme\",\"created_at\":\"Tue Oct 18 15:58:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[15,25]},{\"text\":\"empirisme\",\"indices\":[99,109]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326272191234048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7500,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126326272191234048},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12058,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126326950406012928}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3384000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fe6e2eba-9b23-4e1e-aecb-5c643d5e3594-126326950406012928" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3437000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:01:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[67,80],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[111,124],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327173048057856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12059,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327173048057856}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3437000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a658daee-a9e9-4aa3-ab61-e1b7d333987e-126327173048057856" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Wikisource, bibliothèque de textes ss licence libre, + 72 000 textes #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Wikisource, bibliothèque de textes ss licence libre, + 72 000 textes #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3442000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Wikisource, biblioth\\u00e8que de textes ss licence libre, + 72 000 textes #museoweb\",\"created_at\":\"Tue Oct 18 16:02:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[69,78]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327194740989952\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2008,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327194740989952}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3442000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7525842d-a398-45c3-bee7-a076d7c62cdc-126327194740989952" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. ...", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @gonzagauthier: #museoweb @AdrienneAlix suggère que la production d'articles, même de peu de qualité est déjà une victoire du projet. ...", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3461000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb @AdrienneAlix sugg\\u00e8re que la production d'articles, m\\u00eame de peu de qualit\\u00e9 est d\\u00e9j\\u00e0 une victoire du projet. ...\",\"created_at\":\"Tue Oct 18 16:02:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[29,42],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327270989250561\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix sugg\\u00e8re que la production d'articles, m\\u00eame de peu de qualit\\u00e9 est d\\u00e9j\\u00e0 une victoire du projet. Quels buts alors ??\",\"created_at\":\"Tue Oct 18 15:59:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326610222792705\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7500,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326610222792705},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"default_profile\":false,\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2009,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126327270989250561}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3461000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c3dfe897-dea6-4527-a2b6-b13227ab6f7f-126327270989250561" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Enfin Wikctionnaire a plus de 2 millions d'entrées #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Enfin Wikctionnaire a plus de 2 millions d'entrées #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3511000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Enfin Wikctionnaire a plus de 2 millions d'entr\\u00e9es #museoweb\",\"created_at\":\"Tue Oct 18 16:03:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[51,60]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327482554130433\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2009,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327482554130433}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3511000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2f05211d-3924-4a14-bea5-5f514fe8f00a-126327482554130433" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "5 principes fondateurs : encyclopedie, neutralité de pt de vue, licence libre, organisation sociale, et ps d'autres règles #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: 5 principes fondateurs : encyclopedie, neutralité de pt de vue, licence libre, organisation sociale, et ps d'autres règles #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3588000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"5 principes fondateurs : encyclopedie, neutralit\\u00e9 de pt de vue, licence libre, organisation sociale, et ps d'autres r\\u00e8gles #museoweb\",\"created_at\":\"Tue Oct 18 16:04:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[123,132]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327803917500416\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2010,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327803917500416}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3588000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0412b482-e00a-43bd-9590-4ab4d4ca3a4c-126327803917500416" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Wiktionnaire: 2 million d'entrées.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Wiktionnaire: 2 million d'entrées.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3602000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wiktionnaire: 2 million d'entr\\u00e9es.\",\"created_at\":\"Tue Oct 18 16:04:44 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327865980616704\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7501,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327865980616704}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3602000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a2c05bab-1152-4e2c-9cce-e37f79f253b6-126327865980616704" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"#wikipedia cherche la neutralité de point de vue\" -- illusoire, et je trouve en contradiction avec l'espace de discussion.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"#wikipedia cherche la neutralité de point de vue\" -- illusoire, et je trouve en contradiction avec l'espace de discussion.", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3604000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"#wikipedia cherche la neutralit\\u00e9 de point de vue\\\" -- illusoire, et je trouve en contradiction avec l'espace de discussion.\",\"created_at\":\"Tue Oct 18 16:04:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[11,21]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327872343379969\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7502,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327872343379969}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3604000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3888bce4-d9b5-4d17-9569-3ddcea0f15a7-126327872343379969" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@AdrienneAlix en direct ici http://t.co/oDrL2O41 au #museoweb #wikimedia #wikipedia", + "img": { + "src": "http://a1.twimg.com/profile_images/1565805073/299895_10150306024224639_207251779638_8073973_1796135049_n_normal.jpg" + }, + "title": "DianeDrubay|Buzzeum: @AdrienneAlix en direct ici http://t.co/oDrL2O41 au #museoweb #wikimedia #wikipedia", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3649000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"AdrienneAlix\",\"in_reply_to_user_id\":53406902,\"text\":\"@AdrienneAlix en direct ici http:\\/\\/t.co\\/oDrL2O41 au #museoweb #wikimedia #wikipedia\",\"created_at\":\"Tue Oct 18 16:05:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[52,61]},{\"text\":\"wikimedia\",\"indices\":[62,72]},{\"text\":\"wikipedia\",\"indices\":[73,83]}],\"user_mentions\":[{\"indices\":[0,13],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[28,48],\"url\":\"http:\\/\\/t.co\\/oDrL2O41\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"53406902\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328062336970753\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"faa800\",\"created_at\":\"Sun Nov 25 20:41:30 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/312263247\\/buzzeum_twitter-background.jpg\",\"followers_count\":2032,\"description\":\"Agence de communication culturelle nouveaux m\\u00e9dias et blogueuse depuis 2007\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.buzzeum.com\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/312263247\\/buzzeum_twitter-background.jpg\",\"favourites_count\":50,\"id_str\":\"10569112\",\"listed_count\":172,\"friends_count\":1140,\"profile_link_color\":\"878787\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1565805073\\/299895_10150306024224639_207251779638_8073973_1796135049_n_normal.jpg\",\"screen_name\":\"DianeDrubay\",\"name\":\"DianeDrubay|Buzzeum\",\"default_profile\":false,\"statuses_count\":2189,\"verified\":false,\"profile_background_color\":\"f2f2f2\",\"id\":10569112,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1565805073\\/299895_10150306024224639_207251779638_8073973_1796135049_n_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328062336970753}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3649000, + "tags": [ + { + "id-ref": "997c01dc-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997cea3e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997cea3e-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f24e2d4e-acb2-4f8b-8705-da594c698553-126328062336970753" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "s'en va retrouver la #NCO pour suivre ensemble le livetweet de #museoweb. Ou pas...", + "img": { + "src": "http://a3.twimg.com/profile_images/1400384605/Kergarat_v_lo_normal.jpg" + }, + "title": "Pymouss: s'en va retrouver la #NCO pour suivre ensemble le livetweet de #museoweb. Ou pas...", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3745000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"s'en va retrouver la #NCO pour suivre ensemble le livetweet de #museoweb. Ou pas...\",\"created_at\":\"Tue Oct 18 16:07:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"NCO\",\"indices\":[21,25]},{\"text\":\"museoweb\",\"indices\":[63,72]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328463874469888\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Sat Apr 11 13:26:15 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/151596582\\/Rennes_090624-10a.jpg\",\"followers_count\":438,\"description\":\"Wikip\\u00e9dien, wikim\\u00e9dien, libriste, OSMiste.\\r\\nRennais et bretonnant d\\u00e9butant.\\r\\nPhotographe amateur de choses sans int\\u00e9r\\u00eat.\\r\\nEt plein d'autres choses\\u2026\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/pymouss.blogspot.com\\/\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/151596582\\/Rennes_090624-10a.jpg\",\"favourites_count\":0,\"id_str\":\"30446524\",\"listed_count\":76,\"friends_count\":300,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Rennes\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1400384605\\/Kergarat_v_lo_normal.jpg\",\"screen_name\":\"Pymouss\",\"name\":\"Pymouss\",\"default_profile\":false,\"statuses_count\":8015,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":30446524,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/1400384605\\/Kergarat_v_lo_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328463874469888}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3745000, + "tags": [ + { + "id-ref": "997cea3e-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "95ac111a-66a6-437d-80bf-2b7d9ead5dd9-126328463874469888" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", + "img": { + "src": "http://a2.twimg.com/profile_images/1158679288/modem-usr-courier_normal.jpg" + }, + "title": "Stéphane Bortzmeyer: RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3748000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:07:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[89,101]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[102,115],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twmode.sf.net\\/\\\" rel=\\\"nofollow\\\"\\u003Etwmode\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328477401104386\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:01:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[75,87]}],\"user_mentions\":[{\"indices\":[88,101],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326944408158208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1605,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126326944408158208},\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Fri Sep 18 12:06:45 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":2164,\"description\":\"Indig\\u00e8ne de l'Internet, pas encore Civilis\\u00e9.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.bortzmeyer.org\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":2,\"id_str\":\"75263632\",\"listed_count\":166,\"friends_count\":648,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\",\"screen_name\":\"bortzmeyer\",\"name\":\"St\\u00e9phane Bortzmeyer\",\"statuses_count\":16920,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":75263632,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328477401104386}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3748000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f0cac747-4b4a-4141-b092-4de05e240866-126328477401104386" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Types d'utilisateurs : anonymes, utilisateurs, administrateurs, arbitres et patrouilleurs, bureaucrates et stewards #museoweb #Wikipédia", + "img": { + "src": "None" + }, + "title": "C/blog: Types d'utilisateurs : anonymes, utilisateurs, administrateurs, arbitres et patrouilleurs, bureaucrates et stewards #museoweb #Wikipédia", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3753000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Types d'utilisateurs : anonymes, utilisateurs, administrateurs, arbitres et patrouilleurs, bureaucrates et stewards #museoweb #Wikip\\u00e9dia\",\"created_at\":\"Tue Oct 18 16:07:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[116,125]},{\"text\":\"Wikip\\u00e9dia\",\"indices\":[126,136]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328498171289600\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2011,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328498171289600}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3753000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fa66c15e-2d0e-4eef-a5f7-ec9187d80b1c-126328498171289600" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb les administrateurs de WP n'ont pas un pouvoir éditorial mais un pouvoir technique de police", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb les administrateurs de WP n'ont pas un pouvoir éditorial mais un pouvoir technique de police", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3765000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb les administrateurs de WP n'ont pas un pouvoir \\u00e9ditorial mais un pouvoir technique de police\",\"created_at\":\"Tue Oct 18 16:07:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328548523900928\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1606,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328548523900928}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3765000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "27988d58-da30-445e-8b86-683c31c57d66-126328548523900928" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", + "img": { + "src": "http://a2.twimg.com/profile_images/1158679288/modem-usr-courier_normal.jpg" + }, + "title": "Stéphane Bortzmeyer: RT @figoblog: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3784000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:07:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[89,102],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twmode.sf.net\\/\\\" rel=\\\"nofollow\\\"\\u003Etwmode\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328629050347520\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 1,162 millions d'articles dans Wikipedia francophone aujourd'hui @AdrienneAlix\",\"created_at\":\"Tue Oct 18 15:59:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[75,88],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326624584089601\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1606,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126326624584089601},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Fri Sep 18 12:06:45 +0000 2009\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":2164,\"description\":\"Indig\\u00e8ne de l'Internet, pas encore Civilis\\u00e9.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.bortzmeyer.org\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":2,\"id_str\":\"75263632\",\"listed_count\":166,\"friends_count\":648,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\",\"screen_name\":\"bortzmeyer\",\"name\":\"St\\u00e9phane Bortzmeyer\",\"statuses_count\":16921,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":75263632,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126328629050347520}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3784000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b8983d50-2fb0-4edc-8345-5343c35bc378-126328629050347520" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix présente les pouvoirs dans #wikipedia, élus par les contributeurs. Mais quelle organisation sociale au-delà ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix présente les pouvoirs dans #wikipedia, élus par les contributeurs. Mais quelle organisation sociale au-delà ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3792000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les pouvoirs dans #wikipedia, \\u00e9lus par les contributeurs. Mais quelle organisation sociale au-del\\u00e0 ??\",\"created_at\":\"Tue Oct 18 16:07:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[51,61]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328659345817600\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7503,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328659345817600}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3792000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3d29e464-e8c2-407f-ae77-d306736cc91c-126328659345817600" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb arbitres = pouvoir de justice sur les problèmes d'entente entre contributeurs.", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb arbitres = pouvoir de justice sur les problèmes d'entente entre contributeurs.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3826000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb arbitres = pouvoir de justice sur les probl\\u00e8mes d'entente entre contributeurs.\",\"created_at\":\"Tue Oct 18 16:08:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328804745547776\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1607,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328804745547776}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3826000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c390f2dc-e588-49d1-af27-08a3bde71658-126328804745547776" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Peut-on dire que #wikipedia est responsable des savoirs et de ses instances de régulation devant les citoyens ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Peut-on dire que #wikipedia est responsable des savoirs et de ses instances de régulation devant les citoyens ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3857000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Peut-on dire que #wikipedia est responsable des savoirs et de ses instances de r\\u00e9gulation devant les citoyens ??\",\"created_at\":\"Tue Oct 18 16:08:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[27,37]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328933087055872\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7504,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328933087055872}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3857000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1530c1ad-ca7f-49f6-a6d5-1d21f464c6d0-126328933087055872" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3872000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[108,121],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328994860769280\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1608,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126328994860769280}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3872000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d6dbf1b7-aef7-4da4-bc81-3aa3e9e13917-126328994860769280" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix présente les robots comme un type de contributeur. #transhumanisme ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix présente les robots comme un type de contributeur. #transhumanisme ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3899000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les robots comme un type de contributeur. #transhumanisme ++\",\"created_at\":\"Tue Oct 18 16:09:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"transhumanisme\",\"indices\":[75,90]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329110782943233\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"default_profile\":true,\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7505,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329110782943233}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3899000, + "tags": [ + { + "id-ref": "997d0898-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "67327064-15a8-47d3-b8c6-80c8431c620a-126329110782943233" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Ce sont actuellement les robots qui font le plus de contributions. Certains apportent même maintenant des contenus\"", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Ce sont actuellement les robots qui font le plus de contributions. Certains apportent même maintenant des contenus\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3934000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Ce sont actuellement les robots qui font le plus de contributions. Certains apportent m\\u00eame maintenant des contenus\\\"\",\"created_at\":\"Tue Oct 18 16:10:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329255314464769\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7506,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329255314464769}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3934000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6a7075c2-0f39-4063-aaa0-dfc4b6e1fdcb-126329255314464769" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb les robots sont ceux qui font le plus de contributions (pas forcement qui apportent le plus de contenus) ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb les robots sont ceux qui font le plus de contributions (pas forcement qui apportent le plus de contenus) ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3946000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb les robots sont ceux qui font le plus de contributions (pas forcement qui apportent le plus de contenus) ++\",\"created_at\":\"Tue Oct 18 16:10:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329305713225728\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1609,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329305713225728}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3946000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "353b1fa8-f80d-4b0a-915f-9e1bb2af005e-126329305713225728" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@gonzagauthier Pourquoi illusoire ? Tt fonctionne ainsi. Et établir cet état de la connaissance/balance nécessite de se parler #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: @gonzagauthier Pourquoi illusoire ? Tt fonctionne ainsi. Et établir cet état de la connaissance/balance nécessite de se parler #museoweb", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3953000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier Pourquoi illusoire ? Tt fonctionne ainsi. Et \\u00e9tablir cet \\u00e9tat de la connaissance\\/balance n\\u00e9cessite de se parler #museoweb\",\"created_at\":\"Tue Oct 18 16:10:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[127,136]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126327872343379969\",\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329334842667008\",\"in_reply_to_status_id\":126327872343379969,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12060,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329334842667008}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3953000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "eb6e3f25-a914-46ac-9abd-ddea86ea6ebe-126329334842667008" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Quelle place peut tenir le web social + #semantique dans la recherche sur l'intelligence artificielle ?", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Quelle place peut tenir le web social + #semantique dans la recherche sur l'intelligence artificielle ?", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3972000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Quelle place peut tenir le web social + #semantique dans la recherche sur l'intelligence artificielle ?\",\"created_at\":\"Tue Oct 18 16:10:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"semantique\",\"indices\":[50,61]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329416979726336\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"default_profile\":true,\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7507,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329416979726336}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3972000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f02d4f2d-a736-4cbc-969b-ea2b71912323-126329416979726336" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Wikipédia, ce sont 15 000 contributeurs actifs par mois & 1 million de comptes crées en France depuis sa création #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Wikipédia, ce sont 15 000 contributeurs actifs par mois & 1 million de comptes crées en France depuis sa création #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 3977000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Wikip\\u00e9dia, ce sont 15 000 contributeurs actifs par mois & 1 million de comptes cr\\u00e9es en France depuis sa cr\\u00e9ation #museoweb\",\"created_at\":\"Tue Oct 18 16:10:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[115,124]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329437313695744\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2012,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329437313695744}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 3977000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2f65975e-f612-4aa9-b098-38dd41fe098f-126329437313695744" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb 180 administrateurs (police), adminstrateurs (justice), patrouilleurs (jardiniers),bureaucrates, robots,une hiérachie non-dite??", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb 180 administrateurs (police), adminstrateurs (justice), patrouilleurs (jardiniers),bureaucrates, robots,une hiérachie non-dite??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4015000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 180 administrateurs (police), adminstrateurs (justice), patrouilleurs (jardiniers),bureaucrates, robots,une hi\\u00e9rachie non-dite??\",\"created_at\":\"Tue Oct 18 16:11:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329596927942657\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"default_profile\":true,\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":358,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329596927942657}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4015000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d3a95650-1a9b-401b-879b-d160472a316e-126329596927942657" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb point #victorhugo pour @AdrienneAlix :-)", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb point #victorhugo pour @AdrienneAlix :-)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4072000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb point #victorhugo pour @AdrienneAlix :-)\",\"created_at\":\"Tue Oct 18 16:12:34 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"victorhugo\",\"indices\":[16,27]}],\"user_mentions\":[{\"indices\":[33,46],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126329835449626624\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1610,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126329835449626624}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4072000, + "tags": [ + { + "id-ref": "997df30c-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "79ed82f6-3913-4f1d-b811-381f7b22459b-126329835449626624" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", + "img": { + "src": "http://a2.twimg.com/profile_images/1158679288/modem-usr-courier_normal.jpg" + }, + "title": "Stéphane Bortzmeyer: RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4127000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:13:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id_str\":\"8814092\",\"id\":8814092},{\"indices\":[122,135],\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id_str\":\"53406902\",\"id\":53406902}],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twmode.sf.net\\/\\\" rel=\\\"nofollow\\\"\\u003Etwmode\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126330065230372864\",\"user\":{\"statuses_count\":16927,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"default_profile\":true,\"profile_background_tile\":false,\"created_at\":\"Fri Sep 18 12:06:45 +0000 2009\",\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Indig\\u00e8ne de l'Internet, pas encore Civilis\\u00e9.\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":\"http:\\/\\/www.bortzmeyer.org\\/\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":2164,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":2,\"screen_name\":\"bortzmeyer\",\"name\":\"St\\u00e9phane Bortzmeyer\",\"id_str\":\"75263632\",\"listed_count\":166,\"friends_count\":648,\"profile_link_color\":\"0084B4\",\"id\":75263632,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1158679288\\/modem-usr-courier_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126330065230372864,\"retweeted_status\":{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[108,121],\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id_str\":\"53406902\",\"id\":53406902}],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126328994860769280\",\"user\":{\"statuses_count\":1610,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"default_profile\":false,\"profile_background_tile\":true,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"profile_sidebar_fill_color\":\"e0ff92\",\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"url\":\"http:\\/\\/www.figoblog.org\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",\"protected\":false,\"location\":\"Paris\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"id\":8814092,\"utc_offset\":-10800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126328994860769280}}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4127000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2634e0f0-0857-4d06-8722-9c9764a078b3-126330065230372864" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@RemiMathis Car même un consensus n'est pas neutre. Et une étude des pages de discussion doit montrer des tensions culturelles. #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: @RemiMathis Car même un consensus n'est pas neutre. Et une étude des pages de discussion doit montrer des tensions culturelles. #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4153000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"@RemiMathis Car m\\u00eame un consensus n'est pas neutre. Et une \\u00e9tude des pages de discussion doit montrer des tensions culturelles. #museoweb\",\"created_at\":\"Tue Oct 18 16:13:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[128,137]}],\"user_mentions\":[{\"indices\":[0,11],\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id_str\":\"29508165\",\"id\":29508165}],\"urls\":[]},\"in_reply_to_screen_name\":\"RemiMathis\",\"in_reply_to_user_id\":29508165,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":\"29508165\",\"contributors\":null,\"id_str\":\"126330175586709505\",\"user\":{\"statuses_count\":7508,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"fr\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":null,\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"id\":136900327,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"in_reply_to_status_id\":null,\"id\":126330175586709505}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4153000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "cd835fa7-8823-4c63-84c8-24cf42fc0e79-126330175586709505" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ingérable @AdrienneAlix ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4184000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:14:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[122,135],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126330303026446336\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb patrouilleurs : sans jardinage permanent des contenus, Wikipedia deviendrait rapidement ing\\u00e9rable @AdrienneAlix ++\",\"created_at\":\"Tue Oct 18 16:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[108,121],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126328994860769280\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1610,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126328994860769280},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2011,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126330303026446336}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4184000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f007b153-28b4-4931-9718-034cb97f3f29-126330303026446336" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix présente le fonctionnement dans #wikipedia de la création de liens entre contenus, dans la lignée de Stiegler.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix présente le fonctionnement dans #wikipedia de la création de liens entre contenus, dans la lignée de Stiegler.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4297000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente le fonctionnement dans #wikipedia de la cr\\u00e9ation de liens entre contenus, dans la lign\\u00e9e de Stiegler.\",\"created_at\":\"Tue Oct 18 16:16:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[56,66]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126330777393836032\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7509,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126330777393836032}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4297000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b4c11a1a-62d7-48b8-84d1-a800bc2b2e69-126330777393836032" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb In fine, une notice pourrait être composée entièrement de lien !!! Y a t il une modération à ce niveau ??", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb In fine, une notice pourrait être composée entièrement de lien !!! Y a t il une modération à ce niveau ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4340000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb In fine, une notice pourrait \\u00eatre compos\\u00e9e enti\\u00e8rement de lien !!! Y a t il une mod\\u00e9ration \\u00e0 ce niveau ??\",\"created_at\":\"Tue Oct 18 16:17:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126330959124639744\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"default_profile\":true,\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":359,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126330959124639744}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4340000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d7054900-c216-4a1d-9a60-7553c350dbc6-126330959124639744" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Wikipédia \"Liens qui vont permettre au lecteur un parcours d’opportunité\" C'est tt le charme des encyclopédie !", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb Wikipédia \"Liens qui vont permettre au lecteur un parcours d’opportunité\" C'est tt le charme des encyclopédie !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4370000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wikip\\u00e9dia \\\"Liens qui vont permettre au lecteur un parcours d\\u2019opportunit\\u00e9\\\" C'est tt le charme des encyclop\\u00e9die !\",\"created_at\":\"Tue Oct 18 16:17:32 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331084878249984\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":35,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331084878249984}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4370000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4ae64354-71bc-4281-85e6-f145cfeddbba-126331084878249984" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Liens d'opportunité\" qui créent un réseau de connaissance anti-éditorial, personnel, qui contrent le savoir=pouvoir.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Liens d'opportunité\" qui créent un réseau de connaissance anti-éditorial, personnel, qui contrent le savoir=pouvoir.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4435000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Liens d'opportunit\\u00e9\\\" qui cr\\u00e9ent un r\\u00e9seau de connaissance anti-\\u00e9ditorial, personnel, qui contrent le savoir=pouvoir.\",\"created_at\":\"Tue Oct 18 16:18:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331356182618112\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7510,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331356182618112}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4435000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4f587987-d48d-4c4c-9ee7-d8806c36020d-126331356182618112" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": ".@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4443000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\".@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/lFrsriQC :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:18:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[99,108]}],\"user_mentions\":[{\"indices\":[1,14],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[74,94],\"url\":\"http:\\/\\/t.co\\/lFrsriQC\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331392534646784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12063,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331392534646784}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4443000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "20f405dd-83f4-460f-9c8c-bd7a49c0657a-126331392534646784" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Sans hyperlien nous sommes perdu dans le monde social du Web !!++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Sans hyperlien nous sommes perdu dans le monde social du Web !!++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4475000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Sans hyperlien nous sommes perdu dans le monde social du Web !!++\",\"created_at\":\"Tue Oct 18 16:19:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331525670248448\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":359,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331525670248448}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4475000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7dd2cc7d-4987-424b-a259-e12d700ccbd7-126331525670248448" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un livre non catalogué !", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un livre non catalogué !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4475000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb pas de politique \\u00e9ditoriale sur les liens, mais un article sans lien est \\\"orphelin\\\" : il est perdu, comme un livre non catalogu\\u00e9 !\",\"created_at\":\"Tue Oct 18 16:19:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331527222136833\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1611,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331527222136833}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4475000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c390ae2e-efc0-46ae-bfa9-18f91d3e7c6f-126331527222136833" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Adrienne Alix : \"Un article qui n'est pas lié est perdu.\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Adrienne Alix : \"Un article qui n'est pas lié est perdu.\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4502000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : \\\"Un article qui n'est pas li\\u00e9 est perdu.\\\" #museoweb\",\"created_at\":\"Tue Oct 18 16:19:44 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[58,67]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331638497017856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2013,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331638497017856}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4502000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0b1eb04a-9368-495a-94f0-d87f9e1fb189-126331638497017856" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4538000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\\\" @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:20:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[100,113],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331790033039360\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1612,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331790033039360}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4538000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f16af770-d0b7-46fc-9d5b-82fe7cbfcd90-126331790033039360" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Création de portails Culture.fr sur Wikipedia : un beau projet++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Création de portails Culture.fr sur Wikipedia : un beau projet++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4579000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb Cr\\u00e9ation de portails Culture.fr sur Wikipedia : un beau projet++\",\"created_at\":\"Tue Oct 18 16:21:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126331963362652160\",\"user\":{\"statuses_count\":361,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"geo_enabled\":false,\"profile_use_background_image\":true,\"default_profile\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris, France\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"id\":68424173,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126331963362652160}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4579000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3e828121-1578-4f54-aed3-1e22a8f128b1-126331963362652160" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un liv ...", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @figoblog: #museoweb pas de politique éditoriale sur les liens, mais un article sans lien est \"orphelin\" : il est perdu, comme un liv ...", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4586000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb pas de politique \\u00e9ditoriale sur les liens, mais un article sans lien est \\\"orphelin\\\" : il est perdu, comme un liv ...\",\"created_at\":\"Tue Oct 18 16:21:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331989853863936\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb pas de politique \\u00e9ditoriale sur les liens, mais un article sans lien est \\\"orphelin\\\" : il est perdu, comme un livre non catalogu\\u00e9 !\",\"created_at\":\"Tue Oct 18 16:19:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331527222136833\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1612,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126331527222136833},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2013,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":true,\"id\":126331989853863936}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4586000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3aa58843-5809-4687-a198-e26b74812b72-126331989853863936" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @figoblog: #museoweb \"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\" @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4596000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb \\\"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\\\" @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:21:18 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[114,127],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332034368028672\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"la philosophie est le portail ultime. On finit toujours par arriver sur la philosophie.\\\" @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:20:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[100,113],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331790033039360\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1612,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331790033039360},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2014,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332034368028672}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4596000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "cbd0359c-eb6b-42fe-8032-941f15724817-126332034368028672" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix présente les portails, les catégories. Comment peut-on rediscuter collectivement ces systèmes dans #wikipedia ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix présente les portails, les catégories. Comment peut-on rediscuter collectivement ces systèmes dans #wikipedia ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4623000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix pr\\u00e9sente les portails, les cat\\u00e9gories. Comment peut-on rediscuter collectivement ces syst\\u00e8mes dans #wikipedia ??\",\"created_at\":\"Tue Oct 18 16:21:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[123,133]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332147580669953\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7511,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332147580669953}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4623000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b7c4b725-b6b0-4043-a0f9-4228244d6649-126332147580669953" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "On sent l'influence des bibliothécaires sur Wikipédia à la récurrence des points Victor Hugo :-) #museoweb (cc @figoblog @adrienneAlix)", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: On sent l'influence des bibliothécaires sur Wikipédia à la récurrence des points Victor Hugo :-) #museoweb (cc @figoblog @adrienneAlix)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4647000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"On sent l'influence des biblioth\\u00e9caires sur Wikip\\u00e9dia \\u00e0 la r\\u00e9currence des points Victor Hugo :-) #museoweb (cc @figoblog @adrienneAlix)\",\"created_at\":\"Tue Oct 18 16:22:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[97,106]}],\"user_mentions\":[{\"indices\":[111,120],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[121,134],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332248600494080\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12064,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332248600494080}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4647000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ced68d2d-d502-4fe7-aca1-f6e3fff2cd35-126332248600494080" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb et de deux ! #pointVictorHugo @AdrienneAlix bravo :-)", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb et de deux ! #pointVictorHugo @AdrienneAlix bravo :-)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4654000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb et de deux ! #pointVictorHugo @AdrienneAlix bravo :-)\",\"created_at\":\"Tue Oct 18 16:22:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"pointVictorHugo\",\"indices\":[23,39]}],\"user_mentions\":[{\"indices\":[40,53],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332276123500546\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1614,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332276123500546}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4654000, + "tags": [ + { + "id-ref": "997eaa72-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "39609c2e-7f65-4227-a15c-192f796220ce-126332276123500546" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Car catégories et portails créent beaucoup de pouvoir sur les contenus. @AdrienneAlix explique qu'elles se créent collectivement.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Car catégories et portails créent beaucoup de pouvoir sur les contenus. @AdrienneAlix explique qu'elles se créent collectivement.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4675000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Car cat\\u00e9gories et portails cr\\u00e9ent beaucoup de pouvoir sur les contenus. @AdrienneAlix explique qu'elles se cr\\u00e9ent collectivement.\",\"created_at\":\"Tue Oct 18 16:22:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[82,95],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332364522659840\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7512,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332364522659840}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4675000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "36e39734-77df-425a-9df7-77891b3bcb6c-126332364522659840" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Car catégories et portails créent beaucoup de pouvoir sur contenus. @AdrienneAlix explique qu'elles se créent collectivement ++.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Car catégories et portails créent beaucoup de pouvoir sur contenus. @AdrienneAlix explique qu'elles se créent collectivement ++.", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4683000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Car cat\\u00e9gories et portails cr\\u00e9ent beaucoup de pouvoir sur contenus. @AdrienneAlix explique qu'elles se cr\\u00e9ent collectivement ++.\",\"created_at\":\"Tue Oct 18 16:22:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[78,91],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332399180189696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7513,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332399180189696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4683000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "422e4890-6ae8-4537-8ffd-aa5ce16ec52e-126332399180189696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vincentpuig: #museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", + "img": { + "src": "http://a2.twimg.com/profile_images/1444079862/image_normal.jpg" + }, + "title": "jean louis Frechin: RT @vincentpuig: #museoweb Le Web sémantique serait l'analytique et le web social le synthétique (le social peut aussi être analytique)--", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4761000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb Le Web s\\u00e9mantique serait l'analytique et le web social le synth\\u00e9tique (le social peut aussi \\u00eatre analytique)--\",\"created_at\":\"Tue Oct 18 16:24:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332726155542529\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Le Web s\\u00e9mantique serait l'analytique et le web social le synth\\u00e9tique (le social peut aussi \\u00eatre analytique)--\",\"created_at\":\"Tue Oct 18 15:44:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126322889908682752\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":361,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126322889908682752},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Thu May 01 11:37:17 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Lisbon\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"followers_count\":2032,\"description\":\"design num\\u00e9rique, produits, services, innovation & pens\\u00e9es autour du design. Et encore plus http:\\/\\/www.nodesignlab.net\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.nodesign.net\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"favourites_count\":65,\"id_str\":\"14613124\",\"listed_count\":195,\"friends_count\":707,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"38.717470,-9.153256\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\",\"screen_name\":\"nodesign\",\"name\":\"jean louis Frechin\",\"statuses_count\":9849,\"verified\":false,\"profile_background_color\":\"0d0f1a\",\"id\":14613124,\"profile_background_tile\":true,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126332726155542529}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4761000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "47da07ac-9b45-465a-8ce0-5a530d046577-126332726155542529" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Les catégories, une ontologie dynamique, ce sont les orages sémantiques de B. Stiegler !++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Les catégories, une ontologie dynamique, ce sont les orages sémantiques de B. Stiegler !++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4765000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"text\":\"#museoweb Les cat\\u00e9gories, une ontologie dynamique, ce sont les orages s\\u00e9mantiques de B. Stiegler !++\",\"created_at\":\"Tue Oct 18 16:24:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"place\":null,\"geo\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"id_str\":\"126332742601412608\",\"user\":{\"statuses_count\":362,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_tile\":false,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"follow_request_sent\":null,\"following\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"geo_enabled\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"protected\":false,\"location\":\"Paris, France\",\"is_translator\":false,\"notifications\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"id\":68424173,\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"in_reply_to_status_id\":null,\"id\":126332742601412608}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4765000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e85052a9-dbd5-47a2-a705-54bb41a3aef1-126332742601412608" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @AdrienneAlix montre l'exemple de l'enjeu intellectuel ou légal des catégorie: origines ethniques et religieuses, etc. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @AdrienneAlix montre l'exemple de l'enjeu intellectuel ou légal des catégorie: origines ethniques et religieuses, etc. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4773000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @AdrienneAlix montre l'exemple de l'enjeu intellectuel ou l\\u00e9gal des cat\\u00e9gorie: origines ethniques et religieuses, etc. ++\",\"created_at\":\"Tue Oct 18 16:24:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,23],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332776961159168\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7514,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332776961159168}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4773000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1d96c5bd-8d8a-4082-8ad0-f485e91b13df-126332776961159168" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb les classifications posent des questions éthiques : qui mettre dans une catégorie \"dictateurs\" ou \"écrivain juif\" ?", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb les classifications posent des questions éthiques : qui mettre dans une catégorie \"dictateurs\" ou \"écrivain juif\" ?", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4810000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb les classifications posent des questions \\u00e9thiques : qui mettre dans une cat\\u00e9gorie \\\"dictateurs\\\" ou \\\"\\u00e9crivain juif\\\" ?\",\"created_at\":\"Tue Oct 18 16:24:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332929126301696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1615,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332929126301696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4810000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6e41770b-7c57-43fa-8998-a5fc7a098426-126332929126301696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb http://t.co/X0cwHJ8Q on peut suivre de chez soi le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", + "img": { + "src": "http://a1.twimg.com/profile_images/1578535119/DylanGlaser_normal.jpg" + }, + "title": "lizarewind: #museoweb http://t.co/X0cwHJ8Q on peut suivre de chez soi le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4823000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb http:\\/\\/t.co\\/X0cwHJ8Q on peut suivre de chez soi le s\\u00e9minaire \\\"Mus\\u00e9ologie, mus\\u00e9ographie et nouvelles formes d\\u2019adresse au public\\\"\",\"created_at\":\"Tue Oct 18 16:25:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[10,30],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126332986508587008\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":550,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":641,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"default_profile\":false,\"statuses_count\":5535,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126332986508587008}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4823000, + "tags": [ + { + "id-ref": "99807532-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d35a9bf8-d190-4b3c-8c7a-9633066c2133-126332986508587008" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "“@vincentpuig: #museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++” #fablab #open +++", + "img": { + "src": "http://a2.twimg.com/profile_images/1444079862/image_normal.jpg" + }, + "title": "jean louis Frechin: “@vincentpuig: #museoweb Une oeuvre d'art dépasse mon jugement analytique, elle est improbable++” #fablab #open +++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4833000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\u201c@vincentpuig: #museoweb Une oeuvre d'art d\\u00e9passe mon jugement analytique, elle est improbable++\\u201d #fablab #open +++\",\"created_at\":\"Tue Oct 18 16:25:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]},{\"text\":\"fablab\",\"indices\":[98,105]},{\"text\":\"open\",\"indices\":[106,111]}],\"user_mentions\":[{\"indices\":[1,13],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333026144759808\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Thu May 01 11:37:17 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Lisbon\",\"profile_sidebar_border_color\":\"181A1E\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"followers_count\":2032,\"description\":\"design num\\u00e9rique, produits, services, innovation & pens\\u00e9es autour du design. Et encore plus http:\\/\\/www.nodesignlab.net\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.nodesign.net\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/289235654\\/Invitation_Vernissage_Public_-_Objets_du_Num_rique_-_Studio_B___C_72.jpg\",\"favourites_count\":65,\"id_str\":\"14613124\",\"listed_count\":195,\"friends_count\":707,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"38.717470,-9.153256\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\",\"screen_name\":\"nodesign\",\"name\":\"jean louis Frechin\",\"statuses_count\":9850,\"verified\":false,\"profile_background_color\":\"0d0f1a\",\"id\":14613124,\"profile_background_tile\":true,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1444079862\\/image_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333026144759808}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4833000, + "tags": [ + { + "id-ref": "998143a4-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998143a4-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b1e1fe00-64ea-41f7-82db-a0713ab324ad-126333026144759808" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4855000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-) ++\",\"created_at\":\"Tue Oct 18 16:25:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333121347076097\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1616,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333121347076097}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4855000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "cf2071e3-285b-4942-8d25-bfa94c380a5b-126333121347076097" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"L'infobox est une recherche de rationnel dans l'article #wikipedia.\"", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"L'infobox est une recherche de rationnel dans l'article #wikipedia.\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4856000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"L'infobox est une recherche de rationnel dans l'article #wikipedia.\\\"\",\"created_at\":\"Tue Oct 18 16:25:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[67,77]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333122089455617\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7515,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333122089455617}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4856000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "85eb9f12-2739-4879-81eb-a273444537ad-126333122089455617" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb En pratique, sur wikipédia le système des catégories est très insatisfaisant. Ce n'est pas le point fort du système. --", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb En pratique, sur wikipédia le système des catégories est très insatisfaisant. Ce n'est pas le point fort du système. --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4877000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb En pratique, sur wikip\\u00e9dia le syst\\u00e8me des cat\\u00e9gories est tr\\u00e8s insatisfaisant. Ce n'est pas le point fort du syst\\u00e8me. --\",\"created_at\":\"Tue Oct 18 16:25:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333210425696256\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":36,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333210425696256}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4877000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b494db4a-a3de-4e9a-90d5-be3dfe680e5b-126333210425696256" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Les infobox : la notice dynamique, mais aussi la puissance du formulaire !++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Les infobox : la notice dynamique, mais aussi la puissance du formulaire !++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4885000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Les infobox : la notice dynamique, mais aussi la puissance du formulaire !++\",\"created_at\":\"Tue Oct 18 16:26:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333247079714818\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":true,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":363,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333247079714818}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4885000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1153fee8-514c-42a8-bc6c-fb8a1649ec6b-126333247079714818" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Metadonnées des images sur wikipédia : comment les intégrer au fichier, et utiliser quelques standard ? ??", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb Metadonnées des images sur wikipédia : comment les intégrer au fichier, et utiliser quelques standard ? ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4923000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Metadonn\\u00e9es des images sur wikip\\u00e9dia\\u00a0: comment les int\\u00e9grer au fichier, et utiliser quelques standard\\u00a0? ??\",\"created_at\":\"Tue Oct 18 16:26:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333405007855616\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"default_profile\":false,\"statuses_count\":37,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333405007855616}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4923000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fb997020-2298-45c5-8128-37962bed3b33-126333405007855616" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Une image sans description est une image sans intérêt\" Bientôt de la reconnaissance d'image pour rapprocher des ressemblances ??", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Une image sans description est une image sans intérêt\" Bientôt de la reconnaissance d'image pour rapprocher des ressemblances ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 4924000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Une image sans description est une image sans int\\u00e9r\\u00eat\\\" Bient\\u00f4t de la reconnaissance d'image pour rapprocher des ressemblances ??\",\"created_at\":\"Tue Oct 18 16:26:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333410405924864\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"default_profile\":true,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7516,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333410405924864}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 4924000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "43ba84f1-7f54-424c-a54a-cff881274003-126333410405924864" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: RT @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-) ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5033000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-) ++\",\"created_at\":\"Tue Oct 18 16:28:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333867496976384\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-) ++\",\"created_at\":\"Tue Oct 18 16:25:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333121347076097\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1616,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333121347076097},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"default_profile\":false,\"statuses_count\":12065,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333867496976384}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5033000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "43d1a4b4-43a3-4314-b8e9-8c0253acb321-126333867496976384" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb gallerie d'images sur wikicommons très frustrante du fait de son organisation hiérarchique --", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb gallerie d'images sur wikicommons très frustrante du fait de son organisation hiérarchique --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5063000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb gallerie d'images sur wikicommons tr\\u00e8s frustrante du fait de son organisation hi\\u00e9rarchique --\",\"created_at\":\"Tue Oct 18 16:29:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126333990704648192\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"default_profile\":false,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":38,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126333990704648192}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5063000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b52ecfa3-d7a6-4699-99f8-6a2c21d2e51e-126333990704648192" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5131000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:30:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[24,34]},{\"text\":\"museoweb\",\"indices\":[91,100]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334278446485505\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2014,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334278446485505}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5131000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c77d1271-f1ce-4b16-87a7-e19403b89375-126334278446485505" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aammonz roi du #teasing :-)", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb @aammonz roi du #teasing :-)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5220000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aammonz roi du #teasing :-)\",\"created_at\":\"Tue Oct 18 16:31:42 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"teasing\",\"indices\":[26,34]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334651685027840\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1617,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334651685027840}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5220000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6a6cbab2-fd37-43aa-b077-3ee44279608e-126334651685027840" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5228000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:31:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[42,52]},{\"text\":\"museoweb\",\"indices\":[109,118]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334685444972545\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:30:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[24,34]},{\"text\":\"museoweb\",\"indices\":[91,100]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334278446485505\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2014,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334278446485505},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2015,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334685444972545}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5228000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "93a92c00-fbc3-4c5d-9517-6169c9fe1ec8-126334685444972545" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Alexandre Monnin : \"combien de webs finalement ?\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Alexandre Monnin : \"combien de webs finalement ?\" #museoweb", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5279000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Alexandre Monnin : \\\"combien de webs finalement ?\\\" #museoweb\",\"created_at\":\"Tue Oct 18 16:32:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[50,59]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334897467031553\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2015,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126334897467031553}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5279000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c99a726c-b748-4898-88a1-5af8009715db-126334897467031553" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb web 1.0, 2.0, 3.0... Mais combien y a t'il de webs ? @aamonnz", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb web 1.0, 2.0, 3.0... Mais combien y a t'il de webs ? @aamonnz", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5315000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb web 1.0, 2.0, 3.0... Mais combien y a t'il de webs ? @aamonnz\",\"created_at\":\"Tue Oct 18 16:33:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[63,71],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335049766408193\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1018,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1618,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335049766408193}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5315000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "51e141e6-76a6-4454-96ac-be19772092c3-126335049766408193" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "A Monnin : le web 0.0 se voulait déjà un web d'écriture et de lecture #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: A Monnin : le web 0.0 se voulait déjà un web d'écriture et de lecture #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5342000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"A Monnin : le web 0.0 se voulait d\\u00e9j\\u00e0 un web d'\\u00e9criture et de lecture #museoweb\",\"created_at\":\"Tue Oct 18 16:33:44 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[70,79]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335163142635523\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2016,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335163142635523}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5342000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3600ffdc-2aec-49d7-a5e5-437f5f991a56-126335163142635523" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Wikipedia prêt à collaborer avec le web sémantique++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Wikipedia prêt à collaborer avec le web sémantique++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5344000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wikipedia pr\\u00eat \\u00e0 collaborer avec le web s\\u00e9mantique++\",\"created_at\":\"Tue Oct 18 16:33:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335171040518144\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":364,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335171040518144}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5344000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4a1db7ff-6f6d-496c-880b-0bf53e495fae-126335171040518144" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb A. Monnin \"Cependant 1.0 pas seulement un web statique, un web de lecture et d’écriture dès le début, donc un web social.\"", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb A. Monnin \"Cependant 1.0 pas seulement un web statique, un web de lecture et d’écriture dès le début, donc un web social.\"", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5349000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb A. Monnin \\\"Cependant 1.0 pas seulement un web statique, un web de lecture et d\\u2019\\u00e9criture d\\u00e8s le d\\u00e9but, donc un web social.\\\"\",\"created_at\":\"Tue Oct 18 16:33:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335193115148288\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":39,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335193115148288}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5349000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "16592b9a-7efc-4475-a7f4-d9677c82979c-126335193115148288" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5396000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz : \\\"le web social n'est pas une \\u00e9tape destin\\u00e9e \\u00e0 \\u00eatre supprim\\u00e9e par la suivante\\\" ++\",\"created_at\":\"Tue Oct 18 16:34:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335387869253632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7517,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335387869253632}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5396000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "653cede8-998b-4ceb-bde2-ec6469deb965-126335387869253632" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", + "img": { + "src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" + }, + "title": "Wikinade: RT @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/lFrsriQC :-D #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5422000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @RemiMathis: .@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/lFrsriQC :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:35:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[115,124]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[17,30],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[90,110],\"url\":\"http:\\/\\/t.co\\/lFrsriQC\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335497948758017\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\".@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/lFrsriQC :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:18:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[99,108]}],\"user_mentions\":[{\"indices\":[1,14],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[74,94],\"url\":\"http:\\/\\/t.co\\/lFrsriQC\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126331392534646784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12066,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126331392534646784},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"statuses_count\":1368,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335497948758017}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5422000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "8a451b58-4bc2-4f62-9046-28545b9fd8ff-126335497948758017" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": ".@aamonnz : « Le web sémantique doit conserver les aspects sociaux » #museoweb #yes", + "img": { + "src": "http://a0.twimg.com/profile_images/127401730/PhotoRM_normal.jpg" + }, + "title": "Rémi Mathis: .@aamonnz : « Le web sémantique doit conserver les aspects sociaux » #museoweb #yes", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5447000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\".@aamonnz : \\u00ab Le web s\\u00e9mantique doit conserver les aspects sociaux \\u00bb #museoweb #yes\",\"created_at\":\"Tue Oct 18 16:35:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[69,78]},{\"text\":\"yes\",\"indices\":[79,83]}],\"user_mentions\":[{\"indices\":[1,9],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335602391121920\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12067,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335602391121920}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5447000, + "tags": [ + { + "id-ref": "99814818-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99833dee-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6ecb0839-7ceb-492c-97d9-f2996d611458-126335602391121920" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "img": { + "src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" + }, + "title": "Wikinade: RT @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5453000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture: Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:35:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[42,52]},{\"text\":\"museoweb\",\"indices\":[109,118]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335627095584768\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:30:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[24,34]},{\"text\":\"museoweb\",\"indices\":[91,100]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126334278446485505\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2016,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126334278446485505},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"default_profile\":false,\"statuses_count\":1369,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126335627095584768}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5453000, + "tags": [ + { + "id-ref": "99833dee-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99833dee-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7dcf4d79-b007-463d-b264-7fce42a1f20d-126335627095584768" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "\"Rien ne dit que le web sémantique doive être auj associable.\" Alexandre Monnin #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: \"Rien ne dit que le web sémantique doive être auj associable.\" Alexandre Monnin #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5469000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"Rien ne dit que le web s\\u00e9mantique doive \\u00eatre auj associable.\\\" Alexandre Monnin #museoweb\",\"created_at\":\"Tue Oct 18 16:35:51 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[80,89]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335695844421632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2017,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335695844421632}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5469000, + "tags": [ + { + "id-ref": "99833dee-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d2d5fa3b-8250-45a4-a4fc-6f517ffe615e-126335695844421632" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vincentpuig: #museoweb Wikipedia prêt à collaborer avec le web sémantique++", + "img": { + "src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" + }, + "title": "Wikinade: RT @vincentpuig: #museoweb Wikipedia prêt à collaborer avec le web sémantique++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5505000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb Wikipedia pr\\u00eat \\u00e0 collaborer avec le web s\\u00e9mantique++\",\"created_at\":\"Tue Oct 18 16:36:27 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335845719490560\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Wikipedia pr\\u00eat \\u00e0 collaborer avec le web s\\u00e9mantique++\",\"created_at\":\"Tue Oct 18 16:33:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335171040518144\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":174,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"default_profile\":true,\"statuses_count\":364,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126335171040518144},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"default_profile\":false,\"statuses_count\":1370,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126335845719490560}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5505000, + "tags": [ + { + "id-ref": "99833dee-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fe39f308-c0ee-4385-888b-32d2832a53ff-126335845719490560" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", + "img": { + "src": "http://a1.twimg.com/profile_images/1583183572/Portrait_normal" + }, + "title": "Wikinade: RT @gonzagauthier: #museoweb @aamonnz : \"le web social n'est pas une étape destinée à être supprimée par la suivante\" ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5513000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb @aamonnz : \\\"le web social n'est pas une \\u00e9tape destin\\u00e9e \\u00e0 \\u00eatre supprim\\u00e9e par la suivante\\\" ++\",\"created_at\":\"Tue Oct 18 16:36:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[29,37],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335881245245440\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz : \\\"le web social n'est pas une \\u00e9tape destin\\u00e9e \\u00e0 \\u00eatre supprim\\u00e9e par la suivante\\\" ++\",\"created_at\":\"Tue Oct 18 16:34:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126335387869253632\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7517,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335387869253632},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"created_at\":\"Thu Sep 24 08:26:36 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"EEEEEE\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"followers_count\":111,\"description\":\"P\\u00e9riode post-apocalyptique\\u2026 chute libre\\u2026 mais pas gratuite\\u2026 O\\u00f9 sont mes carambars ?\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/80316085\\/Scotland-2009.jpg\",\"favourites_count\":15,\"id_str\":\"76890915\",\"listed_count\":23,\"friends_count\":113,\"profile_link_color\":\"870208\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\",\"screen_name\":\"Wikinade\",\"name\":\"Wikinade\",\"statuses_count\":1371,\"verified\":false,\"profile_background_color\":\"4bb3a2\",\"id\":76890915,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1583183572\\/Portrait_normal\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126335881245245440}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5513000, + "tags": [ + { + "id-ref": "99833dee-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4adc2fa6-85bc-45e6-9d9a-c670d5c50db6-126335881245245440" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Utilisation de #Google en France à 95% #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Utilisation de #Google en France à 95% #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5561000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Utilisation de #Google en France \\u00e0 95% #museoweb\",\"created_at\":\"Tue Oct 18 16:37:23 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Google\",\"indices\":[15,22]},{\"text\":\"museoweb\",\"indices\":[39,48]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336080659230720\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1131,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2018,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336080659230720}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5561000, + "tags": [ + { + "id-ref": "9983c1ec-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9983c1ec-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "12b6e718-5378-452a-9d62-68c0f9a300a5-126336080659230720" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Forcément, si @aamonnz présente la \"bataille des terminaux mobile\" en illustrant #iOs VS #android, je m'insurge --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Forcément, si @aamonnz présente la \"bataille des terminaux mobile\" en illustrant #iOs VS #android, je m'insurge --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5575000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Forc\\u00e9ment, si @aamonnz pr\\u00e9sente la \\\"bataille des terminaux mobile\\\" en illustrant #iOs VS #android, je m'insurge --\",\"created_at\":\"Tue Oct 18 16:37:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"iOs\",\"indices\":[91,95]},{\"text\":\"android\",\"indices\":[99,107]}],\"user_mentions\":[{\"indices\":[24,32],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336137571729408\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7518,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336137571729408}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5575000, + "tags": [ + { + "id-ref": "9983dfe2-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9983e424-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9983e424-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "76ceda70-f9d5-468e-8189-01342691836d-126336137571729408" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb la guerre des navigateurs, puis la guerre des moteurs de recherche, puis la guerre des OS mobiles, puis la guerre du Cloud...", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb la guerre des navigateurs, puis la guerre des moteurs de recherche, puis la guerre des OS mobiles, puis la guerre du Cloud...", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5603000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb la guerre des navigateurs, puis la guerre des moteurs de recherche, puis la guerre des OS mobiles, puis la guerre du Cloud...\",\"created_at\":\"Tue Oct 18 16:38:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336258891984896\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1620,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336258891984896}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5603000, + "tags": [ + { + "id-ref": "9983e424-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "23c88a8c-9a48-47c6-9f39-c6b9afbef57d-126336258891984896" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Ref : \"Le Web sémantique n'est pas antisocial\" par Fabien Gandon (pdf) http://t.co/TmPlfHiN ==", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb Ref : \"Le Web sémantique n'est pas antisocial\" par Fabien Gandon (pdf) http://t.co/TmPlfHiN ==", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5618000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Ref : \\\"Le Web s\\u00e9mantique n'est pas antisocial\\\" par Fabien Gandon (pdf) http:\\/\\/t.co\\/TmPlfHiN ==\",\"created_at\":\"Tue Oct 18 16:38:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[81,101],\"url\":\"http:\\/\\/t.co\\/TmPlfHiN\",\"expanded_url\":\"http:\\/\\/goo.gl\\/twek1\",\"display_url\":\"goo.gl\\/twek1\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336319478706176\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"default_profile\":false,\"statuses_count\":6652,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336319478706176}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5618000, + "tags": [ + { + "id-ref": "9983e424-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "66029f57-6ea1-4334-805a-a1c3302d0f90-126336319478706176" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb le web ne serait il qu'un grand champ de bataille ??", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb le web ne serait il qu'un grand champ de bataille ??", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5645000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb le web ne serait il qu'un grand champ de bataille ??\",\"created_at\":\"Tue Oct 18 16:38:47 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336433911906304\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1621,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336433911906304}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5645000, + "tags": [ + { + "id-ref": "9983e424-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f431ec5d-e569-4311-add1-6476f0ea6837-126336433911906304" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "pour les prochains #museoweb ça serait pas mal que le micro sature moins pour ceux qui suivent à distance #merci", + "img": { + "src": "http://a1.twimg.com/profile_images/1110558324/sylvain_bouteille_normal.jpg" + }, + "title": "Sylvain Machefert: pour les prochains #museoweb ça serait pas mal que le micro sature moins pour ceux qui suivent à distance #merci", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5651000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"pour les prochains #museoweb \\u00e7a serait pas mal que le micro sature moins pour ceux qui suivent \\u00e0 distance #merci\",\"created_at\":\"Tue Oct 18 16:38:53 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"merci\",\"indices\":[106,112]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336458104643584\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Tue Oct 28 16:18:44 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":401,\"description\":\"un geek au milieu des biblioth\\u00e9caires, wikip\\u00e9dien \\u00e0 ses heures perdues\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.sylvainmachefert.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":727,\"id_str\":\"17023747\",\"listed_count\":65,\"friends_count\":137,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Burdigala\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\",\"screen_name\":\"symac\",\"name\":\"Sylvain Machefert\",\"statuses_count\":3967,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":17023747,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336458104643584}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5651000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "94ee7597-7a47-46ac-8e5a-092d3a8366f7-126336458104643584" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "A une succession de webs répondrait une succession de paradigmes sur le web #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: A une succession de webs répondrait une succession de paradigmes sur le web #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5660000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"A une succession de webs r\\u00e9pondrait une succession de paradigmes sur le web #museoweb\",\"created_at\":\"Tue Oct 18 16:39:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[76,85]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336496671272960\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2019,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336496671272960}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5660000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "084b0c8e-40b9-4ac5-8a85-f76fbddb52dd-126336496671272960" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", + "img": { + "src": "None" + }, + "title": "Wikimédia France: RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5683000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @RemiMathis: Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:39:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[34,43]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[83,96],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[127,140],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336592813109248\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:01:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[67,80],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[111,124],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327173048057856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12067,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126327173048057856},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1097,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336592813109248}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5683000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "bd4ca2e9-2441-4912-8d3d-aad967f04df9-126336592813109248" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz parle \"du\" web dans son unicité et son universalité. Mais là encore, ça sent le point de vue eurocentré ? --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @aamonnz parle \"du\" web dans son unicité et son universalité. Mais là encore, ça sent le point de vue eurocentré ? --", + "color": "16763904", + "polemics": ["Q", "KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5712000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz parle \\\"du\\\" web dans son unicit\\u00e9 et son universalit\\u00e9. Mais l\\u00e0 encore, \\u00e7a sent le point de vue eurocentr\\u00e9 ? --\",\"created_at\":\"Tue Oct 18 16:39:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336712191389697\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7519,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336712191389697}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5712000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e2b93032-f594-4dea-92ac-6f14f1a8e8c5-126336712191389697" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "NOW ! RT @lizarewind #museoweb http://t.co/A0mB7k4L suivre le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: NOW ! RT @lizarewind #museoweb http://t.co/A0mB7k4L suivre le séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5722000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"NOW ! RT @lizarewind #museoweb http:\\/\\/t.co\\/A0mB7k4L suivre le s\\u00e9minaire \\\"Mus\\u00e9ologie, mus\\u00e9ographie et nouvelles formes d\\u2019adresse au public\",\"created_at\":\"Tue Oct 18 16:40:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[21,30]}],\"user_mentions\":[{\"indices\":[9,20],\"id_str\":\"110428655\",\"name\":\"lizarewind\",\"screen_name\":\"lizarewind\",\"id\":110428655}],\"urls\":[{\"indices\":[31,51],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336755816333312\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1951,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336755816333312}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5722000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b013e17a-f1f5-4cc5-8bcb-67f79a382907-126336755816333312" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT: @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-)", + "img": { + "src": "None" + }, + "title": "Wikimédia France: RT: @figoblog: #museoweb infobox : irruption des données structurées dans WP, frémissement des tenants du web sémantique :-)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5748000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @figoblog: #museoweb infobox : irruption des donn\\u00e9es structur\\u00e9es dans WP, fr\\u00e9missement des tenants du web s\\u00e9mantique :-)\",\"created_at\":\"Tue Oct 18 16:40:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]}],\"user_mentions\":[{\"indices\":[4,13],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126336864880820225\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1098,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126336864880820225}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5748000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e376ecb7-b97c-4836-aeff-9a25fde9ac40-126336864880820225" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", + "img": { + "src": "http://a2.twimg.com/profile_images/1404377005/image_normal.jpg" + }, + "title": "Gayané Adourian: RT @RemiMathis: Suivez le hashtag #museoweb : séminaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5788000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @RemiMathis: Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:41:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[34,43]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[83,96],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[127,140],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337034355871744\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Suivez le hashtag #museoweb : s\\u00e9minaire de l'IRI, aujourd'hui avec @AdrienneAlix, directrice des programmes de @Wikimedia_Fr\",\"created_at\":\"Tue Oct 18 16:01:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[67,80],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902},{\"indices\":[111,124],\"id_str\":\"17271765\",\"name\":\"Wikim\\u00e9dia France\",\"screen_name\":\"Wikimedia_Fr\",\"id\":17271765}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126327173048057856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"created_at\":\"Tue Apr 07 18:26:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"DFDFDF\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"followers_count\":1086,\"description\":\"Conservateur au d\\u00e9partement des Estampes de la BnF ; r\\u00e9dac'chef des Nouvelles de l'estampe ; pr\\u00e9sident de Wikim\\u00e9dia France\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/alatoisondor.wordpress.com\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/176198935\\/nom_armes_titres_-_400_px.jpg\",\"favourites_count\":2,\"id_str\":\"29508165\",\"listed_count\":122,\"friends_count\":629,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"Paris ; Amsterdam\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\",\"screen_name\":\"RemiMathis\",\"name\":\"R\\u00e9mi Mathis\",\"statuses_count\":12068,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":29508165,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/127401730\\/PhotoRM_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126327173048057856},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"efefef\",\"created_at\":\"Thu Sep 24 18:04:41 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"eeeeee\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"followers_count\":1776,\"description\":\"Journaliste. Recherche\\/Innovation\\/Soci\\u00e9t\\u00e9 sur @Knowtex. Focus sur #environnement et #plan\\u00e8te. Curieuse, relationniste et #hihi! :) Pianiste aussi\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.gayane-adourian.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"favourites_count\":442,\"id_str\":\"77002320\",\"listed_count\":216,\"friends_count\":1319,\"profile_link_color\":\"009999\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1404377005\\/image_normal.jpg\",\"screen_name\":\"GayaneAdourian\",\"name\":\"Gayan\\u00e9 Adourian\",\"statuses_count\":6982,\"verified\":false,\"profile_background_color\":\"131516\",\"id\":77002320,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1404377005\\/image_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126337034355871744}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5788000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "38690ada-b401-4dbd-a730-ea569977f50d-126337034355871744" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT: @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/hZNJUnL7 :-D #museoweb", + "img": { + "src": "None" + }, + "title": "Wikimédia France: RT: @RemiMathis: .@AdrienneAlix Wikipédia : passer du tps à naviguer à travers les liens : http://t.co/hZNJUnL7 :-D #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5806000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @RemiMathis: .@AdrienneAlix Wikip\\u00e9dia : passer du tps \\u00e0 naviguer \\u00e0 travers les liens : http:\\/\\/t.co\\/hZNJUnL7 :-D #museoweb\",\"created_at\":\"Tue Oct 18 16:41:28 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[116,125]}],\"user_mentions\":[{\"indices\":[4,15],\"id_str\":\"29508165\",\"name\":\"R\\u00e9mi Mathis\",\"screen_name\":\"RemiMathis\",\"id\":29508165},{\"indices\":[18,31],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[{\"indices\":[91,111],\"url\":\"http:\\/\\/t.co\\/hZNJUnL7\",\"expanded_url\":\"http:\\/\\/xkcd.com\\/214\\/\",\"display_url\":\"xkcd.com\\/214\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337110264393728\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1099,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337110264393728}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5806000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "8e1a427c-9d65-44d0-b1b1-ca7abfe2f2c8-126337110264393728" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz définit pour le moment le web exclusivement d'un point de vue des normes.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @aamonnz définit pour le moment le web exclusivement d'un point de vue des normes.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5818000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz d\\u00e9finit pour le moment le web exclusivement d'un point de vue des normes.\",\"created_at\":\"Tue Oct 18 16:41:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337159409053697\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7520,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337159409053697}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5818000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f83174dd-4696-4bc8-b1ba-fab473d7286d-126337159409053697" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT: @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "img": { + "src": "None" + }, + "title": "Wikimédia France: RT: @cblogculture: Adrienne Alix : Projets #wikimedia à classer ds le web social plutôt que le web sémantique #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5839000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @cblogculture: Adrienne Alix : Projets #wikimedia \\u00e0 classer ds le web social plut\\u00f4t que le web s\\u00e9mantique #museoweb\",\"created_at\":\"Tue Oct 18 16:42:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"wikimedia\",\"indices\":[43,53]},{\"text\":\"museoweb\",\"indices\":[110,119]}],\"user_mentions\":[{\"indices\":[4,17],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337244951871489\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Sun Nov 09 18:11:36 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"D3D2CF\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":2190,\"description\":\"Wikim\\u00e9dia France est une association de loi 1901 dont le but est de promouvoir et soutenir la diffusion de la connaissance libre et les projets comme Wikip\\u00e9dia.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/blog.wikimedia.fr\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"17271765\",\"listed_count\":167,\"friends_count\":103,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\",\"screen_name\":\"Wikimedia_Fr\",\"name\":\"Wikim\\u00e9dia France\",\"statuses_count\":1100,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":17271765,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/63985123\\/Wikimediafrance-logo_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337244951871489}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5839000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "39851228-390f-4a77-b5a7-697287699526-126337244951871489" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5851000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz explique l'enjeu pour google de consid\\u00e9rer le web comme un web de pages, \\\"vue partielle\\\".\",\"created_at\":\"Tue Oct 18 16:42:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337295191252992\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7521,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337295191252992}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5851000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9c3ed3b7-b018-411a-aa0a-498d994be8ad-126337295191252992" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "\"Il ne faut pas confondre #Google et le #web\" Alexandre Monnin #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: \"Il ne faut pas confondre #Google et le #web\" Alexandre Monnin #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5884000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"Il ne faut pas confondre #Google et le #web\\\" Alexandre Monnin #museoweb\",\"created_at\":\"Tue Oct 18 16:42:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"Google\",\"indices\":[26,33]},{\"text\":\"web\",\"indices\":[40,44]},{\"text\":\"museoweb\",\"indices\":[63,72]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337436849680384\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1132,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2020,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337436849680384}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5884000, + "tags": [ + { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99844dba-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6b5fe659-c197-463d-8925-2bccfbd3a197-126337436849680384" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz cite @lespetitescases : il ne faut pas être sur le web mais dans le web ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb @aamonnz cite @lespetitescases : il ne faut pas être sur le web mais dans le web ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 5988000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz cite @lespetitescases : il ne faut pas \\u00eatre sur le web mais dans le web ++\",\"created_at\":\"Tue Oct 18 16:44:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472},{\"indices\":[24,40],\"id_str\":\"13810452\",\"name\":\"Gautier Poupeau\",\"screen_name\":\"lespetitescases\",\"id\":13810452}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337873044701185\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"default_profile\":false,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1623,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337873044701185}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 5988000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "53ef87a2-2ec4-4bde-8ed1-b2d8af0a7491-126337873044701185" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier #museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: RT @gonzagauthier #museoweb @aamonnz explique l'enjeu pour google de considérer le web comme un web de pages, \"vue partielle\".", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6003000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier #museoweb @aamonnz explique l'enjeu pour google de consid\\u00e9rer le web comme un web de pages, \\\"vue partielle\\\".\",\"created_at\":\"Tue Oct 18 16:44:45 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327},{\"indices\":[28,36],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126337933241356289\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1951,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126337933241356289}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6003000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "424dfa52-79ae-41ac-a704-093a46a027b6-126337933241356289" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb A Monnin \"Pr ê sur le web, il suffit d’en suivre ses modes successives, pour ê dans le web il faut comprendre son infrastructure.", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb A Monnin \"Pr ê sur le web, il suffit d’en suivre ses modes successives, pour ê dans le web il faut comprendre son infrastructure.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6059000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb A Monnin \\\"Pr \\u00ea sur le web, il suffit d\\u2019en suivre ses modes successives, pour \\u00ea dans le web il faut comprendre son infrastructure.\",\"created_at\":\"Tue Oct 18 16:45:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126338168306933760\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":40,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126338168306933760}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6059000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ea7949de-c4ff-41ed-a9a6-8bac3f5045c3-126338168306933760" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Ça parle du poids de la classification dans les bibliothèque comme un élément performatif. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Ça parle du poids de la classification dans les bibliothèque comme un élément performatif. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6234000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\u00c7a parle du poids de la classification dans les biblioth\\u00e8que comme un \\u00e9l\\u00e9ment performatif. ++\",\"created_at\":\"Tue Oct 18 16:48:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126338904696692736\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7522,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126338904696692736}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6234000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6c44f798-3bb1-407a-97bd-ff42d35272f1-126338904696692736" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz présente les catégories principalement issues des studies américaines. On reste cohérent ^^ ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb @aamonnz présente les catégories principalement issues des studies américaines. On reste cohérent ^^ ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6289000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz pr\\u00e9sente les cat\\u00e9gories principalement issues des studies am\\u00e9ricaines. On reste coh\\u00e9rent ^^ ++\",\"created_at\":\"Tue Oct 18 16:49:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126339135987396608\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7523,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126339135987396608}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6289000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fc9331b9-b527-43ee-a3df-016c11d015a3-126339135987396608" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Une stratégie pour faire évoluer les choses en termes de metadonnées : faire changer les institutions @aamonnz #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Une stratégie pour faire évoluer les choses en termes de metadonnées : faire changer les institutions @aamonnz #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6384000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Une strat\\u00e9gie pour faire \\u00e9voluer les choses en termes de metadonn\\u00e9es : faire changer les institutions @aamonnz #museoweb\",\"created_at\":\"Tue Oct 18 16:51:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[111,120]}],\"user_mentions\":[{\"indices\":[102,110],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126339533322190848\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2021,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126339533322190848}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6384000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6086efac-9984-4c6e-be55-8fe9ca44e0d9-126339533322190848" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@aamonnz cite Clay Shirky : \"le choix du descripteur n'est pas neutre\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: @aamonnz cite Clay Shirky : \"le choix du descripteur n'est pas neutre\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6451000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"aamonnz\",\"in_reply_to_user_id\":7409472,\"text\":\"@aamonnz cite Clay Shirky : \\\"le choix du descripteur n'est pas neutre\\\" #museoweb\",\"created_at\":\"Tue Oct 18 16:52:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[71,80]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"7409472\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126339811723329536\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2022,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126339811723329536}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6451000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a11a610d-f319-4a98-bf0e-fbdc0d900ce1-126339811723329536" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb L'exemple choisi par @aamonnz pour montrer la pertinence des enjeux sémantiques dans les ontologies est celui du queer. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb L'exemple choisi par @aamonnz pour montrer la pertinence des enjeux sémantiques dans les ontologies est celui du queer. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6510000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb L'exemple choisi par @aamonnz pour montrer la pertinence des enjeux s\\u00e9mantiques dans les ontologies est celui du queer. ++\",\"created_at\":\"Tue Oct 18 16:53:12 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[31,39],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340061250854912\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"default_profile\":true,\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7524,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340061250854912}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6510000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "03fbb030-e31f-473d-8a67-c52761bd0d82-126340061250854912" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Mais c'est pas risqué en France ? Ca va peut mener à des incompréhensions. D'ailleurs @aamonnz dérape parfois sur ses usages.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Mais c'est pas risqué en France ? Ca va peut mener à des incompréhensions. D'ailleurs @aamonnz dérape parfois sur ses usages.", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6579000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Mais c'est pas risqu\\u00e9 en France ? Ca va peut mener \\u00e0 des incompr\\u00e9hensions. D'ailleurs @aamonnz d\\u00e9rape parfois sur ses usages.\",\"created_at\":\"Tue Oct 18 16:54:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[96,104],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340351152754688\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7525,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340351152754688}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6579000, + "tags": [ + { + "id-ref": "998569de-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "515dd17b-771a-44fc-9df0-43ceda00e077-126340351152754688" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Place aux hybrides ! < #Cyborg", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb Place aux hybrides ! < #Cyborg", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6694000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Place aux hybrides ! < #Cyborg\",\"created_at\":\"Tue Oct 18 16:56:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"Cyborg\",\"indices\":[36,43]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340833468366848\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6653,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340833468366848}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6694000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "87e836c7-7a6d-4840-98cc-3204ade8827d-126340833468366848" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb \"Va-t-on assister à une destruction des autorités dans les musées ? Je ne pense pas\". Dommage ! --", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb \"Va-t-on assister à une destruction des autorités dans les musées ? Je ne pense pas\". Dommage ! --", + "color": "16763904", + "polemics": ["Q", "KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6704000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb \\\"Va-t-on assister \\u00e0 une destruction des autorit\\u00e9s dans les mus\\u00e9es ? Je ne pense pas\\\". Dommage ! --\",\"created_at\":\"Tue Oct 18 16:56:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126340875407204352\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7526,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126340875407204352}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6704000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e9396670-2a2e-455a-929f-22ec7395a92a-126340875407204352" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Pr A Monnin ne devrait pas assister à une prise du web culturel --", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb Pr A Monnin ne devrait pas assister à une prise du web culturel --", + "color": "16763904", + "polemics": ["KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6735000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Pr A Monnin ne devrait pas assister \\u00e0 une prise du web culturel --\",\"created_at\":\"Tue Oct 18 16:56:57 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341004650487808\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":41,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341004650487808}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6735000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e1be6b10-d256-4ce6-92b5-7908c46f3128-126341004650487808" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Construire des hybrides pages / données / services @aamonnz ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb Construire des hybrides pages / données / services @aamonnz ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6796000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Construire des hybrides pages \\/ donn\\u00e9es \\/ services @aamonnz ++\",\"created_at\":\"Tue Oct 18 16:57:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[61,69],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341261111201792\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"default_profile\":false,\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1624,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341261111201792}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6796000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "78b6d2ea-8e03-44d5-808a-3d5d216748b3-126341261111201792" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Auj on a affaire a des \"hybrides\" de web - @aamonnz montre le schéma de N. Delaforge déjà posté sur http://t.co/LDkzNPQq #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Auj on a affaire a des \"hybrides\" de web - @aamonnz montre le schéma de N. Delaforge déjà posté sur http://t.co/LDkzNPQq #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6802000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Auj on a affaire a des \\\"hybrides\\\" de web - @aamonnz montre le sch\\u00e9ma de N. Delaforge d\\u00e9j\\u00e0 post\\u00e9 sur http:\\/\\/t.co\\/LDkzNPQq #museoweb\",\"created_at\":\"Tue Oct 18 16:58:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[121,130]}],\"user_mentions\":[{\"indices\":[43,51],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[{\"indices\":[100,120],\"url\":\"http:\\/\\/t.co\\/LDkzNPQq\",\"expanded_url\":\"http:\\/\\/cblog.culture.fr\",\"display_url\":\"cblog.culture.fr\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341284062429184\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2023,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341284062429184}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6802000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7621f1fc-b300-4c1e-899f-286b84734758-126341284062429184" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb Construire des hybrides pages / données / services @aamonnz ++", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: RT @figoblog: #museoweb Construire des hybrides pages / données / services @aamonnz ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6828000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb Construire des hybrides pages \\/ donn\\u00e9es \\/ services @aamonnz ++\",\"created_at\":\"Tue Oct 18 16:58:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[75,83],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341393286307840\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6654,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341393286307840}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6828000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ff6a67dc-f1a3-4dbc-9359-59d77d593e82-126341393286307840" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb l'hybride comme dissolution des pouvoirs. Réduction des savoirs/pouvoirs ?? --", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" + }, + "title": "Emmanuel Chateau: #museoweb l'hybride comme dissolution des pouvoirs. Réduction des savoirs/pouvoirs ?? --", + "color": "16763904", + "polemics": ["Q", "KO"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6856000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb l'hybride comme dissolution des pouvoirs. R\\u00e9duction des savoirs\\/pouvoirs\\u00a0??\\u00a0--\",\"created_at\":\"Tue Oct 18 16:58:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341512928825344\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"C0DFEC\",\"created_at\":\"Tue Nov 23 11:23:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a8c7f7\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":41,\"description\":\"Historien de l'architecture, Digital humanist\",\"geo_enabled\":false,\"profile_use_background_image\":false,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":23,\"id_str\":\"218830003\",\"listed_count\":1,\"friends_count\":65,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\",\"screen_name\":\"emchateau\",\"name\":\"Emmanuel Chateau\",\"statuses_count\":42,\"verified\":false,\"profile_background_color\":\"022330\",\"id\":218830003,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_0_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341512928825344}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6856000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b4cc35ad-ab59-4ccf-acf5-18efcd8f32b7-126341512928825344" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @aamonnz a l'air très marqué par ses contacts avec des bibliothécaires, ça m'étonne qu'il échappe au #pointVictorHugo ;-)", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb @aamonnz a l'air très marqué par ses contacts avec des bibliothécaires, ça m'étonne qu'il échappe au #pointVictorHugo ;-)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6860000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @aamonnz a l'air tr\\u00e8s marqu\\u00e9 par ses contacts avec des biblioth\\u00e9caires, \\u00e7a m'\\u00e9tonne qu'il \\u00e9chappe au #pointVictorHugo ;-)\",\"created_at\":\"Tue Oct 18 16:59:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"pointVictorHugo\",\"indices\":[111,127]}],\"user_mentions\":[{\"indices\":[10,18],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341529345327104\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1625,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341529345327104}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6860000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "57cdb5e3-8e4e-4496-a23b-2f3520d814f7-126341529345327104" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Podcast: RT @lizarewind: #museoweb http://t.co/Wc0TXvFN ,,, séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: Podcast: RT @lizarewind: #museoweb http://t.co/Wc0TXvFN ,,, séminaire \"Muséologie, muséographie et nouvelles formes d’adresse au public\"", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6959000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Podcast: RT @lizarewind: #museoweb http:\\/\\/t.co\\/Wc0TXvFN ,,, s\\u00e9minaire \\\"Mus\\u00e9ologie, mus\\u00e9ographie et nouvelles formes d\\u2019adresse au public\\\"\",\"created_at\":\"Tue Oct 18 17:00:41 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]}],\"user_mentions\":[{\"indices\":[12,23],\"id_str\":\"110428655\",\"name\":\"lizarewind\",\"screen_name\":\"lizarewind\",\"id\":110428655}],\"urls\":[{\"indices\":[35,55],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126341942559784960\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":334,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":150,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":924,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126341942559784960}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6959000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7601d6b1-7e1a-4568-a2d7-8d73b2d9afbe-126341942559784960" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb ai reflechi a une ontologie de type evolutive http://t.co/f1jeVNk3", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: #museoweb ai reflechi a une ontologie de type evolutive http://t.co/f1jeVNk3", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 6988000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ai reflechi a une ontologie de type evolutive http:\\/\\/t.co\\/f1jeVNk3\",\"created_at\":\"Tue Oct 18 17:01:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[56,76],\"url\":\"http:\\/\\/t.co\\/f1jeVNk3\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ZxyhS==\",\"display_url\":\"goo.gl\\/ZxyhS==\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342066518245376\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48663,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342066518245376}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 6988000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fa9069f2-0c57-4cc3-ab78-4f37ecd1f245-126342066518245376" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb ai reflechi a une ontologie de type evolutive http://t.co/s8GLlnxy", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: #museoweb ai reflechi a une ontologie de type evolutive http://t.co/s8GLlnxy", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7049000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ai reflechi a une ontologie de type evolutive http:\\/\\/t.co\\/s8GLlnxy\",\"created_at\":\"Tue Oct 18 17:02:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[57,77],\"url\":\"http:\\/\\/t.co\\/s8GLlnxy\",\"expanded_url\":\"http:\\/\\/florencemeichel.blogspot.com\\/2010\\/09\\/poiesis-de-lontologie-semantique.html\",\"display_url\":\"florencemeichel.blogspot.com\\/2010\\/09\\/poiesi\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342323218038784\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48665,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342323218038784}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7049000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "45d86885-0743-4d0b-bdc8-951eb8fb64e1-126342323218038784" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Fabien Gandon, chercheur à l'Inria & membre du W3C : le web et ses metadonnées, le territoire et sa carte #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Fabien Gandon, chercheur à l'Inria & membre du W3C : le web et ses metadonnées, le territoire et sa carte #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7119000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Fabien Gandon, chercheur \\u00e0 l'Inria & membre du W3C : le web et ses metadonn\\u00e9es, le territoire et sa carte #museoweb\",\"created_at\":\"Tue Oct 18 17:03:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[106,115]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342615338713088\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2024,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342615338713088}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7119000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "802e5f14-7373-42df-b38a-d84b99812791-126342615338713088" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7196000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Vannevar Bush propose des notions de #cyborg d\\u00e8s 1945 pour outiller sa m\\u00e9moire et son raisonnement.\",\"created_at\":\"Tue Oct 18 17:04:38 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"cyborg\",\"indices\":[47,54]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126342940258865152\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7526,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126342940258865152}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7196000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0329abae-b041-4bbc-856d-58cb2239aa9b-126342940258865152" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson...", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson...", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7242000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson...\",\"created_at\":\"Tue Oct 18 17:05:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,24],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343132135690240\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile\":false,\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1626,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343132135690240}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7242000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d1604363-8711-4cac-bc83-0400d6b9a914-126343132135690240" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @cblogculture F. Gandon, chercheur Inria & membre W3C : le web & ses metadonnées, le territoire & sa carte #museoweb http://t.co/A0mB7k4L", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: RT @cblogculture F. Gandon, chercheur Inria & membre W3C : le web & ses metadonnées, le territoire & sa carte #museoweb http://t.co/A0mB7k4L", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7243000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @cblogculture F. Gandon, chercheur Inria & membre W3C : le web & ses metadonn\\u00e9es, le territoire & sa carte #museoweb http:\\/\\/t.co\\/A0mB7k4L\",\"created_at\":\"Tue Oct 18 17:05:25 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[110,119]}],\"user_mentions\":[{\"indices\":[3,16],\"id_str\":\"216030846\",\"name\":\"C\\/blog\",\"screen_name\":\"cblogculture\",\"id\":216030846}],\"urls\":[{\"indices\":[120,140],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343133855354881\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1955,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343133855354881}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7243000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "82883b98-a0f6-466c-8d21-4946f6b24c10-126343133855354881" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb En 1965, Ted Nelson va plus loin et casse la textualité des documents concernés. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb En 1965, Ted Nelson va plus loin et casse la textualité des documents concernés. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7266000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb En 1965, Ted Nelson va plus loin et casse la textualit\\u00e9 des documents concern\\u00e9s. ++\",\"created_at\":\"Tue Oct 18 17:05:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343231280644097\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"default_profile\":true,\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7528,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343231280644097}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7266000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b1f6ba2c-291d-403b-9bf6-a5583cec8080-126343231280644097" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @gonzagauthier: #museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: RT @gonzagauthier: #museoweb Vannevar Bush propose des notions de #cyborg dès 1945 pour outiller sa mémoire et son raisonnement.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7283000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @gonzagauthier: #museoweb Vannevar Bush propose des notions de #cyborg d\\u00e8s 1945 pour outiller sa m\\u00e9moire et son raisonnement.\",\"created_at\":\"Tue Oct 18 17:06:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[19,28]},{\"text\":\"cyborg\",\"indices\":[66,73]}],\"user_mentions\":[{\"indices\":[3,17],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343304953602048\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6655,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343304953602048}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7283000, + "tags": [ + { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99866aaa-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7f485e33-9b45-4785-b321-c2536e13cac1-126343304953602048" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7362000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb plong\\u00e9e brillante et tr\\u00e8s p\\u00e9dagogique dans l'histoire du Web avec #fabien_gandon\",\"created_at\":\"Tue Oct 18 17:07:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"fabien_gandon\",\"indices\":[76,90]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343632893652992\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1627,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343632893652992}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7362000, + "tags": [ + { + "id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "de26653f-18c9-4a1a-af7f-fba8b2e6e955-126343632893652992" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Fabien Gandon : \"le web, quand il est né, était accessible en lecture et en écriture, et ce pour n'importe quelle page\". #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Fabien Gandon : \"le web, quand il est né, était accessible en lecture et en écriture, et ce pour n'importe quelle page\". #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7384000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Fabien Gandon : \\\"le web, quand il est n\\u00e9, \\u00e9tait accessible en lecture et en \\u00e9criture, et ce pour n'importe quelle page\\\". #museoweb\",\"created_at\":\"Tue Oct 18 17:07:46 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[121,130]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343727970140160\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"default_profile\":false,\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2025,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343727970140160}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7384000, + "tags": [ + { + "id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d2a0970b-1b06-4736-bef6-a1bf9dd769e3-126343727970140160" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7388000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ontologie evolutive et tentative de court-circuit de Google http:\\/\\/t.co\\/pZmqLXbW\",\"created_at\":\"Tue Oct 18 17:07:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[70,90],\"url\":\"http:\\/\\/t.co\\/pZmqLXbW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/rE1Dw\",\"display_url\":\"goo.gl\\/rE1Dw\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343743707168768\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48666,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343743707168768}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7388000, + "tags": [ + { + "id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0ff0a497-61ca-4b6e-9bd4-af95d88e4593-126343743707168768" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT: @figoblog: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson... < m'enfin, c'est moi qui remonte à Bush et Otlet d'hab !", + "img": { + "src": "http://a0.twimg.com/profile_images/932641420/800px-Roof_hafez_tomb_normal.jpg" + }, + "title": "Julien Fayolle: RT: @figoblog: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson... < m'enfin, c'est moi qui remonte à Bush et Otlet d'hab !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7472000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT: @figoblog: #museoweb @Fabien_gandon remonte a Vannevar Bush et 'Ted Nelson... < m'enfin, c'est moi qui remonte \\u00e0 Bush et Otlet d'hab !\",\"created_at\":\"Tue Oct 18 17:09:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[15,24]}],\"user_mentions\":[{\"indices\":[4,13],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[25,39],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344096464912385\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5dced\",\"default_profile\":false,\"created_at\":\"Sat Aug 01 11:36:19 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":242,\"description\":\"Je suis n\\u00e9. J'ai appris \\u00e0 lire et compter (et franchement j'en abuse). Je joue encore \\u00e0 la baballe. J'\\u00e9coute le vent. Je lutte contre la pesanteur.\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/thhean.blogspot.com\",\"following\":null,\"profile_text_color\":\"382e38\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":1,\"id_str\":\"62016822\",\"listed_count\":31,\"friends_count\":432,\"profile_link_color\":\"00b32a\",\"protected\":false,\"location\":\"Clermont-Ferrand\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/932641420\\/800px-Roof_hafez_tomb_normal.jpg\",\"screen_name\":\"Julien_f\",\"name\":\"Julien Fayolle\",\"statuses_count\":3913,\"verified\":false,\"profile_background_color\":\"f5f4ed\",\"id\":62016822,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/932641420\\/800px-Roof_hafez_tomb_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344096464912385}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7472000, + "tags": [ + { + "id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0c5b5333-af3e-4f5c-97fe-8ee90e11b7ff-126344096464912385" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Un langage XML pour la communauté du tag sur bâtiment. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Un langage XML pour la communauté du tag sur bâtiment. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7477000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Un langage XML pour la communaut\\u00e9 du tag sur b\\u00e2timent. ++\",\"created_at\":\"Tue Oct 18 17:09:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344119005085696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"default_profile\":true,\"statuses_count\":7529,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344119005085696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7477000, + "tags": [ + { + "id-ref": "99881ce2-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e3f31d1f-e671-4ddd-bc08-1958480623d2-126344119005085696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7506000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb A l'origine le Web \\u00e9tait inscriptible nous rappelle Fabien Gandon (capture d'image \\u00e0 l'appui) http:\\/\\/t.co\\/Pxjrt5b4 #EDIT\",\"created_at\":\"Tue Oct 18 17:09:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]},{\"text\":\"EDIT\",\"indices\":[125,130]}],\"user_mentions\":[],\"urls\":[{\"indices\":[104,124],\"url\":\"http:\\/\\/t.co\\/Pxjrt5b4\",\"expanded_url\":\"http:\\/\\/goo.gl\\/b6iJv\",\"display_url\":\"goo.gl\\/b6iJv\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344237187989504\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6656,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344237187989504}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7506000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4cb12818-d1cd-47bc-8097-81cab1c895f8-126344237187989504" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@Lilmount Ici : http://t.co/L7U88o4c ;-) #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: @Lilmount Ici : http://t.co/L7U88o4c ;-) #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7516000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"Lilmount\",\"in_reply_to_user_id\":68658539,\"text\":\"@Lilmount Ici : http:\\/\\/t.co\\/L7U88o4c ;-) #museoweb\",\"created_at\":\"Tue Oct 18 17:09:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[41,50]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"68658539\",\"name\":\"Coline Aunis\",\"screen_name\":\"Lilmount\",\"id\":68658539}],\"urls\":[{\"indices\":[16,36],\"url\":\"http:\\/\\/t.co\\/L7U88o4c\",\"expanded_url\":\"http:\\/\\/cblog.culture.fr\\/2011\\/09\\/07\\/web-semantique-iri-opendat\",\"display_url\":\"cblog.culture.fr\\/2011\\/09\\/07\\/web\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126342793525346304\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"68658539\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344279290421248\",\"in_reply_to_status_id\":126342793525346304,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2026,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344279290421248}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7516000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "c6777f28-8852-4474-bf2a-25b59afd0826-126344279290421248" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7544000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Oui, on pourra revoir tout \\u00e7a o\\u00f9 ? RT @figoblog #museoweb plong\\u00e9e brillante et tr\\u00e8s p\\u00e9dagogique dans l'histoire du Web avec #fabien_gandon\",\"created_at\":\"Tue Oct 18 17:10:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[48,57]},{\"text\":\"fabien_gandon\",\"indices\":[124,138]}],\"user_mentions\":[{\"indices\":[38,47],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344398144413696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":false,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1956,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344398144413696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7544000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d179f3f2-2ab2-4927-b00e-c1b6fe8f5e78-126344398144413696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Fabien Gandon : \"lorsque les utilisateurs vont sur le web, ils ont un but et ils ont un modèle de la réalité en tête.\" #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Fabien Gandon : \"lorsque les utilisateurs vont sur le web, ils ont un but et ils ont un modèle de la réalité en tête.\" #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7641000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Fabien Gandon : \\\"lorsque les utilisateurs vont sur le web, ils ont un but et ils ont un mod\\u00e8le de la r\\u00e9alit\\u00e9 en t\\u00eate.\\\" #museoweb\",\"created_at\":\"Tue Oct 18 17:12:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344804673126400\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"default_profile\":false,\"statuses_count\":2027,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344804673126400}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7641000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d24a3d91-dbf6-4dc9-888e-8c0499f81553-126344804673126400" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", + "img": { + "src": "http://a1.twimg.com/profile_images/1578535119/DylanGlaser_normal.jpg" + }, + "title": "lizarewind: #MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7662000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb @fabien_gandon passionnant http:\\/\\/t.co\\/X0cwHJ8Q\",\"created_at\":\"Tue Oct 18 17:12:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,24],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[{\"indices\":[37,57],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344892547997696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":false,\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":551,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":642,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"statuses_count\":5537,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344892547997696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7662000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6c9099aa-fb11-4fec-b494-d36d379fe49c-126344892547997696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@vpaillas http://t.co/Wc0TXvFN RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: @vpaillas http://t.co/Wc0TXvFN RT @figoblog #museoweb plongée brillante et très pédagogique dans l'histoire du Web avec #fabien_gandon", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7687000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas http:\\/\\/t.co\\/Wc0TXvFN RT @figoblog #museoweb plong\\u00e9e brillante et tr\\u00e8s p\\u00e9dagogique dans l'histoire du Web avec #fabien_gandon\",\"created_at\":\"Tue Oct 18 17:12:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[44,53]},{\"text\":\"fabien_gandon\",\"indices\":[120,134]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763},{\"indices\":[34,43],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[{\"indices\":[10,30],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344999360151552\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":334,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":150,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":925,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344999360151552}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7687000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2a9b75e1-db10-472b-b841-50254e23e349-126344999360151552" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@vpaillas Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée dans l'histoire du Web avec #fabien_gandon cc @aamonnz", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: @vpaillas Oui, on pourra revoir tout ça où ? RT @figoblog #museoweb plongée dans l'histoire du Web avec #fabien_gandon cc @aamonnz", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7697000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas Oui, on pourra revoir tout \\u00e7a o\\u00f9 ? RT @figoblog #museoweb plong\\u00e9e dans l'histoire du Web avec #fabien_gandon cc @aamonnz\",\"created_at\":\"Tue Oct 18 17:12:59 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[58,67]},{\"text\":\"fabien_gandon\",\"indices\":[108,122]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763},{\"indices\":[48,57],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[126,134],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\"\\u003EMobile Web\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345040799875073\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1628,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345040799875073}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7697000, + "tags": [ + { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "99889f96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "acfac533-c326-41f7-934b-cf5c4d84aa12-126345040799875073" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb avec @fabien_gandon, faire du web sémantique est aussi facile que manger du chocolat :-) #fanclub ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb avec @fabien_gandon, faire du web sémantique est aussi facile que manger du chocolat :-) #fanclub ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7747000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb avec @fabien_gandon, faire du web s\\u00e9mantique est aussi facile que manger du chocolat :-) #fanclub ++\",\"created_at\":\"Tue Oct 18 17:13:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"fanclub\",\"indices\":[99,107]}],\"user_mentions\":[{\"indices\":[15,29],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345248191426560\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1629,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345248191426560}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7747000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a6424365-cb05-4158-b56e-58294fc8a4b5-126345248191426560" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir les vidéos après?", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir les vidéos après?", + "color": "16763904", + "polemics": ["Q", "REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7769000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1957,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7769000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "643835b1-2a15-45f6-b6e1-29a07674eab3-126345340868771841" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", + "img": { + "src": "http://a2.twimg.com/profile_images/1532793455/IMG_1633_r_duit_normal.jpg" + }, + "title": "Bernard Desclaux: RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7788000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir ...\",\"created_at\":\"Tue Oct 18 17:14:30 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]},{\"text\":\"fabien_gandon\",\"indices\":[40,54]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[106,126],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345420245970946\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1957,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"FFF7CC\",\"default_profile\":false,\"created_at\":\"Sat Feb 06 15:24:25 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"F2E195\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"followers_count\":472,\"description\":\"Directeur de CIO (retrait\\u00e9), formateur, peintre sumi-e\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/bdesclaux.jimdo.com\\/\",\"following\":null,\"profile_text_color\":\"0C3E53\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"favourites_count\":8,\"id_str\":\"111910160\",\"listed_count\":66,\"friends_count\":273,\"profile_link_color\":\"FF0000\",\"protected\":false,\"location\":\"Avignon, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1532793455\\/IMG_1633_r_duit_normal.jpg\",\"screen_name\":\"BDesclaux\",\"name\":\"Bernard Desclaux\",\"statuses_count\":10034,\"verified\":false,\"profile_background_color\":\"BADFCD\",\"id\":111910160,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1532793455\\/IMG_1633_r_duit_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126345420245970946}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7788000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ee7483dc-162b-4c8a-833b-757161d193e3-126345420245970946" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@fabien_gandin utilise une tablette de chocolat pour expliquer le rdf #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: @fabien_gandin utilise une tablette de chocolat pour expliquer le rdf #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7816000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"@fabien_gandin utilise une tablette de chocolat pour expliquer le rdf #museoweb\",\"created_at\":\"Tue Oct 18 17:14:58 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[70,79]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345539200614401\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2028,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126345539200614401}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7816000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2275df85-edcd-4627-9774-c85ad8e1da85-126345539200614401" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet chips !", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet chips !", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 7945000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb REF: Tim Berners-Lee, \\\"Open, Linked Data for a Global Community\\\" (video) http:\\/\\/t.co\\/iGu24aIP < Avec le paquet chips !\",\"created_at\":\"Tue Oct 18 17:17:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[83,103],\"url\":\"http:\\/\\/t.co\\/iGu24aIP\",\"expanded_url\":\"http:\\/\\/goo.gl\\/17uyF\",\"display_url\":\"goo.gl\\/17uyF\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346078382592000\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6657,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346078382592000}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 7945000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e7b1ee9e-be02-4063-8972-760b096d905c-126346078382592000" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@costisd le lien donné pour #museoweb c'est du streaming en direct ? ensuite, on retrouve les présentations quelque part ?", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: @costisd le lien donné pour #museoweb c'est du streaming en direct ? ensuite, on retrouve les présentations quelque part ?", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8002000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"costisd\",\"in_reply_to_user_id\":20733366,\"text\":\"@costisd le lien donn\\u00e9 pour #museoweb c'est du streaming en direct ? ensuite, on retrouve les pr\\u00e9sentations quelque part ?\",\"created_at\":\"Tue Oct 18 17:18:04 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[28,37]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"20733366\",\"name\":\"Costis Dallas\",\"screen_name\":\"costisd\",\"id\":20733366}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126344999360151552\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"20733366\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346317109805057\",\"in_reply_to_status_id\":126344999360151552,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1958,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346317109805057}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8002000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6292ab98-7d96-48c9-947c-f5ca6075cce3-126346317109805057" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb et un #PointVictorHugo pour @fabien_gandon !", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb et un #PointVictorHugo pour @fabien_gandon !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8015000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb et un #PointVictorHugo pour @fabien_gandon !\",\"created_at\":\"Tue Oct 18 17:18:17 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"PointVictorHugo\",\"indices\":[16,32]}],\"user_mentions\":[{\"indices\":[38,52],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346372894044161\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1630,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346372894044161}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8015000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a4c06c81-e1dd-4a7e-92fc-986ba1f7d07d-126346372894044161" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb et un #PointBBC par la même occasion @Fabien_gandon", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb et un #PointBBC par la même occasion @Fabien_gandon", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8082000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb et un #PointBBC par la m\\u00eame occasion @Fabien_gandon\",\"created_at\":\"Tue Oct 18 17:19:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"PointBBC\",\"indices\":[16,25]}],\"user_mentions\":[{\"indices\":[47,61],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346653828513792\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1631,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346653828513792}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8082000, + "tags": [ + { + "id-ref": "9989553a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "da6011aa-02a1-4bf8-a48b-3402b7e925e9-126346653828513792" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@fabien_gandin 's fascinating live webcast: from hypertext 2 semantic web (in French) - could you upload it 4 l8r viewing? #museoweb", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: @fabien_gandin 's fascinating live webcast: from hypertext 2 semantic web (in French) - could you upload it 4 l8r viewing? #museoweb", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8108000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"@fabien_gandin 's fascinating live webcast: from hypertext 2 semantic web (in French) - could you upload it 4 l8r viewing? #museoweb\",\"created_at\":\"Tue Oct 18 17:19:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[123,132]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346764323258369\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":334,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":150,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":926,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346764323258369}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8108000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "78e8476a-8a67-4f0b-b61d-c79ad40bdcf2-126346764323258369" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @_omr: #museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet ch ...", + "img": { + "src": "http://a1.twimg.com/profile_images/1578535119/DylanGlaser_normal.jpg" + }, + "title": "lizarewind: RT @_omr: #museoweb REF: Tim Berners-Lee, \"Open, Linked Data for a Global Community\" (video) http://t.co/iGu24aIP < Avec le paquet ch ...", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8113000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @_omr: #museoweb REF: Tim Berners-Lee, \\\"Open, Linked Data for a Global Community\\\" (video) http:\\/\\/t.co\\/iGu24aIP < Avec le paquet ch ...\",\"created_at\":\"Tue Oct 18 17:19:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[10,19]}],\"user_mentions\":[{\"indices\":[3,8],\"id_str\":\"16592723\",\"name\":\"Omer Pesquer\",\"screen_name\":\"_omr\",\"id\":16592723}],\"urls\":[{\"indices\":[93,113],\"url\":\"http:\\/\\/t.co\\/iGu24aIP\",\"expanded_url\":\"http:\\/\\/goo.gl\\/17uyF\",\"display_url\":\"goo.gl\\/17uyF\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346784376229889\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb REF: Tim Berners-Lee, \\\"Open, Linked Data for a Global Community\\\" (video) http:\\/\\/t.co\\/iGu24aIP < Avec le paquet chips !\",\"created_at\":\"Tue Oct 18 17:17:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[83,103],\"url\":\"http:\\/\\/t.co\\/iGu24aIP\",\"expanded_url\":\"http:\\/\\/goo.gl\\/17uyF\",\"display_url\":\"goo.gl\\/17uyF\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346078382592000\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"default_profile\":false,\"statuses_count\":6657,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346078382592000},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":552,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":642,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"default_profile\":false,\"statuses_count\":5538,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":true,\"id\":126346784376229889}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8113000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "608339f7-2b8c-49e3-bddc-7bf70aac1d55-126346784376229889" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb La BBC outsource sa classification documentaire avec #wikipedia. Formidable !", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb La BBC outsource sa classification documentaire avec #wikipedia. Formidable !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8120000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb La BBC outsource sa classification documentaire avec #wikipedia. Formidable !\",\"created_at\":\"Tue Oct 18 17:20:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"wikipedia\",\"indices\":[63,73]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346812855549952\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":728,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7529,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346812855549952}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8120000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "daacaa1f-6103-48f8-b1ca-120dbb6fa068-126346812855549952" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb (point BBC : toute discussion sur le web sémantique débouche a un moment ou a un autre sur la BBC.)", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb (point BBC : toute discussion sur le web sémantique débouche a un moment ou a un autre sur la BBC.)", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8137000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb (point BBC : toute discussion sur le web s\\u00e9mantique d\\u00e9bouche a un moment ou a un autre sur la BBC.)\",\"created_at\":\"Tue Oct 18 17:20:19 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126346885404442624\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"default_profile\":false,\"statuses_count\":1632,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126346885404442624}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8137000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "11fe633c-a151-4296-86e6-b8a22432aaad-126346885404442624" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @_omr: #MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", + "img": { + "src": "http://a0.twimg.com/profile_images/380566620/arton2047_normal.jpg" + }, + "title": "Coline Aunis: RT @_omr: #MuseoWeb A l'origine le Web était inscriptible nous rappelle Fabien Gandon (capture d'image à l'appui) http://t.co/Pxjrt5b4 #EDIT", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8288000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @_omr: #MuseoWeb A l'origine le Web \\u00e9tait inscriptible nous rappelle Fabien Gandon (capture d'image \\u00e0 l'appui) http:\\/\\/t.co\\/Pxjrt5b4 #EDIT\",\"created_at\":\"Tue Oct 18 17:22:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[10,19]},{\"text\":\"EDIT\",\"indices\":[135,140]}],\"user_mentions\":[{\"indices\":[3,8],\"id_str\":\"16592723\",\"name\":\"Omer Pesquer\",\"screen_name\":\"_omr\",\"id\":16592723}],\"urls\":[{\"indices\":[114,134],\"url\":\"http:\\/\\/t.co\\/Pxjrt5b4\",\"expanded_url\":\"http:\\/\\/goo.gl\\/b6iJv\",\"display_url\":\"goo.gl\\/b6iJv\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126347519931330560\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb A l'origine le Web \\u00e9tait inscriptible nous rappelle Fabien Gandon (capture d'image \\u00e0 l'appui) http:\\/\\/t.co\\/Pxjrt5b4 #EDIT\",\"created_at\":\"Tue Oct 18 17:09:48 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]},{\"text\":\"EDIT\",\"indices\":[125,130]}],\"user_mentions\":[],\"urls\":[{\"indices\":[104,124],\"url\":\"http:\\/\\/t.co\\/Pxjrt5b4\",\"expanded_url\":\"http:\\/\\/goo.gl\\/b6iJv\",\"display_url\":\"goo.gl\\/b6iJv\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344237187989504\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6657,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344237187989504},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"created_at\":\"Tue Aug 25 10:14:38 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"C6E2EE\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"followers_count\":420,\"description\":\"#Web #NewMedia #NewTech #CM @ArtsetMetiers \\/\\/\\r\\n#MuseoGeek & \\u271a\\u271a \\/ \\u2600 \\/ \\uf8ff \\/\\/\",\"geo_enabled\":true,\"profile_use_background_image\":false,\"url\":\"http:\\/\\/arts-et-metiers.net\",\"following\":null,\"profile_text_color\":\"663B12\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"favourites_count\":81,\"id_str\":\"68658539\",\"listed_count\":36,\"friends_count\":409,\"profile_link_color\":\"1F98C7\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\",\"screen_name\":\"Lilmount\",\"name\":\"Coline Aunis\",\"statuses_count\":2019,\"verified\":false,\"profile_background_color\":\"C6E2EE\",\"id\":68658539,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/380566620\\/arton2047_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126347519931330560}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8288000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b1bf7cc1-5271-4233-bbe4-ef7c3bf5e52c-126347519931330560" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "\"la page est à la fois document et source de données...\"fabien gandon Yes ! je commence à comprendre le monde du web sémantique ;) #museoweb", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: \"la page est à la fois document et source de données...\"fabien gandon Yes ! je commence à comprendre le monde du web sémantique ;) #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8348000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"la page est \\u00e0 la fois document et source de donn\\u00e9es...\\\"fabien gandon Yes ! je commence \\u00e0 comprendre le monde du web s\\u00e9mantique ;) #museoweb\",\"created_at\":\"Tue Oct 18 17:23:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126347770998173696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"default_profile\":false,\"statuses_count\":1959,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126347770998173696}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8348000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3bf45905-005d-48c4-83e6-a4df93cd93b2-126347770998173696" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Présentation du projet Datalift qui cherche à accélérer la production de jeu de données en ligne #museoweb @Fabien_gandon", + "img": { + "src": "None" + }, + "title": "C/blog: Présentation du projet Datalift qui cherche à accélérer la production de jeu de données en ligne #museoweb @Fabien_gandon", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8353000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Pr\\u00e9sentation du projet Datalift qui cherche \\u00e0 acc\\u00e9l\\u00e9rer la production de jeu de donn\\u00e9es en ligne #museoweb @Fabien_gandon\",\"created_at\":\"Tue Oct 18 17:23:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[97,106]}],\"user_mentions\":[{\"indices\":[107,121],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126347792938573825\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2029,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126347792938573825}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8353000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "419afcb9-5d7d-4013-abc2-578e863f6dee-126347792938573825" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb si l'opendata est le passeport pour le DPI alors le web semantique conduit a un web asocial", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: #museoweb si l'opendata est le passeport pour le DPI alors le web semantique conduit a un web asocial", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8455000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb si l'opendata est le passeport pour le DPI alors le web semantique conduit a un web asocial\",\"created_at\":\"Tue Oct 18 17:25:37 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348220233297920\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48667,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348220233297920}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8455000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3dcc367c-c8a0-408d-a434-850bf697adad-126348220233297920" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@vpaillas sur polemictweet.com :-) #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @vpaillas sur polemictweet.com :-) #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8488000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas sur polemictweet.com :-) #museoweb\",\"created_at\":\"Tue Oct 18 17:26:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[36,45]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[14,30],\"url\":\"polemictweet.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126344398144413696\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348357684838400\",\"in_reply_to_status_id\":126344398144413696,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"default_profile\":false,\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3259,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348357684838400}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8488000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "30666b98-9f71-4994-b27a-9acb10a3241b-126348357684838400" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Web 1.0 : documentaire, web 2.0 : je donne la main à l'utilisateur, web 3.0 je joins tout cela au web semantique @Fabien_gandon #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: Web 1.0 : documentaire, web 2.0 : je donne la main à l'utilisateur, web 3.0 je joins tout cela au web semantique @Fabien_gandon #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8500000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Web 1.0 : documentaire, web 2.0 : je donne la main \\u00e0 l'utilisateur, web 3.0 je joins tout cela au web semantique @Fabien_gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:26:22 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[128,137]}],\"user_mentions\":[{\"indices\":[113,127],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348408972771329\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"default_profile\":false,\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2030,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348408972771329}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8500000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d99c170e-836e-4177-a017-22b364929e0b-126348408972771329" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb le web 3.0, c'est le web 1 + 2 + le web sémantique (et pas le web sémantique tout seul) selon @fabien_gandon ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb le web 3.0, c'est le web 1 + 2 + le web sémantique (et pas le web sémantique tout seul) selon @fabien_gandon ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8553000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb le web 3.0, c'est le web 1 + 2 + le web s\\u00e9mantique (et pas le web s\\u00e9mantique tout seul) selon @fabien_gandon ++\",\"created_at\":\"Tue Oct 18 17:27:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[104,118],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348629450555393\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1633,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348629450555393}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8553000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "539e39f9-0b81-498e-88fe-1ccf80f1a073-126348629450555393" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @lizarewind: #MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", + "img": { + "src": "http://a2.twimg.com/profile_images/1373717241/IMAG0908_normal.jpg" + }, + "title": "Julien Carrasco: RT @lizarewind: #MuseoWeb @fabien_gandon passionnant http://t.co/X0cwHJ8Q", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8559000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @lizarewind: #MuseoWeb @fabien_gandon passionnant http:\\/\\/t.co\\/X0cwHJ8Q\",\"created_at\":\"Tue Oct 18 17:27:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[16,25]}],\"user_mentions\":[{\"indices\":[3,14],\"id_str\":\"110428655\",\"name\":\"lizarewind\",\"screen_name\":\"lizarewind\",\"id\":110428655},{\"indices\":[26,40],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[{\"indices\":[53,73],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348653148385280\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#MuseoWeb @fabien_gandon passionnant http:\\/\\/t.co\\/X0cwHJ8Q\",\"created_at\":\"Tue Oct 18 17:12:24 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"MuseoWeb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[10,24],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[{\"indices\":[37,57],\"url\":\"http:\\/\\/t.co\\/X0cwHJ8Q\",\"expanded_url\":\"http:\\/\\/www.polemictweet.com\\/2011-2012-museo-ouverture\\/client.php\",\"display_url\":\"polemictweet.com\\/2011-2012-muse\\u2026\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126344892547997696\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Feb 01 14:22:03 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"followers_count\":486,\"description\":\"Tweet and shout !\\r\\n\\u00ab Il n\\u2019est aucun t\\u00e9moignage de culture qui ne soit en m\\u00eame temps un t\\u00e9moignage de barbarie \\u00bb \\u00e9pitaphe de Walter Benjamin \\u00e0 Port Bou\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/maythemusic.tumblr.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_background_images\\/102541057\\/Books.jpg\",\"favourites_count\":552,\"id_str\":\"110428655\",\"listed_count\":37,\"friends_count\":642,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\",\"screen_name\":\"lizarewind\",\"name\":\"lizarewind\",\"statuses_count\":5538,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":110428655,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1578535119\\/DylanGlaser_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126344892547997696},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Wed Sep 09 13:24:40 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/314346450\\/262590_10150275114596178_647066177_7502923_3896783_n.jpg\",\"followers_count\":330,\"description\":\"Still Twitting on the fence - #art #movement #connections Time zone: London, Paris, Perpignan\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/atelierdespassages.blogspot.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/314346450\\/262590_10150275114596178_647066177_7502923_3896783_n.jpg\",\"favourites_count\":815,\"id_str\":\"72850903\",\"listed_count\":22,\"friends_count\":498,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1373717241\\/IMAG0908_normal.jpg\",\"screen_name\":\"Les_Passages\",\"name\":\"Julien Carrasco\",\"statuses_count\":1875,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":72850903,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1373717241\\/IMAG0908_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348653148385280}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8559000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "5016595e-fc5b-4760-8940-cbd3986a25be-126348653148385280" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "évolution Web : documentaire / structuré / sémantique / social... web 3.0 une zone de friction entre les 2 derniers. Fabien Gandon #museoweb", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: évolution Web : documentaire / structuré / sémantique / social... web 3.0 une zone de friction entre les 2 derniers. Fabien Gandon #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8595000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\u00e9volution Web : documentaire \\/ structur\\u00e9 \\/ s\\u00e9mantique \\/ social... web 3.0 une zone de friction entre les 2 derniers. Fabien Gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:27:57 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348808153083905\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1960,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348808153083905}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8595000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f8d066a7-ff2f-4580-ab2b-b28f364c454e-126348808153083905" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "\"les utilisateurs sont de + en + vus par les acteurs du #web comme des processeurs.\" @Fabien_gandon #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: \"les utilisateurs sont de + en + vus par les acteurs du #web comme des processeurs.\" @Fabien_gandon #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8606000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"les utilisateurs sont de + en + vus par les acteurs du #web comme des processeurs.\\\" @Fabien_gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:28:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"web\",\"indices\":[56,60]},{\"text\":\"museoweb\",\"indices\":[100,109]}],\"user_mentions\":[{\"indices\":[85,99],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348852730150913\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"default_profile\":false,\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2031,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348852730150913}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8606000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "094fd199-7d6d-49e6-ae66-0d6ff977a678-126348852730150913" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@gonzagauthier c'est un universel en extension, pas en exclusion. Un parmi d'autres ! #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @gonzagauthier c'est un universel en extension, pas en exclusion. Un parmi d'autres ! #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8641000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier c'est un universel en extension, pas en exclusion. Un parmi d'autres ! #museoweb\",\"created_at\":\"Tue Oct 18 17:28:43 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[86,95]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126336712191389697\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126348997869842432\",\"in_reply_to_status_id\":126336712191389697,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"default_profile\":false,\"statuses_count\":3260,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126348997869842432}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8641000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "215fbe0f-4246-49b6-abb3-d424a5247672-126348997869842432" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8678000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb\",\"created_at\":\"Tue Oct 18 17:29:20 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349155588247552\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1019,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1634,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349155588247552}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8678000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "44628e03-d6a8-4aa7-9f9c-8f8d7087828a-126349155588247552" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici, épidémie de grippe).++(", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici, épidémie de grippe).++(", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8682000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"retweeted\":false,\"text\":\"#museoweb D\\u00e9monstration de la puissance de #google dans la pr\\u00e9diction des \\u00e9v\\u00e9nements sociaux (ici, \\u00e9pid\\u00e9mie de grippe).++(\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"entities\":{\"urls\":[],\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"google\",\"indices\":[43,50]}],\"user_mentions\":[]},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126349170046009344\",\"place\":null,\"contributors\":null,\"truncated\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"retweet_count\":0,\"in_reply_to_user_id\":null,\"favorited\":false,\"created_at\":\"Tue Oct 18 17:29:24 +0000 2011\",\"geo\":null,\"user\":{\"geo_enabled\":false,\"profile_use_background_image\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_text_color\":\"333333\",\"lang\":\"fr\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"location\":\"Paris \\/ Lille\",\"id_str\":\"136900327\",\"notifications\":null,\"profile_link_color\":\"0084B4\",\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"screen_name\":\"gonzagauthier\",\"is_translator\":false,\"verified\":false,\"favourites_count\":231,\"listed_count\":59,\"following\":null,\"friends_count\":425,\"profile_background_color\":\"C0DEED\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"show_all_inline_media\":false,\"contributors_enabled\":false,\"statuses_count\":7531,\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"protected\":false,\"name\":\"gonzague gauthier\",\"default_profile_image\":false,\"default_profile\":true,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"followers_count\":728,\"id\":136900327,\"utc_offset\":3600,\"url\":null},\"in_reply_to_screen_name\":null,\"id\":126349170046009344}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8682000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2408bf1c-d7e0-4d86-8fb1-0ae8a911e14d-126349170046009344" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb oula les humains sont des processeurs qu'on peut utiliser ????? #transhumanisme", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: #museoweb oula les humains sont des processeurs qu'on peut utiliser ????? #transhumanisme", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8744000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb oula les humains sont des processeurs qu'on peut utiliser ????? #transhumanisme\",\"created_at\":\"Tue Oct 18 17:30:26 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"transhumanisme\",\"indices\":[74,89]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349431644758016\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"default_profile\":false,\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48668,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349431644758016}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8744000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "79850faa-16f2-4796-bd02-73dd0726a75b-126349431644758016" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8754000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb\",\"created_at\":\"Tue Oct 18 17:30:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349474237915137\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48669,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349474237915137}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8754000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d09732c3-3913-4fa6-9d20-939ae02cd1d7-126349474237915137" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "\"le web comme une machine virtuelle de moteurs à pulsions.\" @Fabien_gandon #museoweb", + "img": { + "src": "None" + }, + "title": "C/blog: \"le web comme une machine virtuelle de moteurs à pulsions.\" @Fabien_gandon #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8770000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"le web comme une machine virtuelle de moteurs \\u00e0 pulsions.\\\" @Fabien_gandon #museoweb\",\"created_at\":\"Tue Oct 18 17:30:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[75,84]}],\"user_mentions\":[{\"indices\":[60,74],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349538393985024\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"ced7d6\",\"created_at\":\"Mon Nov 15 16:19:56 +0000 2010\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"ffffff\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"followers_count\":1133,\"description\":\"Twitter officiel du blog culture et num\\u00e9rique du Minist\\u00e8re de la Culture et de la Communication \",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/cblog.culture.fr\",\"following\":null,\"profile_text_color\":\"9b8f40\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/171976806\\/bg.jpg\",\"favourites_count\":1,\"id_str\":\"216030846\",\"listed_count\":62,\"friends_count\":187,\"profile_link_color\":\"da5700\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\",\"screen_name\":\"cblogculture\",\"name\":\"C\\/blog\",\"statuses_count\":2032,\"verified\":false,\"profile_background_color\":\"3c4006\",\"id\":216030846,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1167835397\\/avatar_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349538393985024}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8770000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a87096ba-c632-4d14-9ffe-0c5b9ae9cca8-126349538393985024" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@figoblog mais pas au point Shirky :-) #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @figoblog mais pas au point Shirky :-) #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8772000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"figoblog\",\"in_reply_to_user_id\":8814092,\"text\":\"@figoblog mais pas au point Shirky :-) #museoweb\",\"created_at\":\"Tue Oct 18 17:30:54 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[40,49]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126341529345327104\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"8814092\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349548225433600\",\"in_reply_to_status_id\":126341529345327104,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"default_profile\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3261,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349548225433600}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8772000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2e4abf6f-da73-42b6-a469-474043ea5a1f-126349548225433600" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@florencemeichel je ne crois pas que Fabien ait dit cela. Plutôt que nous étions \"traités\" comme des ressources #nuance #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @florencemeichel je ne crois pas que Fabien ait dit cela. Plutôt que nous étions \"traités\" comme des ressources #nuance #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8873000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"florencemeichel\",\"in_reply_to_user_id\":5739312,\"text\":\"@florencemeichel je ne crois pas que Fabien ait dit cela. Plut\\u00f4t que nous \\u00e9tions \\\"trait\\u00e9s\\\" comme des ressources #nuance #museoweb\",\"created_at\":\"Tue Oct 18 17:32:35 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"nuance\",\"indices\":[112,119]},{\"text\":\"museoweb\",\"indices\":[120,129]}],\"user_mentions\":[{\"indices\":[0,16],\"id_str\":\"5739312\",\"name\":\"florence meichel\",\"screen_name\":\"florencemeichel\",\"id\":5739312}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126349431644758016\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"5739312\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126349973452369921\",\"in_reply_to_status_id\":126349431644758016,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"default_profile\":false,\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3262,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126349973452369921}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8873000, + "tags": [ + { + "id-ref": "998a1d8a-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "9870b936-041a-475b-922d-1fabaab9727d-126349973452369921" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", + "img": { + "src": "http://a0.twimg.com/profile_images/1575374089/isa_normal.jpg" + }, + "title": "Isabelle Gruet: RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 8905000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir ...\",\"created_at\":\"Tue Oct 18 17:33:07 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]},{\"text\":\"fabien_gandon\",\"indices\":[40,54]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[106,126],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350106705395714\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":576,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"default_profile\":false,\"statuses_count\":1961,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e2d9b2\",\"created_at\":\"Thu Apr 09 05:49:20 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"d3d2cf\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/59473055\\/circle-bouqet.jpg\",\"followers_count\":2001,\"description\":\"Relationniste pour Thot Cursus (@thot) - R\\u00e9seaux sociaux, community management, veille : \\u00e9ducation, formation, TIC ... et curiosit\\u00e9s !\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.doyoubuzz.com\\/isabelle-gruet\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/59473055\\/circle-bouqet.jpg\",\"favourites_count\":1127,\"id_str\":\"29932245\",\"listed_count\":330,\"friends_count\":721,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Rennes\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1575374089\\/isa_normal.jpg\",\"screen_name\":\"igruet\",\"name\":\"Isabelle Gruet\",\"default_profile\":false,\"statuses_count\":18919,\"verified\":false,\"profile_background_color\":\"e1b1d0\",\"id\":29932245,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1575374089\\/isa_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":true,\"id\":126350106705395714}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 8905000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2ef3da34-3a75-4add-a547-61dfe236ce2f-126350106705395714" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb RT @gonzagauthier: Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici,épidémie de grippe).++", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb RT @gonzagauthier: Démonstration de la puissance de #google dans la prédiction des événements sociaux (ici,épidémie de grippe).++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9049000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb RT @gonzagauthier: D\\u00e9monstration de la puissance de #google dans la pr\\u00e9diction des \\u00e9v\\u00e9nements sociaux (ici,\\u00e9pid\\u00e9mie de grippe).++\",\"created_at\":\"Tue Oct 18 17:35:31 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"google\",\"indices\":[62,69]}],\"user_mentions\":[{\"indices\":[13,27],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350712077680640\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6658,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126350712077680640}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9049000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "1d2b40ba-1716-4415-909d-3351ba3824dd-126350712077680640" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "est-ce que les videos des interventions sur #museoweb sont disponibles a posteriori ou seulement en livestreaming ?", + "img": { + "src": "http://a1.twimg.com/profile_images/1110558324/sylvain_bouteille_normal.jpg" + }, + "title": "Sylvain Machefert: est-ce que les videos des interventions sur #museoweb sont disponibles a posteriori ou seulement en livestreaming ?", + "color": "16763904", + "polemics": ["Q"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9054000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"est-ce que les videos des interventions sur #museoweb sont disponibles a posteriori ou seulement en livestreaming ?\",\"created_at\":\"Tue Oct 18 17:35:36 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[44,53]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003EEchofon\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350732831096833\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Tue Oct 28 16:18:44 +0000 2008\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":401,\"description\":\"un geek au milieu des biblioth\\u00e9caires, wikip\\u00e9dien \\u00e0 ses heures perdues\",\"default_profile\":true,\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.sylvainmachefert.com\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":727,\"id_str\":\"17023747\",\"listed_count\":65,\"friends_count\":138,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Burdigala\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\",\"screen_name\":\"symac\",\"name\":\"Sylvain Machefert\",\"statuses_count\":3969,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":17023747,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1110558324\\/sylvain_bouteille_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126350732831096833}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9054000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "936e8750-36e4-4c7e-9801-9ed107bbf17e-126350732831096833" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@igruet retrouvez la video du séminaire sur polemictweet.com :-) #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @igruet retrouvez la video du séminaire sur polemictweet.com :-) #museoweb", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9118000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"igruet\",\"in_reply_to_user_id\":29932245,\"text\":\"@igruet retrouvez la video du s\\u00e9minaire sur polemictweet.com :-) #museoweb\",\"created_at\":\"Tue Oct 18 17:36:40 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[66,75]}],\"user_mentions\":[{\"indices\":[0,7],\"id_str\":\"29932245\",\"name\":\"Isabelle Gruet\",\"screen_name\":\"igruet\",\"id\":29932245}],\"urls\":[{\"indices\":[44,60],\"url\":\"polemictweet.com\",\"expanded_url\":null}]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126350106705395714\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":\"29932245\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126350999844700160\",\"in_reply_to_status_id\":126350106705395714,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"default_profile\":false,\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3264,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126350999844700160}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9118000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b2d2af6e-e273-4a9d-b179-6c29095ccc25-126350999844700160" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Bravo pour la mise en abime, rendez vous en fin de semaine pour voir nos tweets sur les tweets filmés par la caméra !!++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Bravo pour la mise en abime, rendez vous en fin de semaine pour voir nos tweets sur les tweets filmés par la caméra !!++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9133000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Bravo pour la mise en abime, rendez vous en fin de semaine pour voir nos tweets sur les tweets film\\u00e9s par la cam\\u00e9ra !!++\",\"created_at\":\"Tue Oct 18 17:36:55 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351062008475649\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":175,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":364,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351062008475649}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9133000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "41445443-5844-41f6-aa71-5466bba11dc1-126351062008475649" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb REf: http://t.co/doa9Kqd7 Google FluTrends \"Suivez l'évolution de la grippe dans le monde entier\" /cc @gonzagauthier", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb REf: http://t.co/doa9Kqd7 Google FluTrends \"Suivez l'évolution de la grippe dans le monde entier\" /cc @gonzagauthier", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9147000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb REf: http:\\/\\/t.co\\/doa9Kqd7 Google FluTrends \\\"Suivez l'\\u00e9volution de la grippe dans le monde entier\\\" \\/cc @gonzagauthier\",\"created_at\":\"Tue Oct 18 17:37:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[{\"indices\":[113,127],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[{\"indices\":[16,36],\"url\":\"http:\\/\\/t.co\\/doa9Kqd7\",\"expanded_url\":\"http:\\/\\/www.google.org\\/flutrends\\/\",\"display_url\":\"google.org\\/flutrends\\/\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351120825196545\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"default_profile\":false,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6659,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351120825196545}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9147000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "41b69d6e-4f1e-40d6-bad0-e635455d4347-126351120825196545" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@symac les deux ! #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @symac les deux ! #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9152000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"symac\",\"in_reply_to_user_id\":17023747,\"text\":\"@symac les deux ! #museoweb\",\"created_at\":\"Tue Oct 18 17:37:14 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[18,27]}],\"user_mentions\":[{\"indices\":[0,6],\"id_str\":\"17023747\",\"name\":\"Sylvain Machefert\",\"screen_name\":\"symac\",\"id\":17023747}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126350732831096833\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"17023747\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351140446146560\",\"in_reply_to_status_id\":126350732831096833,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3265,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351140446146560}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9152000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "8ac85d56-f878-4f9c-827c-17511e4e7074-126351140446146560" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb La fin de l'intervention remet en place des enjeux politiques du web. ++", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: #museoweb La fin de l'intervention remet en place des enjeux politiques du web. ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9319000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb La fin de l'intervention remet en place des enjeux politiques du web. ++\",\"created_at\":\"Tue Oct 18 17:40:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003EUberSocial for BlackBerry\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351843709304832\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":59,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7532,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351843709304832}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9319000, + "tags": [ + { + "id-ref": "998c4d80-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "936f27f6-ed74-4322-8dfd-fc16cacb6074-126351843709304832" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9319000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet ++\",\"created_at\":\"Tue Oct 18 17:40:01 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"iri\",\"indices\":[55,59]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351844644618241\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1021,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1635,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"default_profile\":false,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351844644618241}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9319000, + "tags": [ + { + "id-ref": "998d3736-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998d3736-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "2a9cf3c0-439f-4663-846c-7d6a60ab0ef0-126351844644618241" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Scotchée par la proposition mise en abime vidéo / tweets sur une timeline #museoweb", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: Scotchée par la proposition mise en abime vidéo / tweets sur une timeline #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9320000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Scotch\\u00e9e par la proposition mise en abime vid\\u00e9o \\/ tweets sur une timeline #museoweb\",\"created_at\":\"Tue Oct 18 17:40:02 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[75,84]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126351847714852865\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":577,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1962,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126351847714852865}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9320000, + "tags": [ + { + "id-ref": "998d3736-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "bd885748-13e9-4fb0-97a7-899068916fba-126351847714852865" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@vpaillas j'espere qu' au moins la presentation ppt de @fabien_gandin sera disponible en ligne #museoweb", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: @vpaillas j'espere qu' au moins la presentation ppt de @fabien_gandin sera disponible en ligne #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9384000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"vpaillas\",\"in_reply_to_user_id\":72538763,\"text\":\"@vpaillas j'espere qu' au moins la presentation ppt de @fabien_gandin sera disponible en ligne #museoweb\",\"created_at\":\"Tue Oct 18 17:41:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[95,104]}],\"user_mentions\":[{\"indices\":[0,9],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"72538763\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352116653625344\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":928,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352116653625344}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9384000, + "tags": [ + { + "id-ref": "998d3736-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "5c06b414-f38e-4e64-aa1a-2750088867e2-126352116653625344" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@gonzagauthier non, non, car la cible de Shirky au final c'était les bibliothécaires ! #mauvaisepolitique #museoweb #nepasetromperdecible", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @gonzagauthier non, non, car la cible de Shirky au final c'était les bibliothécaires ! #mauvaisepolitique #museoweb #nepasetromperdecible", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9388000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier non, non, car la cible de Shirky au final c'\\u00e9tait les biblioth\\u00e9caires ! #mauvaisepolitique #museoweb #nepasetromperdecible\",\"created_at\":\"Tue Oct 18 17:41:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"mauvaisepolitique\",\"indices\":[87,105]},{\"text\":\"museoweb\",\"indices\":[106,115]},{\"text\":\"nepasetromperdecible\",\"indices\":[116,137]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126340875407204352\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352133011419136\",\"in_reply_to_status_id\":126340875407204352,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"default_profile\":false,\"statuses_count\":3266,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352133011419136}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9388000, + "tags": [ + { + "id-ref": "998d872c-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998d872c-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "be03bc3b-e9a3-46a3-82b7-22ca6888365c-126352133011419136" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", + "color": "16763904", + "polemics": ["Q", "OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9453000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Fabien Gandon : un bon plaidoyer pour le droit \\u00e0 la d\\u00e9nonnexion !! Malgr\\u00e9 lui ?++\",\"created_at\":\"Tue Oct 18 17:42:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352405846687745\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"default_profile\":true,\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":176,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":366,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352405846687745}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9453000, + "tags": [ + { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a25b93ea-8e5a-4032-867f-e042c1f3bc8a-126352405846687745" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@costisd Fabien Gandon ;) #museoweb Sûrement sur Slideshare !", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @costisd Fabien Gandon ;) #museoweb Sûrement sur Slideshare !", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9477000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"costisd\",\"in_reply_to_user_id\":20733366,\"text\":\"@costisd Fabien Gandon ;) #museoweb S\\u00fbrement sur Slideshare !\",\"created_at\":\"Tue Oct 18 17:42:39 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[26,35]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"20733366\",\"name\":\"Costis Dallas\",\"screen_name\":\"costisd\",\"id\":20733366}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126352116653625344\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"20733366\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352505805352961\",\"in_reply_to_status_id\":126352116653625344,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"default_profile\":false,\"statuses_count\":3266,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352505805352961}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9477000, + "tags": [ + { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4b9b21a2-df19-41cf-9c03-bd34f5fcab63-126352505805352961" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Super ! Merci RT @figoblog #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet", + "img": { + "src": "http://a3.twimg.com/profile_images/409382566/13_normal.jpg" + }, + "title": "Virginie Paillas: Super ! Merci RT @figoblog #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9490000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Super ! Merci RT @figoblog #museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet\",\"created_at\":\"Tue Oct 18 17:42:52 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[28,37]},{\"text\":\"iri\",\"indices\":[83,87]}],\"user_mentions\":[{\"indices\":[18,27],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352560704598016\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":577,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1963,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"default_profile\":false,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352560704598016}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9490000, + "tags": [ + { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b9b5cf63-0f39-4043-b05e-d9581f5be92b-126352560704598016" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vincentpuig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", + "img": { + "src": "http://a0.twimg.com/profile_images/1411125003/moi_pour_twitter_bis_normal.jpg" + }, + "title": "florence meichel: RT @vincentpuig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit à la dénonnexion !! Malgré lui ?++", + "color": "16763904", + "polemics": ["Q", "OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9504000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vincentpuig: #museoweb Fabien Gandon : un bon plaidoyer pour le droit \\u00e0 la d\\u00e9nonnexion !! Malgr\\u00e9 lui ?++\",\"created_at\":\"Tue Oct 18 17:43:06 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[17,26]}],\"user_mentions\":[{\"indices\":[3,15],\"id_str\":\"68424173\",\"name\":\"Vincent Puig\",\"screen_name\":\"vincentpuig\",\"id\":68424173}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=\\\"nofollow\\\"\\u003ETweet Button\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352619206742018\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Fabien Gandon : un bon plaidoyer pour le droit \\u00e0 la d\\u00e9nonnexion !! Malgr\\u00e9 lui ?++\",\"created_at\":\"Tue Oct 18 17:42:15 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352405846687745\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":176,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":366,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126352405846687745},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48672,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":1,\"favorited\":false,\"truncated\":false,\"id\":126352619206742018}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9504000, + "tags": [ + { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4d1ab3c7-5c58-4468-a6b2-0302198b09e5-126352619206742018" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Fabien Gadon cite le projet \"Live Social Semantics\" - Video http://t.co/cWt4CHxt", + "img": { + "src": "http://a3.twimg.com/profile_images/654197661/omer_twiitter_20100125_normal.jpg" + }, + "title": "Omer Pesquer: #museoweb Fabien Gadon cite le projet \"Live Social Semantics\" - Video http://t.co/cWt4CHxt", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9579000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Fabien Gadon cite le projet \\\"Live Social Semantics\\\" - Video http:\\/\\/t.co\\/cWt4CHxt\",\"created_at\":\"Tue Oct 18 17:44:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[71,91],\"url\":\"http:\\/\\/t.co\\/cWt4CHxt\",\"expanded_url\":\"http:\\/\\/vimeo.com\\/6590604\",\"display_url\":\"vimeo.com\\/6590604\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/seesmic.com\\/\\\" rel=\\\"nofollow\\\"\\u003ESeesmic\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126352933800509440\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"f5f5f5\",\"default_profile\":false,\"created_at\":\"Sat Oct 04 16:26:51 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a67f13\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"followers_count\":1314,\"description\":\"Consultant Internet Freelance - secteur culturel (#mus\\u00e9e, #artsvisuels) & Cr\\u00e9ateur de dispositifs Web singuliers (#Outrepart, #MotBot, #UnTitre)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/omer.mobi\\/\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/83277792\\/fd_omr.gif\",\"favourites_count\":1095,\"id_str\":\"16592723\",\"listed_count\":164,\"friends_count\":895,\"profile_link_color\":\"0084b4\",\"protected\":false,\"location\":\"Paris - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\",\"screen_name\":\"_omr\",\"name\":\"Omer Pesquer\",\"statuses_count\":6660,\"verified\":false,\"profile_background_color\":\"bababa\",\"id\":16592723,\"profile_background_tile\":true,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/654197661\\/omer_twiitter_20100125_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126352933800509440}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9579000, + "tags": [ + { + "id-ref": "998d8b96-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "a5a10de7-8e6f-4f88-af0a-eb78d5f98046-126352933800509440" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb tout ça ne peut marcher que si les metadonnees sont au coeur de tout. @fabien_gandon #c'estBeau ++", + "img": { + "src": "http://a0.twimg.com/profile_images/370030571/photo-bermes_normal.jpg" + }, + "title": "Emmanuelle Bermes: #museoweb tout ça ne peut marcher que si les metadonnees sont au coeur de tout. @fabien_gandon #c'estBeau ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9634000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb tout \\u00e7a ne peut marcher que si les metadonnees sont au coeur de tout. @fabien_gandon #c'estBeau ++\",\"created_at\":\"Tue Oct 18 17:45:16 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"c\",\"indices\":[95,97]}],\"user_mentions\":[{\"indices\":[80,94],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353164663406592\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"default_profile\":false,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1021,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1636,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353164663406592}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9634000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "e72144f4-9d85-4397-be86-8496b98ee320-126353164663406592" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@gonzagauthier de son architecture et tout le monde l'ignore. C'est un pont de vue minoritaire en dépit des apparences #museoweb", + "img": { + "src": "None" + }, + "title": "Alexandre Monnin: @gonzagauthier de son architecture et tout le monde l'ignore. C'est un pont de vue minoritaire en dépit des apparences #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9691000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"gonzagauthier\",\"in_reply_to_user_id\":136900327,\"text\":\"@gonzagauthier de son architecture et tout le monde l'ignore. C'est un pont de vue minoritaire en d\\u00e9pit des apparences #museoweb\",\"created_at\":\"Tue Oct 18 17:46:13 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[119,128]}],\"user_mentions\":[{\"indices\":[0,14],\"id_str\":\"136900327\",\"name\":\"gonzague gauthier\",\"screen_name\":\"gonzagauthier\",\"id\":136900327}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126337159409053697\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"136900327\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353401679327232\",\"in_reply_to_status_id\":126337159409053697,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E3E2DE\",\"created_at\":\"Wed Jul 11 18:52:41 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"D3D2CF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"followers_count\":439,\"description\":\"Head of Web and metadata research@IRI, PhD student in Philosophy@Paris1, Lecturer@UPEMLV, advocate for the Philosophy of the Web http:\\/\\/web-and-philosophy.org\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/execo.univ-paris1.fr\\/spip.php?article67\",\"following\":null,\"profile_text_color\":\"634047\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"favourites_count\":6,\"id_str\":\"7409472\",\"listed_count\":73,\"friends_count\":509,\"profile_link_color\":\"088253\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\",\"screen_name\":\"aamonnz\",\"name\":\"Alexandre Monnin\",\"statuses_count\":3268,\"verified\":false,\"profile_background_color\":\"EDECE9\",\"id\":7409472,\"profile_background_tile\":false,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/513016932\\/twitterProfilePhoto_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353401679327232}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9691000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "4ab2d1b6-d7e2-4abb-a3fc-97167131d567-126353401679327232" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Really gr8 #museoweb symposium on digital museum communication (in French) at #iri. Watch next week for video podcast: http://t.co/Wc0TXvFN", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: Really gr8 #museoweb symposium on digital museum communication (in French) at #iri. Watch next week for video podcast: http://t.co/Wc0TXvFN", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9699000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Really gr8 #museoweb symposium on digital museum communication (in French) at #iri. Watch next week for video podcast: http:\\/\\/t.co\\/Wc0TXvFN\",\"created_at\":\"Tue Oct 18 17:46:21 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"iri\",\"indices\":[78,82]}],\"user_mentions\":[],\"urls\":[{\"indices\":[119,139],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353435787411456\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":929,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353435787411456}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9699000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "d1d93524-4a0b-4ad9-8eaf-8395ee4e7474-126353435787411456" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @florencemeichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", + "img": { + "src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png" + }, + "title": "MARIA : RT @florencemeichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http://t.co/pZmqLXbW", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9707000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @florencemeichel: #museoweb ontologie evolutive et tentative de court-circuit de Google http:\\/\\/t.co\\/pZmqLXbW\",\"created_at\":\"Tue Oct 18 17:46:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[21,30]}],\"user_mentions\":[{\"indices\":[3,19],\"id_str\":\"5739312\",\"name\":\"florence meichel\",\"screen_name\":\"florencemeichel\",\"id\":5739312}],\"urls\":[{\"indices\":[91,111],\"url\":\"http:\\/\\/t.co\\/pZmqLXbW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/rE1Dw\",\"display_url\":\"goo.gl\\/rE1Dw\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353471472549888\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb ontologie evolutive et tentative de court-circuit de Google http:\\/\\/t.co\\/pZmqLXbW\",\"created_at\":\"Tue Oct 18 17:07:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[70,90],\"url\":\"http:\\/\\/t.co\\/pZmqLXbW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/rE1Dw\",\"display_url\":\"goo.gl\\/rE1Dw\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126343743707168768\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"fafafa\",\"created_at\":\"Thu May 03 13:07:37 +0000 2007\",\"lang\":\"fr\",\"time_zone\":\"Darwin\",\"profile_sidebar_border_color\":\"fafafa\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"followers_count\":1633,\"description\":\"Formatrice\\/Consultante Organisations et R\\u00e9seaux Apprenants\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"https:\\/\\/sites.google.com\\/site\\/florencemeichel\\/\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/135792888\\/twitter_background_blanc.jpg\",\"favourites_count\":1336,\"id_str\":\"5739312\",\"listed_count\":229,\"friends_count\":1451,\"profile_link_color\":\"baa24a\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\",\"screen_name\":\"florencemeichel\",\"name\":\"florence meichel\",\"statuses_count\":48672,\"verified\":false,\"profile_background_color\":\"ffffff\",\"id\":5739312,\"profile_background_tile\":false,\"utc_offset\":34200,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1411125003\\/moi_pour_twitter_bis_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126343743707168768},\"user\":{\"default_profile_image\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"created_at\":\"Sun Aug 28 14:47:00 +0000 2011\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DBE9ED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"followers_count\":0,\"description\":\"\",\"default_profile\":false,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"favourites_count\":1,\"id_str\":\"363692606\",\"listed_count\":0,\"friends_count\":0,\"profile_link_color\":\"CC3366\",\"protected\":false,\"location\":\"\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"screen_name\":\"mimoulahmer\",\"name\":\"MARIA \",\"statuses_count\":10,\"verified\":false,\"profile_background_color\":\"DBE9ED\",\"id\":363692606,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126353471472549888}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9707000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "7da284d8-0985-4428-9d2a-28839e116cdf-126353471472549888" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", + "img": { + "src": "http://a0.twimg.com/profile_images/1413500452/303b8aaf-8960-4da5-89fb-d82f2afda78f_normal.png" + }, + "title": "Damien Clauzel: RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilité @AdrienneAlix", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 9747000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @figoblog: #museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 17:47:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[89,101]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"screen_name\":\"figoblog\",\"id\":8814092},{\"indices\":[102,115],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126353638179356672\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb 11 millions de fichiers dans Wikimedia Commons (11 millions !!!) #scalabilit\\u00e9 @AdrienneAlix\",\"created_at\":\"Tue Oct 18 16:01:05 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"scalabilit\\u00e9\",\"indices\":[75,87]}],\"user_mentions\":[{\"indices\":[88,101],\"id_str\":\"53406902\",\"name\":\"Adrienne Alix\",\"screen_name\":\"AdrienneAlix\",\"id\":53406902}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126326944408158208\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"e0ff92\",\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"lang\":\"en\",\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"followers_count\":1021,\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"following\":null,\"profile_text_color\":\"000000\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"favourites_count\":1,\"id_str\":\"8814092\",\"listed_count\":145,\"friends_count\":78,\"profile_link_color\":\"0000ff\",\"protected\":false,\"location\":\"Paris\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"screen_name\":\"figoblog\",\"name\":\"Emmanuelle Bermes\",\"statuses_count\":1636,\"verified\":false,\"profile_background_color\":\"9ae4e8\",\"id\":8814092,\"profile_background_tile\":true,\"utc_offset\":-10800,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126326944408158208},\"user\":{\"default_profile_image\":false,\"default_profile\":false,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"created_at\":\"Tue Apr 29 07:52:58 +0000 2008\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/56303225\\/1256758211639.jpg\",\"followers_count\":439,\"description\":\"Chercheur en informatique. Plongeur. Sp\\u00e9cialiste de l'innovation. Geek. Enseignant. Libriste.\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/Damien.Clauzel.nom.fr\",\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/56303225\\/1256758211639.jpg\",\"favourites_count\":154,\"id_str\":\"14582008\",\"listed_count\":32,\"friends_count\":291,\"profile_link_color\":\"7696bf\",\"protected\":false,\"location\":\"Villeurbanne, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1413500452\\/303b8aaf-8960-4da5-89fb-d82f2afda78f_normal.png\",\"screen_name\":\"dclauzel\",\"name\":\"Damien Clauzel\",\"statuses_count\":5163,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":14582008,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1413500452\\/303b8aaf-8960-4da5-89fb-d82f2afda78f_normal.png\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126353638179356672}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 9747000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "ced98295-cefe-4f9d-941f-c9242d3d459d-126353638179356672" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "Just hrd @Fabien_Gandon interesting talk in #museoweb symposium #iri. Earlier presentations: http://t.co/yfzW7nqv Merci @aamonnz!", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: Just hrd @Fabien_Gandon interesting talk in #museoweb symposium #iri. Earlier presentations: http://t.co/yfzW7nqv Merci @aamonnz!", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10041000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Just hrd @Fabien_Gandon interesting talk in #museoweb symposium #iri. Earlier presentations: http:\\/\\/t.co\\/yfzW7nqv Merci @aamonnz!\",\"created_at\":\"Tue Oct 18 17:52:03 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[44,53]},{\"text\":\"iri\",\"indices\":[64,68]}],\"user_mentions\":[{\"indices\":[9,23],\"id_str\":\"14301911\",\"name\":\"fabien_gandon\",\"screen_name\":\"fabien_gandon\",\"id\":14301911},{\"indices\":[120,128],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[{\"indices\":[93,113],\"url\":\"http:\\/\\/t.co\\/yfzW7nqv\",\"expanded_url\":\"http:\\/\\/slidesha.re\\/pkk2w8\",\"display_url\":\"slidesha.re\\/pkk2w8\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126354872210702336\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"default_profile\":true,\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":930,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126354872210702336}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10041000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "3b25676d-64d5-4cb0-95ab-ec1e9045f410-126354872210702336" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @figoblog: #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", + "img": { + "src": "http://a2.twimg.com/profile_images/1562510466/WikiGnomes_21_normal.png" + }, + "title": "Frère Moine: RT @figoblog: #museoweb vous pourrez retrouver la video du séminaire #iri la semaine prochaine sur polemictweet ++", + "color": "16763904", + "polemics": ["OK"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10090000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"text\":\"RT @figoblog: #museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet ++\",\"created_at\":\"Tue Oct 18 17:52:52 +0000 2011\",\"in_reply_to_screen_name\":null,\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[14,23]},{\"text\":\"iri\",\"indices\":[69,73]}],\"user_mentions\":[{\"indices\":[3,12],\"screen_name\":\"figoblog\",\"id_str\":\"8814092\",\"name\":\"Emmanuelle Bermes\",\"id\":8814092}],\"urls\":[]},\"geo\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"source\":\"web\",\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126355074887856130\",\"in_reply_to_status_id\":null,\"contributors\":null,\"truncated\":false,\"retweeted_status\":{\"text\":\"#museoweb vous pourrez retrouver la video du s\\u00e9minaire #iri la semaine prochaine sur polemictweet ++\",\"created_at\":\"Tue Oct 18 17:40:01 +0000 2011\",\"in_reply_to_screen_name\":null,\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]},{\"text\":\"iri\",\"indices\":[55,59]}],\"user_mentions\":[],\"urls\":[]},\"geo\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"coordinates\":null,\"in_reply_to_user_id_str\":null,\"id_str\":\"126351844644618241\",\"in_reply_to_status_id\":null,\"contributors\":null,\"truncated\":false,\"user\":{\"created_at\":\"Tue Sep 11 16:54:55 +0000 2007\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":\"Greenland\",\"profile_sidebar_border_color\":\"87bc44\",\"lang\":\"en\",\"followers_count\":1021,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.figoblog.org\",\"description\":\"French metadata librarian, with special interest in Semantic Web & Linked Data\",\"screen_name\":\"figoblog\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"profile_text_color\":\"000000\",\"following\":null,\"profile_background_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_background_images\\/26453281\\/confiture.gif\",\"id_str\":\"8814092\",\"profile_link_color\":\"0000ff\",\"location\":\"Paris\",\"is_translator\":false,\"notifications\":null,\"favourites_count\":1,\"protected\":false,\"listed_count\":145,\"verified\":false,\"friends_count\":78,\"profile_background_color\":\"9ae4e8\",\"name\":\"Emmanuelle Bermes\",\"profile_background_tile\":true,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/370030571\\/photo-bermes_normal.jpg\",\"id\":8814092,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"statuses_count\":1636,\"utc_offset\":-10800,\"profile_sidebar_fill_color\":\"e0ff92\"},\"id\":126351844644618241,\"retweet_count\":1,\"in_reply_to_user_id\":null,\"favorited\":false},\"user\":{\"created_at\":\"Sat Mar 13 15:55:20 +0000 2010\",\"default_profile_image\":false,\"default_profile\":false,\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"a02527\",\"lang\":\"fr\",\"followers_count\":244,\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/fr.wikipedia.org\\/wiki\\/utilisateur:Acer11\",\"description\":\"Moine catholique, conjuguant wikip\\u00e9dia, wikisource et la bibliophilie (BIBLIO, hein).\",\"screen_name\":\"Wikimoine\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/92680429\\/Archange-Gabriel-12-09.jpeg\",\"profile_text_color\":\"a24d36\",\"following\":null,\"profile_background_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_background_images\\/92680429\\/Archange-Gabriel-12-09.jpeg\",\"id_str\":\"122701181\",\"profile_link_color\":\"0084B4\",\"location\":\"T\\u00eate_au_ciel._Pieds_sur_terre.\",\"is_translator\":false,\"notifications\":null,\"favourites_count\":9,\"protected\":false,\"listed_count\":34,\"verified\":false,\"friends_count\":97,\"profile_background_color\":\"fdd0a9\",\"name\":\"Fr\\u00e8re Moine\",\"profile_background_tile\":true,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1562510466\\/WikiGnomes_21_normal.png\",\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1562510466\\/WikiGnomes_21_normal.png\",\"id\":122701181,\"show_all_inline_media\":true,\"contributors_enabled\":false,\"statuses_count\":1932,\"utc_offset\":3600,\"profile_sidebar_fill_color\":\"9fd5d6\"},\"id\":126355074887856130,\"retweet_count\":1,\"in_reply_to_user_id\":null,\"favorited\":false}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10090000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "79070417-8a88-40dc-b150-53d9444cfa33-126355074887856130" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb MediaLab Sciencespo:penser d'abord interfaces entre Web semantique / Web social. Stiegler approuverait mais posons les bases", + "img": { + "src": "None" + }, + "title": "Vincent Puig: #museoweb MediaLab Sciencespo:penser d'abord interfaces entre Web semantique / Web social. Stiegler approuverait mais posons les bases", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10148000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb MediaLab Sciencespo:penser d'abord interfaces entre Web semantique \\/ Web social. Stiegler approuverait mais posons les bases\",\"created_at\":\"Tue Oct 18 17:53:50 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/amateur.iri.centrepompidou.fr\\/\\\" rel=\\\"nofollow\\\"\\u003EAnnotation pol\\u00e9mique par tweeter\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126355319147331584\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"default_profile\":true,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Mon Aug 24 14:49:27 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":176,\"description\":\"Co-founder of IRI\\/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.iri.centrepompidou.fr\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":0,\"id_str\":\"68424173\",\"listed_count\":11,\"friends_count\":5,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris, France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\",\"screen_name\":\"vincentpuig\",\"name\":\"Vincent Puig\",\"statuses_count\":367,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":68424173,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/379424006\\/PortaitVP120Ko_normal.jpg\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126355319147331584}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10148000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "6060eaad-04cd-4534-86d9-62d0f6f45ba8-126355319147331584" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", + "img": { + "src": "http://a1.twimg.com/profile_images/1594817766/Homer_Simpson_Sideart_Homebrew_normal.jpg" + }, + "title": "rafael vidal: RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web sémantique, sa construction http://t.co/A0mB7k4L où revoir ...", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10348000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @vpaillas: Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir ...\",\"created_at\":\"Tue Oct 18 17:57:10 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[25,34]},{\"text\":\"fabien_gandon\",\"indices\":[40,54]}],\"user_mentions\":[{\"indices\":[3,12],\"id_str\":\"72538763\",\"name\":\"Virginie Paillas\",\"screen_name\":\"vpaillas\",\"id\":72538763}],\"urls\":[{\"indices\":[106,126],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"web\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126356159790723072\",\"in_reply_to_status_id\":null,\"retweeted_status\":{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"Je regarde #museoweb avec #fabien_gandon et je comprends le web s\\u00e9mantique, sa construction http:\\/\\/t.co\\/A0mB7k4L o\\u00f9 revoir les vid\\u00e9os apr\\u00e8s?\",\"created_at\":\"Tue Oct 18 17:14:11 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[11,20]},{\"text\":\"fabien_gandon\",\"indices\":[26,40]}],\"user_mentions\":[],\"urls\":[{\"indices\":[92,112],\"url\":\"http:\\/\\/t.co\\/A0mB7k4L\",\"expanded_url\":\"http:\\/\\/bit.ly\\/o13ird\",\"display_url\":\"bit.ly\\/o13ird\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126345340868771841\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"252429\",\"default_profile\":false,\"created_at\":\"Tue Sep 08 12:20:07 +0000 2009\",\"lang\":\"fr\",\"time_zone\":\"London\",\"profile_sidebar_border_color\":\"181A1E\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"followers_count\":577,\"description\":\"Formatrice TIC : formation des enseignants et des formateurs du premier degr\\u00e9. Vif int\\u00e9r\\u00eat : place des services dits WEB20 dans la formation et l'enseignement\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"666666\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"favourites_count\":863,\"id_str\":\"72538763\",\"listed_count\":85,\"friends_count\":129,\"profile_link_color\":\"2FC2EF\",\"protected\":false,\"location\":\"Lourdes - France\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\",\"screen_name\":\"vpaillas\",\"name\":\"Virginie Paillas\",\"statuses_count\":1963,\"verified\":false,\"profile_background_color\":\"1A1B1F\",\"id\":72538763,\"profile_background_tile\":false,\"utc_offset\":0,\"profile_image_url\":\"http:\\/\\/a3.twimg.com\\/profile_images\\/409382566\\/13_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":false,\"id\":126345340868771841},\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"default_profile\":false,\"created_at\":\"Tue Mar 01 18:27:01 +0000 2011\",\"lang\":\"fr\",\"time_zone\":null,\"profile_sidebar_border_color\":\"DFDFDF\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"followers_count\":5,\"description\":\"\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a1.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"favourites_count\":0,\"id_str\":\"259363998\",\"listed_count\":1,\"friends_count\":58,\"profile_link_color\":\"990000\",\"protected\":false,\"location\":\"nimes\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1594817766\\/Homer_Simpson_Sideart_Homebrew_normal.jpg\",\"screen_name\":\"matcamga\",\"name\":\"rafael vidal\",\"statuses_count\":9,\"verified\":false,\"profile_background_color\":\"EBEBEB\",\"id\":259363998,\"profile_background_tile\":false,\"utc_offset\":null,\"profile_image_url\":\"http:\\/\\/a1.twimg.com\\/profile_images\\/1594817766\\/Homer_Simpson_Sideart_Homebrew_normal.jpg\"},\"retweet_count\":2,\"favorited\":false,\"truncated\":true,\"id\":126356159790723072}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10348000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + }, { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "f579e2b2-6de3-42ff-8dd4-bb5c8c00f2df-126356159790723072" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@aamonnz Si le bibliothécaire est vu comme une autorité incontournable qui empêche les productions collectives... #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: @aamonnz Si le bibliothécaire est vu comme une autorité incontournable qui empêche les productions collectives... #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10407000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"aamonnz\",\"in_reply_to_user_id\":7409472,\"text\":\"@aamonnz Si le biblioth\\u00e9caire est vu comme une autorit\\u00e9 incontournable qui emp\\u00eache les productions collectives... #museoweb\",\"created_at\":\"Tue Oct 18 17:58:09 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[114,123]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126352133011419136\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"7409472\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126356405048451072\",\"in_reply_to_status_id\":126352133011419136,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"default_profile\":true,\"listed_count\":60,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7534,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126356405048451072}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10407000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b5a664c5-da77-4a8a-a415-1585e936aacb-126356405048451072" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "@aamonnz Vu comme ça, ok, je comprends mieux. Même si la notion d'universelle est selon moi biaisée, dégagée des enjeux politiques #museoweb", + "img": { + "src": "http://a0.twimg.com/profile_images/1513105531/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png" + }, + "title": "gonzague gauthier: @aamonnz Vu comme ça, ok, je comprends mieux. Même si la notion d'universelle est selon moi biaisée, dégagée des enjeux politiques #museoweb", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10466000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":\"aamonnz\",\"in_reply_to_user_id\":7409472,\"text\":\"@aamonnz Vu comme \\u00e7a, ok, je comprends mieux. M\\u00eame si la notion d'universelle est selon moi biais\\u00e9e, d\\u00e9gag\\u00e9e des enjeux politiques #museoweb\",\"created_at\":\"Tue Oct 18 17:59:08 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[131,140]}],\"user_mentions\":[{\"indices\":[0,8],\"id_str\":\"7409472\",\"name\":\"Alexandre Monnin\",\"screen_name\":\"aamonnz\",\"id\":7409472}],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":\"126348997869842432\",\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":\"7409472\",\"contributors\":null,\"coordinates\":null,\"id_str\":\"126356653254787073\",\"in_reply_to_status_id\":126348997869842432,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Sun Apr 25 06:27:45 +0000 2010\",\"lang\":\"fr\",\"time_zone\":\"Paris\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":729,\"description\":\"Community manager #CM @centrepompidou \\/Th\\u00e9se \\u00e9tudes culturelles subcultures sida: pratiques politiques, discours symbolique #genre #geek #toys #sket #blackberry\",\"geo_enabled\":false,\"profile_use_background_image\":true,\"url\":null,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":231,\"id_str\":\"136900327\",\"listed_count\":60,\"friends_count\":425,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Paris \\/ Lille\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\",\"screen_name\":\"gonzagauthier\",\"name\":\"gonzague gauthier\",\"statuses_count\":7535,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":136900327,\"default_profile\":true,\"profile_background_tile\":false,\"utc_offset\":3600,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1513105531\\/5112ba88-d764-4be6-9587-e463a886e5e2_normal.png\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126356653254787073}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10466000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "28006bde-b985-41de-97bf-9988d13bdd5e-126356653254787073" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb discussion: Bernard Stiegler situates web communication as sociotechnical system, w/ affordances / model of exploiting user traces", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: #museoweb discussion: Bernard Stiegler situates web communication as sociotechnical system, w/ affordances / model of exploiting user traces", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10567000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb discussion: Bernard Stiegler situates web communication as sociotechnical system, w\\/ affordances \\/ model of exploiting user traces\",\"created_at\":\"Tue Oct 18 18:00:49 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126357078741753856\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":931,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126357078741753856}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10567000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "b747a160-2744-4f48-8886-5ca8b2d6bd6d-126357078741753856" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb symposium - fruitful debate spanning museum / digital culture practice, technologists, STS perspectives.", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: #museoweb symposium - fruitful debate spanning museum / digital culture practice, technologists, STS perspectives.", + "color": "16763904", + "polemics": [], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10787000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb symposium - fruitful debate spanning museum \\/ digital culture practice, technologists, STS perspectives.\",\"created_at\":\"Tue Oct 18 18:04:29 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126358001874509825\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"default_profile\":true,\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":932,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126358001874509825}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10787000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "0f1d1644-4a67-483c-8dd7-dc95ad2912d5-126358001874509825" + }, { + "content": { + "mimetype": "application/x-ldt-structured", + "description": "#museoweb Bernard Stiegler proposes three distinct articulations between folskonomy and ontology. Fascinating. http://t.co/Wc0TXvFN", + "img": { + "src": "http://a2.twimg.com/profile_images/1591816386/DSC07806_normal.JPG" + }, + "title": "Costis Dallas: #museoweb Bernard Stiegler proposes three distinct articulations between folskonomy and ontology. Fascinating. http://t.co/Wc0TXvFN", + "color": "16763904", + "polemics": ["REF"], + "audio": { + "mimetype": "audio/mp3", + "src": "", + "href": null + } + }, + "begin": 10875000, + "meta": { + "dc:contributor": "perso", + "dc:source": { + "mimetype": "application/json", + "url": "http://dev.twitter.com", + "content": "{\"in_reply_to_screen_name\":null,\"in_reply_to_user_id\":null,\"text\":\"#museoweb Bernard Stiegler proposes three distinct articulations between folskonomy and ontology. Fascinating. http:\\/\\/t.co\\/Wc0TXvFN\",\"created_at\":\"Tue Oct 18 18:05:57 +0000 2011\",\"entities\":{\"hashtags\":[{\"text\":\"museoweb\",\"indices\":[0,9]}],\"user_mentions\":[],\"urls\":[{\"indices\":[111,131],\"url\":\"http:\\/\\/t.co\\/Wc0TXvFN\",\"expanded_url\":\"http:\\/\\/bit.ly\\/mUjPrM\",\"display_url\":\"bit.ly\\/mUjPrM\"}]},\"retweeted\":false,\"in_reply_to_status_id_str\":null,\"place\":null,\"geo\":null,\"source\":\"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"coordinates\":null,\"id_str\":\"126358369127768065\",\"in_reply_to_status_id\":null,\"user\":{\"default_profile_image\":false,\"show_all_inline_media\":false,\"contributors_enabled\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"created_at\":\"Thu Feb 12 23:57:28 +0000 2009\",\"lang\":\"en\",\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_sidebar_border_color\":\"C0DEED\",\"follow_request_sent\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"followers_count\":335,\"description\":\"Working on museums, cultural management and digital curation in Athens & occasionally in Toronto.\\r\\nhttp:\\/\\/entopia.org\\/costisdallas\",\"geo_enabled\":true,\"profile_use_background_image\":true,\"url\":\"http:\\/\\/www.linkedin.com\\/in\\/CostisDallas\",\"default_profile\":true,\"following\":null,\"profile_text_color\":\"333333\",\"is_translator\":false,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"favourites_count\":13,\"id_str\":\"20733366\",\"listed_count\":24,\"friends_count\":151,\"profile_link_color\":\"0084B4\",\"protected\":false,\"location\":\"Athens, Greece\",\"notifications\":null,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\",\"screen_name\":\"costisd\",\"name\":\"Costis Dallas\",\"statuses_count\":933,\"verified\":false,\"profile_background_color\":\"C0DEED\",\"id\":20733366,\"profile_background_tile\":false,\"utc_offset\":-18000,\"profile_image_url\":\"http:\\/\\/a2.twimg.com\\/profile_images\\/1591816386\\/DSC07806_normal.JPG\"},\"retweet_count\":0,\"favorited\":false,\"truncated\":false,\"id\":126358369127768065}\n" + }, + "dc:creator": "perso", + "id-ref": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:modified": "2011-11-03T12:44:41.605056" + }, + "end": 10875000, + "tags": [ + { + "id-ref": "998e2a42-0619-11e1-9067-00145ea49a02" + } + ], + "color": "16763904", + "media": "76171168-ff2b-11e0-bfbc-00145ea49a02", + "id": "fe7553b0-0cc8-43c4-8d4c-f390a1b48d6f-126358369127768065" + } + ], + "annotation-types": [ + { + "dc:contributor": "perso", + "dc:creator": "perso", + "dc:title": "Intervention", + "id": "c_F0A74027-B9E8-AF6C-12C8-3BBCBF5BADB8", + "dc:created": "2011-11-03T12:44:41.600365", + "dc:description": "", + "dc:modified": "2011-11-03T12:44:41.600365" + }, { + "dc:contributor": "perso", + "dc:creator": "perso", + "dc:title": "Tweets", + "id": "732b819c-8f83-4458-88f1-242f0e8d3334", + "dc:created": "2011-11-03T12:44:41.605056", + "dc:description": "Tweets", + "dc:modified": "2011-11-03T12:44:41.605056" + } + ] } \ No newline at end of file diff -r 29f28a9f236f -r 41c574c807d1 test/model/test.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/model/test.html Wed Apr 11 16:39:03 2012 +0200 @@ -0,0 +1,24 @@ + + + + + Test Modèle de Données + + + + + + + + +

+ +