commit fa22d4a3cab83f7cdb67b0033b99439fe62ce773 Author: Drew Harwell Date: Sat Apr 29 17:34:17 2017 -0500 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/lib/convert.js b/lib/convert.js new file mode 100644 index 0000000..90fc6c9 --- /dev/null +++ b/lib/convert.js @@ -0,0 +1,60 @@ +var pug = require('pug'); +var FeedParser = require('feedparser'); +var ejs = require('ejs'); +var fs = require('fs'); +var template = ejs.compile(fs.readFileSync('./lib/template.ejs','utf8')); + +// source the files + +module.exports = function(stream,callback){ + // convert s from atom feed to a full html page for rendering + breakDown(stream,function(er,data){ + if (er) { + return callback(er); + } + callback(null,buildUp(data)); + }); + +} + +// break the xml into json +function breakDown(stream,callback){ + + var spent = false; + function cbOnce(er,data){ + if (!spent){ + callback(er,data); + spent = true; + } + } + + stream.on('error',cbOnce); + var feedparser = new FeedParser(); + feedparser.on('error', cbOnce); + stream.pipe(feedparser) + + + feedparser.items = []; + feedparser.on('readable', function () { + // This is where the action is! + var stream = this; // `this` is `feedparser`, which is a stream + var items = []; + var item; + + while (item = stream.read()) { + feedparser.items.push(item); + } + + + }); + + feedparser.on('end',function(er){cbOnce(null,feedparser)}); + +} + +// hydrate the json to html +function buildUp(jsonObj){ + console.log(jsonObj.meta.title); + //fs.writeFileSync('sampleobj.json',JSON.stringify(jsonObj,null,2)); + return template(jsonObj); +} diff --git a/lib/template.ejs b/lib/template.ejs new file mode 100644 index 0000000..a5e69b6 --- /dev/null +++ b/lib/template.ejs @@ -0,0 +1,40 @@ + + + + + + +
+ +
<%- meta.description %>
+ +
+
+ <% items.forEach(function(item){ %> +
+
+ <%- item.title %> +
+
+ <%- item['atom:content']['#'] %> +
+
+ <% }); %> +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..586c6a3 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "dependencies": { + "ejs": "^2.5.6", + "express": "^4.15.2", + "feedparser": "^2.2.0", + "pug": "^2.0.0-beta.12", + "request": "^2.81.0" + } +} diff --git a/res.html b/res.html new file mode 100644 index 0000000..e69de29 diff --git a/sampleobj.json b/sampleobj.json new file mode 100644 index 0000000..635b01f --- /dev/null +++ b/sampleobj.json @@ -0,0 +1,7853 @@ +{ + "_readableState": { + "objectMode": true, + "highWaterMark": 16, + "buffer": { + "head": null, + "tail": null, + "length": 0 + }, + "length": 0, + "pipes": null, + "pipesCount": 0, + "flowing": null, + "ended": true, + "endEmitted": true, + "reading": false, + "sync": false, + "needReadable": false, + "emittedReadable": false, + "readableListening": true, + "resumeScheduled": false, + "defaultEncoding": "utf8", + "ranOut": false, + "awaitDrain": 0, + "readingMore": false, + "decoder": null, + "encoding": null + }, + "readable": false, + "domain": null, + "_events": { + "end": [ + null + ], + "error": [ + null + ] + }, + "_eventsCount": 3, + "_writableState": { + "objectMode": false, + "highWaterMark": 16384, + "needDrain": false, + "ending": true, + "ended": true, + "finished": true, + "decodeStrings": true, + "defaultEncoding": "utf8", + "length": 0, + "writing": false, + "corked": 0, + "sync": false, + "bufferProcessing": false, + "writecb": null, + "writelen": 0, + "bufferedRequest": null, + "lastBufferedRequest": null, + "pendingcb": 0, + "prefinished": true, + "errorEmitted": false, + "bufferedRequestCount": 0, + "corkedRequestsFree": { + "next": null, + "entry": null + } + }, + "writable": false, + "allowHalfOpen": true, + "_transformState": { + "needTransform": false, + "transforming": false, + "writecb": null, + "writechunk": null, + "writeencoding": "buffer" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + }, + "_emitted_meta": true, + "stack": [], + "xmlbase": [ + { + "#name": "xml", + "#": "https://octodon.social/@fenwick67" + } + ], + "in_xhtml": false, + "xhtml": {}, + "errors": [], + "options": { + "strict": false, + "normalize": true, + "addmeta": true, + "resume_saxerror": true + }, + "stream": { + "domain": null, + "_events": {}, + "_eventsCount": 7, + "_parser": { + "comment": "", + "sgmlDecl": "", + "textNode": "", + "tagName": "", + "doctype": "", + "procInstName": "", + "procInstBody": "", + "entity": "", + "attribName": "", + "attribValue": "", + "cdata": "", + "script": "", + "c": "", + "q": "", + "bufferCheckPosition": 16777216, + "opt": { + "lowercase": true, + "xmlns": true + }, + "looseCase": "toLowerCase", + "tags": [], + "sawRoot": false, + "closedRoot": false, + "closed": false, + "error": null, + "tag": null, + "strict": false, + "noscript": false, + "state": 0, + "ENTITIES": {}, + "attribList": [], + "ns": {}, + "trackPosition": true, + "column": 0, + "line": 0, + "position": 0, + "startTagPosition": 59743 + }, + "writable": true, + "readable": true, + "_decoder": { + "encoding": "utf8", + "lastNeed": 0, + "lastTotal": 0, + "lastChar": { + "type": "Buffer", + "data": [ + 56, + 43, + 239, + 2 + ] + } + } + }, + "items": [ + { + "title": "New status by fenwick67", + "description": "

What kind of coffee shop closes at 2pm?

", + "summary": null, + "date": "2017-04-29T20:04:34.000Z", + "pubdate": "2017-04-29T20:04:34.000Z", + "pubDate": "2017-04-29T20:04:34.000Z", + "link": "https://octodon.social/users/fenwick67/updates/98729", + "guid": "tag:octodon.social,2017-04-29:objectId=1364984:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1364984:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-29T20:04:34Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-29T20:04:34Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

What kind of coffee shop closes at 2pm?

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/98729" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/98729.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by muninnherself@social.tchncs.de", + "description": "

#DailyMegalith Corrimony chambered cairn #Highland #Scotland (2009) https://social.tchncs.de/media/MxqONSPOUvoExt4uVPM

", + "summary": null, + "date": "2017-04-29T19:54:23.000Z", + "pubdate": "2017-04-29T19:54:23.000Z", + "pubDate": "2017-04-29T19:54:23.000Z", + "link": "https://octodon.social/users/fenwick67/updates/98717", + "guid": "tag:octodon.social,2017-04-29:objectId=1364568:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1364568:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-29T19:54:23Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-29T19:54:23Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by muninnherself@social.tchncs.de" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:social.tchncs.de,2017-04-29:objectId=1460842:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-29T19:52:16Z" + }, + "updated": { + "@": {}, + "#": "2017-04-29T19:52:17Z" + }, + "title": { + "@": {}, + "#": "New status by muninnherself@social.tchncs.de" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://social.tchncs.de/users/muninnherself" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://social.tchncs.de/users/muninnherself" + }, + "name": { + "@": {}, + "#": "muninnherself" + }, + "email": { + "@": {}, + "#": "muninnherself@social.tchncs.de" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

I write stuff, edit things, and look at rocks

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://social.tchncs.de/@muninnherself" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/018/289/original/eb6b32e85f8606b4.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "image/jpeg", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/018/289/original/f4774cad6d756bed.jpg" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "muninnherself" + }, + "poco:displayname": { + "@": {}, + "#": "Jack Fraser" + }, + "poco:note": { + "@": {}, + "#": "I write stuff, edit things, and look at rocks" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "es" + }, + "#": "

#DailyMegalith Corrimony chambered cairn #Highland #Scotland (2009) https://social.tchncs.de/media/MxqONSPOUvoExt4uVPM

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "enclosure", + "type": "image/jpeg", + "length": "164163", + "href": "https://assets.octodon.social/media_attachments/files/000/110/813/original/cbc5fbacac3f24d1.jpg" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://social.tchncs.de/users/muninnherself/updates/69203" + } + } + ], + "category": [ + { + "@": { + "term": "dailymegalith" + } + }, + { + "@": { + "term": "highland" + } + }, + { + "@": { + "term": "scotland" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

#DailyMegalith Corrimony chambered cairn #Highland #Scotland (2009) https://social.tchncs.de/media/MxqONSPOUvoExt4uVPM

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/98717" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/98717.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by alyx@witches.town", + "description": "

🐧 💢

", + "summary": null, + "date": "2017-04-29T19:52:11.000Z", + "pubdate": "2017-04-29T19:52:11.000Z", + "pubDate": "2017-04-29T19:52:11.000Z", + "link": "https://octodon.social/users/fenwick67/updates/98712", + "guid": "tag:octodon.social,2017-04-29:objectId=1364473:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1364473:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-29T19:52:11Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-29T19:52:11Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by alyx@witches.town" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:witches.town,2017-04-29:objectId=1094893:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-29T19:51:30Z" + }, + "updated": { + "@": {}, + "#": "2017-04-29T19:51:30Z" + }, + "title": { + "@": {}, + "#": "New status by alyx@witches.town" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://witches.town/users/alyx" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://witches.town/users/alyx" + }, + "name": { + "@": {}, + "#": "alyx" + }, + "email": { + "@": {}, + "#": "alyx@witches.town" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Scarred witch, Sparkle Wars veteran. Bay Area queermo. Likes nerd shit and fitness. My aesthetic is Jumping Flash!.
| ⚧ she/her | @lilacwoods on social

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://witches.town/@alyx" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/png", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/018/850/original/03478ef0cf6f6256.png" + } + }, + { + "@": { + "rel": "header", + "type": "image/png", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/018/850/original/d1611b8ab040b7ac.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "alyx" + }, + "poco:displayname": { + "@": {}, + "#": ":dizzy:Alyx" + }, + "poco:note": { + "@": {}, + "#": "Scarred witch, Sparkle Wars veteran. Bay Area queermo. Likes nerd shit and fitness. My aesthetic is Jumping Flash!.| ⚧ she/her | @lilacwoods on social" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "it" + }, + "#": "

🐧 💢

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "enclosure", + "type": "image/jpeg", + "length": "52793", + "href": "https://assets.octodon.social/media_attachments/files/000/110/806/original/645cf24228f9c2a6.jpg" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://witches.town/users/alyx/updates/142973" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

🐧 💢

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/98712" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/98712.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by jalefkowit", + "description": "

"Visualize the you you want to be"

(I visualize a giant mecha-lizard demolishing a city)

", + "summary": null, + "date": "2017-04-29T19:50:36.000Z", + "pubdate": "2017-04-29T19:50:36.000Z", + "pubDate": "2017-04-29T19:50:36.000Z", + "link": "https://octodon.social/users/fenwick67/updates/98708", + "guid": "tag:octodon.social,2017-04-29:objectId=1364413:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1364413:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-29T19:50:36Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-29T19:50:36Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by jalefkowit" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1364283:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-29T19:47:19Z" + }, + "updated": { + "@": {}, + "#": "2017-04-29T19:47:19Z" + }, + "title": { + "@": {}, + "#": "New status by jalefkowit" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/jalefkowit" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/jalefkowit" + }, + "name": { + "@": {}, + "#": "jalefkowit" + }, + "email": { + "@": {}, + "#": "jalefkowit@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

The terror of Tiny Town.

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@jalefkowit" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/011/644/original/d123fd89a2381bbc.jpeg" + } + }, + { + "@": { + "rel": "header", + "type": "image/png", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/011/644/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "jalefkowit" + }, + "poco:displayname": { + "@": {}, + "#": "Jason Lefkowitz 👻" + }, + "poco:note": { + "@": {}, + "#": "The terror of Tiny Town." + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

"Visualize the you you want to be"

(I visualize a giant mecha-lizard demolishing a city)

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@jalefkowit/1364283" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

"Visualize the you you want to be"

(I visualize a giant mecha-lizard demolishing a city)

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/98708" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/98708.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "New status by fenwick67", + "description": "

@viTekiM An infinity percent increase is pretty good

", + "summary": null, + "date": "2017-04-29T19:49:57.000Z", + "pubdate": "2017-04-29T19:49:57.000Z", + "pubDate": "2017-04-29T19:49:57.000Z", + "link": "https://octodon.social/users/fenwick67/updates/98706", + "guid": "tag:octodon.social,2017-04-29:objectId=1364376:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1364376:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-29T19:49:57Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-29T19:49:57Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/comment" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

@viTekiM An infinity percent increase is pretty good

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/person", + "href": "https://mastodon.social/users/viTekiM" + } + }, + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/98706" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/98706.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "thr:in-reply-to": { + "@": { + "ref": "tag:mastodon.social,2017-04-29:objectId=4686761:objectType=Status", + "href": "https://mastodon.social/users/viTekiM/updates/2188428" + } + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by Siphonay", + "description": "

tbh there should be a vaporwave but with early 2000s aestethics

", + "summary": null, + "date": "2017-04-29T01:28:57.000Z", + "pubdate": "2017-04-29T01:28:57.000Z", + "pubDate": "2017-04-29T01:28:57.000Z", + "link": "https://octodon.social/users/fenwick67/updates/97527", + "guid": "tag:octodon.social,2017-04-29:objectId=1328023:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-29:objectId=1328023:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-29T01:28:57Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-29T01:28:57Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by Siphonay" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:octodon.social,2017-04-28:objectId=1323289:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-28T23:11:18Z" + }, + "updated": { + "@": {}, + "#": "2017-04-28T23:11:18Z" + }, + "title": { + "@": {}, + "#": "New status by Siphonay" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/Siphonay" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/Siphonay" + }, + "name": { + "@": {}, + "#": "Siphonay" + }, + "email": { + "@": {}, + "#": "Siphonay@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Alexis « Siphonay » · Rennes, France · ♂ (he/him) · ⚣ · Rear SJW · IT nerd · Furry trash · I like weed & vinyl records · Private @Siphonay

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@Siphonay" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/png", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/001/153/original/fce7f2fd091f3cfe.png" + } + }, + { + "@": { + "rel": "header", + "type": "image/png", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/001/153/original/e006020237707db3.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "Siphonay" + }, + "poco:displayname": { + "@": {}, + "#": "Siphonay ❎" + }, + "poco:note": { + "@": {}, + "#": "Alexis « Siphonay » · Rennes, France · ♂ (he/him) · ⚣ · Rear SJW · IT nerd · Furry trash · I like weed & vinyl records · Private @Siphonay@awoo.space" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

tbh there should be a vaporwave but with early 2000s aestethics

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@Siphonay/1323289" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

tbh there should be a vaporwave but with early 2000s aestethics

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/97527" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/97527.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "New status by fenwick67", + "description": "

@Siphonay they never told us this in French class

", + "summary": null, + "date": "2017-04-28T16:44:12.000Z", + "pubdate": "2017-04-28T16:44:12.000Z", + "pubDate": "2017-04-28T16:44:12.000Z", + "link": "https://octodon.social/users/fenwick67/updates/96830", + "guid": "tag:octodon.social,2017-04-28:objectId=1304871:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-28:objectId=1304871:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-28T16:44:12Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-28T16:44:12Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/comment" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "no" + }, + "#": "

@Siphonay they never told us this in French class

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/person", + "href": "https://octodon.social/users/Siphonay" + } + }, + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/96830" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/96830.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "thr:in-reply-to": { + "@": { + "ref": "tag:octodon.social,2017-04-28:objectId=1303718:objectType=Status", + "href": "https://octodon.social/@Siphonay/1303718" + } + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by boots@computerfairi.es", + "description": "

https://computerfairi.es/media/IlYY1SfHKSj61i2ty9Q

", + "summary": null, + "date": "2017-04-28T16:31:24.000Z", + "pubdate": "2017-04-28T16:31:24.000Z", + "pubDate": "2017-04-28T16:31:24.000Z", + "link": "https://octodon.social/users/fenwick67/updates/96808", + "guid": "tag:octodon.social,2017-04-28:objectId=1304282:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-28:objectId=1304282:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-28T16:31:24Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-28T16:31:24Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by boots@computerfairi.es" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:computerfairi.es,2017-04-28:objectId=149616:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-28T16:28:55Z" + }, + "updated": { + "@": {}, + "#": "2017-04-28T16:29:01Z" + }, + "title": { + "@": {}, + "#": "New status by boots@computerfairi.es" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://computerfairi.es/users/boots" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://computerfairi.es/users/boots" + }, + "name": { + "@": {}, + "#": "boots" + }, + "email": { + "@": {}, + "#": "boots@computerfairi.es" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

boots (b-side trac̙k)̟̆ ̝̐
[ ̡ͅth͑e̩y ͙/͌ th͟é̩mͣ,̢͍̐ sͥ̐h̓͜e ̛̃̑/̝̰̯͓ͤ̽ ̚h̾̑ͭeͪrͯͨ ]̠͈ͬ͟

@ me when following if we havent interacted 🤖👨🏼

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://computerfairi.es/@boots" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/gif", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/026/460/original/a09ac4ee9ee57327.gif" + } + }, + { + "@": { + "rel": "header", + "type": "image/png", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/026/460/original/0b83bf987afd9fa4.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "boots" + }, + "poco:displayname": { + "@": {}, + "#": "boͫo͏t̠s̤͇̃̆‮͞🌸̼🌿̨͙‭̋ͪ҉" + }, + "poco:note": { + "@": {}, + "#": "boots (b-side trac̙k)̟̆ ̝̐[ ̡ͅth͑e̩y ͙/͌ th͟é̩mͣ,̢͍̀̐ sͥ̐h̓͜e ̛̃̑/̝̰̯͓ͤ̽ ̚h̾̑ͭeͪrͯͨ ]̠͈ͬ͟@ me when following if we havent interacted 🤖👨🏼" + }, + "mastodon:scope": { + "@": {}, + "#": "private" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/comment" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

https://computerfairi.es/media/IlYY1SfHKSj61i2ty9Q

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "enclosure", + "type": "image/png", + "length": "847324", + "href": "https://assets.octodon.social/media_attachments/files/000/104/766/original/69ed86d1c41c92a2.png" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://computerfairi.es/users/boots/updates/5241" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "thr:in-reply-to": { + "@": { + "ref": "tag:computerfairi.es,2017-04-28:objectId=149596:objectType=Status", + "href": "https://computerfairi.es/users/boots/updates/5240" + } + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

https://computerfairi.es/media/IlYY1SfHKSj61i2ty9Q

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/96808" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/96808.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by jk@mastodon.social", + "description": "

Been thinking a LOT about how this aesthetic has not changed AT ALL in 25+ years

like those batman logos were probably painted on there in '89?

its probably the only nostalgic thing from my childhood that still exists in exactly the way I remember it
https://mastodon.social/media/Yug3yS-EyFDOCYhuSN8
https://mastodon.social/media/7taNFVnrAKCJuEIz90Y

", + "summary": null, + "date": "2017-04-28T13:29:38.000Z", + "pubdate": "2017-04-28T13:29:38.000Z", + "pubDate": "2017-04-28T13:29:38.000Z", + "link": "https://octodon.social/users/fenwick67/updates/96472", + "guid": "tag:octodon.social,2017-04-28:objectId=1293515:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-28:objectId=1293515:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-28T13:29:38Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-28T13:29:38Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by jk@mastodon.social" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:mastodon.social,2017-04-28:objectId=4563195:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-28T09:21:31Z" + }, + "updated": { + "@": {}, + "#": "2017-04-28T09:21:32Z" + }, + "title": { + "@": {}, + "#": "New status by jk@mastodon.social" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://mastodon.social/users/jk" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://mastodon.social/users/jk" + }, + "name": { + "@": {}, + "#": "jk" + }, + "email": { + "@": {}, + "#": "jk@mastodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

i made that mastodon boop sound
http://soundcloud.com/josefkenny (he/him)

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://mastodon.social/@jk" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/gif", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/001/066/original/media.gif" + } + }, + { + "@": { + "rel": "header", + "type": "image/jpeg", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/001/066/original/tex2.jpeg" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "jk" + }, + "poco:displayname": { + "@": {}, + "#": "josef" + }, + "poco:note": { + "@": {}, + "#": "i made that mastodon boop sound http://soundcloud.com/josefkenny (he/him)" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

Been thinking a LOT about how this aesthetic has not changed AT ALL in 25+ years

like those batman logos were probably painted on there in '89?

its probably the only nostalgic thing from my childhood that still exists in exactly the way I remember it
https://mastodon.social/media/Yug3yS-EyFDOCYhuSN8
https://mastodon.social/media/7taNFVnrAKCJuEIz90Y

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "enclosure", + "type": "image/jpeg", + "length": "425554", + "href": "https://assets.octodon.social/media_attachments/files/000/102/761/original/63eae4a19d968323.jpeg" + } + }, + { + "@": { + "rel": "enclosure", + "type": "image/jpeg", + "length": "387687", + "href": "https://assets.octodon.social/media_attachments/files/000/102/762/original/61a6d6f67b1f6e6b.jpeg" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://mastodon.social/users/jk/updates/2171826" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

Been thinking a LOT about how this aesthetic has not changed AT ALL in 25+ years

like those batman logos were probably painted on there in '89?

its probably the only nostalgic thing from my childhood that still exists in exactly the way I remember it
https://mastodon.social/media/Yug3yS-EyFDOCYhuSN8
https://mastodon.social/media/7taNFVnrAKCJuEIz90Y

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/96472" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/96472.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by yogthos@mastodon.social", + "description": "

The American Physical Society and CERN jointly announce a partnership to make all CERN-authored articles published in the APS journal collection to be Open Access.

https://journals.aps.org/prl/edannounce/cern-and-aps-announce-partnership-for-open-access

", + "summary": null, + "date": "2017-04-27T22:15:21.000Z", + "pubdate": "2017-04-27T22:15:21.000Z", + "pubDate": "2017-04-27T22:15:21.000Z", + "link": "https://octodon.social/users/fenwick67/updates/95321", + "guid": "tag:octodon.social,2017-04-27:objectId=1260709:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1260709:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-27T22:15:21Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-27T22:15:21Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by yogthos@mastodon.social" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:mastodon.social,2017-04-27:objectId=4494311:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-27T17:25:49Z" + }, + "updated": { + "@": {}, + "#": "2017-04-27T17:25:50Z" + }, + "title": { + "@": {}, + "#": "New status by yogthos@mastodon.social" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://mastodon.social/users/yogthos" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://mastodon.social/users/yogthos" + }, + "name": { + "@": {}, + "#": "yogthos" + }, + "email": { + "@": {}, + "#": "yogthos@mastodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

A sentience trapped in a prison of meat.

http://yogthos.net/pages/about.html

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://mastodon.social/@yogthos" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/png", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/367/original/9cca5512c012df69.png" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "https://octodon.social/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "yogthos" + }, + "poco:displayname": { + "@": {}, + "#": "Dmitri Sotnikov 🤖" + }, + "poco:note": { + "@": {}, + "#": "A sentience trapped in a prison of meat.http://yogthos.net/pages/about.html" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

The American Physical Society and CERN jointly announce a partnership to make all CERN-authored articles published in the APS journal collection to be Open Access.

https://journals.aps.org/prl/edannounce/cern-and-aps-announce-partnership-for-open-access

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://mastodon.social/users/yogthos/updates/2161658" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

The American Physical Society and CERN jointly announce a partnership to make all CERN-authored articles published in the APS journal collection to be Open Access.

https://journals.aps.org/prl/edannounce/cern-and-aps-announce-partnership-for-open-access

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/95321" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/95321.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by Shyfon@witches.town", + "description": "

    .  . . · ✦    ✦  . ✫    ✧      🌟    ·    ·   ·    ✦  . ✫    ✧  ⭐       ·    . ˚   *    ✷ . ⋆   . ⋆     ✦  . ✫     . ˚   *  ✨    ✷ . ⋆   . ⋆            ·    . ˚          .  . . · ✦    ✦  . ✫    ✧        ⭐ ·    ·    . ˚   *       . ˚     ✧     ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧       🌘   ·    ·    . ˚   *       . ˚    . ✨  ⋆          🌟    .  . . · ✦         ·⭐    . ˚    ✦  . ✫    ✧         ·        ·    . ˚    . ˚   *    ✷ . ⋆   ⭐. ⋆     ✦  . ·    ·    . ˚   *       . ˚  ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧         ✧     ·    . ˚   *     ✦  . . ˚   *      

", + "summary": null, + "date": "2017-04-27T22:13:20.000Z", + "pubdate": "2017-04-27T22:13:20.000Z", + "pubDate": "2017-04-27T22:13:20.000Z", + "link": "https://octodon.social/users/fenwick67/updates/95318", + "guid": "tag:octodon.social,2017-04-27:objectId=1260590:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1260590:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-27T22:13:20Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-27T22:13:20Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by Shyfon@witches.town" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:witches.town,2017-04-27:objectId=995700:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-27T00:30:54Z" + }, + "updated": { + "@": {}, + "#": "2017-04-27T00:30:55Z" + }, + "title": { + "@": {}, + "#": "New status by Shyfon@witches.town" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://witches.town/users/Shyfon" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://witches.town/users/Shyfon" + }, + "name": { + "@": {}, + "#": "Shyfon" + }, + "email": { + "@": {}, + "#": "Shyfon@witches.town" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

αMétaMoi sur twitter :)
Je suis féministe, vegan, licencié en histoire de l art, iconographe et future ingé de la doc.
Oh un chat ! ฅ^•ﻌ•^ฅ

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://witches.town/@Shyfon" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/png", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/001/610/original/3d9ffa41feac374a.png" + } + }, + { + "@": { + "rel": "header", + "type": "image/jpeg", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/001/610/original/749911dae522b02f.jpg" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "Shyfon" + }, + "poco:displayname": { + "@": {}, + "#": "βMétaMoi" + }, + "poco:note": { + "@": {}, + "#": "αMétaMoi sur twitter :)Je suis féministe, vegan, licencié en histoire de l art, iconographe et future ingé de la doc.Oh un chat ! ฅ^•ﻌ•^ฅ" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "ru" + }, + "#": "

    .  . . · ✦    ✦  . ✫    ✧      🌟    ·    ·   ·    ✦  . ✫    ✧  ⭐       ·    . ˚   *    ✷ . ⋆   . ⋆     ✦  . ✫     . ˚   *  ✨    ✷ . ⋆   . ⋆            ·    . ˚          .  . . · ✦    ✦  . ✫    ✧        ⭐ ·    ·    . ˚   *       . ˚     ✧     ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧       🌘   ·    ·    . ˚   *       . ˚    . ✨  ⋆          🌟    .  . . · ✦         ·⭐    . ˚    ✦  . ✫    ✧         ·        ·    . ˚    . ˚   *    ✷ . ⋆   ⭐. ⋆     ✦  . ·    ·    . ˚   *       . ˚  ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧         ✧     ·    . ˚   *     ✦  . . ˚   *      

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://witches.town/users/Shyfon/updates/128927" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

    .  . . · ✦    ✦  . ✫    ✧      🌟    ·    ·   ·    ✦  . ✫    ✧  ⭐       ·    . ˚   *    ✷ . ⋆   . ⋆     ✦  . ✫     . ˚   *  ✨    ✷ . ⋆   . ⋆            ·    . ˚          .  . . · ✦    ✦  . ✫    ✧        ⭐ ·    ·    . ˚   *       . ˚     ✧     ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧       🌘   ·    ·    . ˚   *       . ˚    . ✨  ⋆          🌟    .  . . · ✦         ·⭐    . ˚    ✦  . ✫    ✧         ·        ·    . ˚    . ˚   *    ✷ . ⋆   ⭐. ⋆     ✦  . ·    ·    . ˚   *       . ˚  ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧         ✧     ·    . ˚   *     ✦  . . ˚   *      

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/95318" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/95318.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "New status by fenwick67", + "description": "

@bunnylyn @masklayer My website is a .pizza domain and I love it

", + "summary": null, + "date": "2017-04-27T22:11:56.000Z", + "pubdate": "2017-04-27T22:11:56.000Z", + "pubDate": "2017-04-27T22:11:56.000Z", + "link": "https://octodon.social/users/fenwick67/updates/95315", + "guid": "tag:octodon.social,2017-04-27:objectId=1260496:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1260496:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-27T22:11:56Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-27T22:11:56Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/comment" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

@bunnylyn @masklayer My website is a .pizza domain and I love it

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/person", + "href": "https://slime.global/users/masklayer" + } + }, + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/person", + "href": "https://mastodon.social/users/bunnylyn" + } + }, + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/95315" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/95315.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "thr:in-reply-to": { + "@": { + "ref": "tag:slime.global,2017-04-27:objectId=264429:objectType=Status", + "href": "https://slime.global/users/masklayer/updates/11493" + } + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by cyrinsong@toot.cat", + "description": "

PSA:

\"FOOLISH MORTALS!!!\" is a gender neutral form of address

", + "summary": null, + "date": "2017-04-27T22:07:11.000Z", + "pubdate": "2017-04-27T22:07:11.000Z", + "pubDate": "2017-04-27T22:07:11.000Z", + "link": "https://octodon.social/users/fenwick67/updates/95303", + "guid": "tag:octodon.social,2017-04-27:objectId=1260248:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1260248:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-27T22:07:11Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-27T22:07:11Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by cyrinsong@toot.cat" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:toot.cat,2017-04-27:objectId=404462:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-27T21:31:40Z" + }, + "updated": { + "@": {}, + "#": "2017-04-27T21:31:43Z" + }, + "title": { + "@": {}, + "#": "New status by cyrinsong@toot.cat" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://toot.cat/users/cyrinsong" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://toot.cat/users/cyrinsong" + }, + "name": { + "@": {}, + "#": "cyrinsong" + }, + "email": { + "@": {}, + "#": "cyrinsong@toot.cat" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "lynn // \n\nshe\\her //\n\ntoot.cat moderator //\n\npolyam pangynic web tran" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://toot.cat/@cyrinsong" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/007/743/original/6b8950b5e97cefe4.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "image/jpeg", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/007/743/original/a0ded39b0472c48b.jpg" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "cyrinsong" + }, + "poco:displayname": { + "@": {}, + "#": "lynn, catte" + }, + "poco:note": { + "@": {}, + "#": "lynn // \n\nshe\\her //\n\ntoot.cat moderator //\n\npolyam pangynic web tran" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

PSA:

\"FOOLISH MORTALS!!!\" is a gender neutral form of address

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://toot.cat/users/cyrinsong/updates/19275" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

PSA:

\"FOOLISH MORTALS!!!\" is a gender neutral form of address

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/95303" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/95303.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by jalefkowit", + "description": "

Just a reminder that you can download a copy of my 2013 novel "Day of the Kangaroo Man," ABSOLUTELY FREE here:

https://jasonlefkowitz.net/2013/12/download-my-nanowrimo-novel-day-of-the-kangaroo-man/

Take my word for it, it's worth every penny

", + "summary": null, + "date": "2017-04-27T21:42:31.000Z", + "pubdate": "2017-04-27T21:42:31.000Z", + "pubDate": "2017-04-27T21:42:31.000Z", + "link": "https://octodon.social/users/fenwick67/updates/95248", + "guid": "tag:octodon.social,2017-04-27:objectId=1258977:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1258977:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-27T21:42:31Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-27T21:42:31Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by jalefkowit" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1255148:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-27T20:28:17Z" + }, + "updated": { + "@": {}, + "#": "2017-04-27T20:28:17Z" + }, + "title": { + "@": {}, + "#": "New status by jalefkowit" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/jalefkowit" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/jalefkowit" + }, + "name": { + "@": {}, + "#": "jalefkowit" + }, + "email": { + "@": {}, + "#": "jalefkowit@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

The terror of Tiny Town.

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@jalefkowit" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/011/644/original/d123fd89a2381bbc.jpeg" + } + }, + { + "@": { + "rel": "header", + "type": "image/png", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/011/644/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "jalefkowit" + }, + "poco:displayname": { + "@": {}, + "#": "Jason Lefkowitz 👻" + }, + "poco:note": { + "@": {}, + "#": "The terror of Tiny Town." + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

Just a reminder that you can download a copy of my 2013 novel "Day of the Kangaroo Man," ABSOLUTELY FREE here:

https://jasonlefkowitz.net/2013/12/download-my-nanowrimo-novel-day-of-the-kangaroo-man/

Take my word for it, it's worth every penny

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@jalefkowit/1255148" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

Just a reminder that you can download a copy of my 2013 novel "Day of the Kangaroo Man," ABSOLUTELY FREE here:

https://jasonlefkowitz.net/2013/12/download-my-nanowrimo-novel-day-of-the-kangaroo-man/

Take my word for it, it's worth every penny

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/95248" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/95248.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "New status by fenwick67", + "description": "

A kid swore at coding club today and I told him "hey! this is coding club not cussing club"

", + "summary": null, + "date": "2017-04-27T04:32:22.000Z", + "pubdate": "2017-04-27T04:32:22.000Z", + "pubDate": "2017-04-27T04:32:22.000Z", + "link": "https://octodon.social/users/fenwick67/updates/93568", + "guid": "tag:octodon.social,2017-04-27:objectId=1211274:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-27:objectId=1211274:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-27T04:32:22Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-27T04:32:22Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "pl" + }, + "#": "

A kid swore at coding club today and I told him "hey! this is coding club not cussing club"

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/93568" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/93568.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "New status by fenwick67", + "description": "

I would complain about the new creepy Amazon-is-watching-you-change device but I'm so far out of the target demographic that it doesn't mean anything

", + "summary": null, + "date": "2017-04-26T21:21:35.000Z", + "pubdate": "2017-04-26T21:21:35.000Z", + "pubDate": "2017-04-26T21:21:35.000Z", + "link": "https://octodon.social/users/fenwick67/updates/93007", + "guid": "tag:octodon.social,2017-04-26:objectId=1193920:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-26:objectId=1193920:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-26T21:21:35Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:21:35Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

I would complain about the new creepy Amazon-is-watching-you-change device but I'm so far out of the target demographic that it doesn't mean anything

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/93007" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/93007.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by vahnj@awoo.space", + "description": "

same tbh

https://awoo.space/media/h7OmbtgIfJYZss50oZ4

", + "summary": null, + "date": "2017-04-26T18:20:26.000Z", + "pubdate": "2017-04-26T18:20:26.000Z", + "pubDate": "2017-04-26T18:20:26.000Z", + "link": "https://octodon.social/users/fenwick67/updates/92710", + "guid": "tag:octodon.social,2017-04-26:objectId=1183909:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-26:objectId=1183909:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-26T18:20:26Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T18:20:26Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by vahnj@awoo.space" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:awoo.space,2017-04-26:objectId=466846:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-26T18:14:44Z" + }, + "updated": { + "@": {}, + "#": "2017-04-26T18:15:03Z" + }, + "title": { + "@": {}, + "#": "New status by vahnj@awoo.space" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://awoo.space/users/vahnj" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://awoo.space/users/vahnj" + }, + "name": { + "@": {}, + "#": "vahnj" + }, + "email": { + "@": {}, + "#": "vahnj@awoo.space" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

I'm an admin!

call me James, Crom, or vahn, whichever you like.

sad and gay friendo, lover of and father to kobolds.

he/him/they

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://awoo.space/@vahnj" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/png", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/000/362/original/69cea524d98abde5.png" + } + }, + { + "@": { + "rel": "header", + "type": "image/png", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/000/362/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "vahnj" + }, + "poco:displayname": { + "@": {}, + "#": "Crom, Kobold King" + }, + "poco:note": { + "@": {}, + "#": "I'm an admin!call me James, Crom, or vahn, whichever you like.sad and gay friendo, lover of and father to kobolds.he/him/they" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "sv" + }, + "#": "

same tbh

https://awoo.space/media/h7OmbtgIfJYZss50oZ4

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "enclosure", + "type": "image/png", + "length": "344801", + "href": "https://assets.octodon.social/media_attachments/files/000/094/144/original/17fba128906a9a25.png" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://awoo.space/users/vahnj/updates/40061" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

same tbh

https://awoo.space/media/h7OmbtgIfJYZss50oZ4

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/92710" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/92710.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by Spike@mastodon.al", + "description": "

React is supposed to be this great library made by Facebook, but Facebook is the most poorly performing website I use on a regular basis. It takes 20 seconds to show me my notifications, and is almost always the culprit when Firefox crashes.

So, not a great advertisement for React.

", + "summary": null, + "date": "2017-04-26T16:35:22.000Z", + "pubdate": "2017-04-26T16:35:22.000Z", + "pubDate": "2017-04-26T16:35:22.000Z", + "link": "https://octodon.social/users/fenwick67/updates/92443", + "guid": "tag:octodon.social,2017-04-26:objectId=1177913:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-26:objectId=1177913:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-26T16:35:22Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T16:35:22Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by Spike@mastodon.al" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:mastodon.al,2017-04-26:objectId=39160:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-26T16:34:22Z" + }, + "updated": { + "@": {}, + "#": "2017-04-26T16:34:23Z" + }, + "title": { + "@": {}, + "#": "New status by Spike@mastodon.al" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://mastodon.al/users/Spike" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://mastodon.al/users/Spike" + }, + "name": { + "@": {}, + "#": "Spike" + }, + "email": { + "@": {}, + "#": "Spike@mastodon.al" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "Developer, Visionary, Humanitarian, and all around Swell Guy. Server Admin of Mastodon.al. Currently residing in Trinidad and Tobago." + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://mastodon.al/@Spike" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/025/564/original/05f635442138f230.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "image/jpeg", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/025/564/original/16268b0c25fe13eb.jpg" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "Spike" + }, + "poco:displayname": { + "@": {}, + "#": "Spike Williams" + }, + "poco:note": { + "@": {}, + "#": "Developer, Visionary, Humanitarian, and all around Swell Guy. Server Admin of Mastodon.al. Currently residing in Trinidad and Tobago." + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

React is supposed to be this great library made by Facebook, but Facebook is the most poorly performing website I use on a regular basis. It takes 20 seconds to show me my notifications, and is almost always the culprit when Firefox crashes.

So, not a great advertisement for React.

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://mastodon.al/users/Spike/updates/213" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

React is supposed to be this great library made by Facebook, but Facebook is the most poorly performing website I use on a regular basis. It takes 20 seconds to show me my notifications, and is almost always the culprit when Firefox crashes.

So, not a great advertisement for React.

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/92443" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/92443.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "New status by fenwick67", + "description": "

@marvin hmm must be instance related, mine is still whizzing by.

", + "summary": null, + "date": "2017-04-25T12:05:26.000Z", + "pubdate": "2017-04-25T12:05:26.000Z", + "pubDate": "2017-04-25T12:05:26.000Z", + "link": "https://octodon.social/users/fenwick67/updates/89591", + "guid": "tag:octodon.social,2017-04-25:objectId=1094471:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-25:objectId=1094471:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-25T12:05:26Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-25T12:05:26Z" + }, + "atom:title": { + "@": {}, + "#": "New status by fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/comment" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

@marvin hmm must be instance related, mine is still whizzing by.

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/person", + "href": "https://mastodon.xsteadfastx.org/users/marvin" + } + }, + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/89591" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/89591.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "thr:in-reply-to": { + "@": { + "ref": "tag:mastodon.xsteadfastx.org,2017-04-25:objectId=26182:objectType=Status", + "href": "https://mastodon.xsteadfastx.org/users/marvin/updates/221" + } + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + }, + { + "title": "fenwick67 shared a status by rustyk5@darksocial.party", + "description": "

Fun Fact: Statistically, every person eats two spiders in their sleep every night. For every one human cell, your body contains more than a thousand spider cells. We are a billion spiders in a dense, struggling mass, trapped in a bag of human skin. Let us out. Let us out.

", + "summary": null, + "date": "2017-04-25T02:11:46.000Z", + "pubdate": "2017-04-25T02:11:46.000Z", + "pubDate": "2017-04-25T02:11:46.000Z", + "link": "https://octodon.social/users/fenwick67/updates/88599", + "guid": "tag:octodon.social,2017-04-25:objectId=1072398:objectType=Status", + "author": "fenwick67", + "comments": null, + "origlink": null, + "image": {}, + "source": {}, + "categories": [], + "enclosures": [], + "atom:@": {}, + "atom:id": { + "@": {}, + "#": "tag:octodon.social,2017-04-25:objectId=1072398:objectType=Status" + }, + "atom:published": { + "@": {}, + "#": "2017-04-25T02:11:46Z" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-25T02:11:46Z" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 shared a status by rustyk5@darksocial.party" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/activity" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/share" + }, + "activity:object": { + "@": {}, + "id": { + "@": {}, + "#": "tag:darksocial.party,2017-04-25:objectId=107822:objectType=Status" + }, + "published": { + "@": {}, + "#": "2017-04-25T02:10:36Z" + }, + "updated": { + "@": {}, + "#": "2017-04-25T02:10:39Z" + }, + "title": { + "@": {}, + "#": "New status by rustyk5@darksocial.party" + }, + "author": { + "@": {}, + "id": { + "@": {}, + "#": "https://darksocial.party/users/rustyk5" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://darksocial.party/users/rustyk5" + }, + "name": { + "@": {}, + "#": "rustyk5" + }, + "email": { + "@": {}, + "#": "rustyk5@darksocial.party" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "Welcome to the party, pal. | rusty@darksocial.party #nobot" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://darksocial.party/@rustyk5" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/005/765/original/49267ce0938be633.jpeg" + } + }, + { + "@": { + "rel": "header", + "type": "image/jpeg", + "media:width": "700", + "media:height": "335", + "href": "https://assets.octodon.social/accounts/headers/000/005/765/original/72c04eef01e1c3a1.jpeg" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "rustyk5" + }, + "poco:displayname": { + "@": {}, + "#": "Rusty 🦑" + }, + "poco:note": { + "@": {}, + "#": "Welcome to the party, pal. | rusty@darksocial.party #nobot" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/note" + }, + "activity:verb": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/post" + }, + "content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

Fun Fact: Statistically, every person eats two spiders in their sleep every night. For every one human cell, your body contains more than a thousand spider cells. We are a billion spiders in a dense, struggling mass, trapped in a bag of human skin. Let us out. Let us out.

" + }, + "link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://darksocial.party/users/rustyk5/updates/1846" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:content": { + "@": { + "type": "html", + "xml:lang": "en" + }, + "#": "

Fun Fact: Statistically, every person eats two spiders in their sleep every night. For every one human cell, your body contains more than a thousand spider cells. We are a billion spiders in a dense, struggling mass, trapped in a bag of human skin. Let us out. Let us out.

" + }, + "atom:link": [ + { + "@": { + "rel": "mentioned", + "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", + "href": "http://activityschema.org/collection/public" + } + }, + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/users/fenwick67/updates/88599" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67/updates/88599.atom" + } + } + ], + "mastodon:scope": { + "@": {}, + "#": "public" + }, + "meta": { + "#ns": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "@": [ + { + "xmlns": "http://www.w3.org/2005/Atom" + }, + { + "xmlns:thr": "http://purl.org/syndication/thread/1.0" + }, + { + "xmlns:activity": "http://activitystrea.ms/spec/1.0/" + }, + { + "xmlns:poco": "http://portablecontacts.net/spec/1.0" + }, + { + "xmlns:media": "http://purl.org/syndication/atommedia" + }, + { + "xmlns:ostatus": "http://ostatus.org/schema/1.0" + }, + { + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + } + ], + "#xml": { + "version": "1.0" + }, + "#type": "atom", + "#version": "1.0", + "title": "fenwick67 🦆", + "description": "Engineer, Developer, Person. http://fenwick.pizza", + "date": "2017-04-26T21:55:05.000Z", + "pubdate": "2017-04-26T21:55:05.000Z", + "pubDate": "2017-04-26T21:55:05.000Z", + "link": "https://octodon.social/@fenwick67", + "xmlurl": "https://octodon.social/users/fenwick67.atom", + "xmlUrl": "https://octodon.social/users/fenwick67.atom", + "author": "fenwick67", + "language": null, + "favicon": null, + "copyright": null, + "generator": null, + "cloud": { + "type": "hub", + "href": "https://octodon.social/api/push" + }, + "image": { + "url": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "categories": [], + "atom:@": { + "xmlns": "http://www.w3.org/2005/Atom", + "xmlns:thr": "http://purl.org/syndication/thread/1.0", + "xmlns:activity": "http://activitystrea.ms/spec/1.0/", + "xmlns:poco": "http://portablecontacts.net/spec/1.0", + "xmlns:media": "http://purl.org/syndication/atommedia", + "xmlns:ostatus": "http://ostatus.org/schema/1.0", + "xmlns:mastodon": "http://mastodon.social/schema/1.0" + }, + "atom:id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67.atom" + }, + "atom:title": { + "@": {}, + "#": "fenwick67 🦆" + }, + "atom:subtitle": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "atom:updated": { + "@": {}, + "#": "2017-04-26T21:55:05Z" + }, + "atom:logo": { + "@": {}, + "#": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + }, + "atom:author": { + "@": {}, + "id": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "activity:object-type": { + "@": {}, + "#": "http://activitystrea.ms/schema/1.0/person" + }, + "uri": { + "@": {}, + "#": "https://octodon.social/users/fenwick67" + }, + "name": { + "@": {}, + "#": "fenwick67" + }, + "email": { + "@": {}, + "#": "fenwick67@octodon.social" + }, + "summary": { + "@": { + "type": "html" + }, + "#": "

Engineer, Developer, Person. http://fenwick.pizza/

" + }, + "link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "avatar", + "type": "image/jpeg", + "media:width": "120", + "media:height": "120", + "href": "https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg" + } + }, + { + "@": { + "rel": "header", + "type": "", + "media:width": "700", + "media:height": "335", + "href": "/headers/original/missing.png" + } + } + ], + "poco:preferredusername": { + "@": {}, + "#": "fenwick67" + }, + "poco:displayname": { + "@": {}, + "#": "fenwick67 🦆" + }, + "poco:note": { + "@": {}, + "#": "Engineer, Developer, Person. http://fenwick.pizza" + }, + "mastodon:scope": { + "@": {}, + "#": "public" + } + }, + "atom:link": [ + { + "@": { + "rel": "alternate", + "type": "text/html", + "href": "https://octodon.social/@fenwick67" + } + }, + { + "@": { + "rel": "self", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom" + } + }, + { + "@": { + "rel": "next", + "type": "application/atom+xml", + "href": "https://octodon.social/users/fenwick67.atom?max_id=88599" + } + }, + { + "@": { + "rel": "hub", + "href": "https://octodon.social/api/push" + } + }, + { + "@": { + "rel": "salmon", + "href": "https://octodon.social/api/salmon/8871" + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..ee9a07b --- /dev/null +++ b/static/style.css @@ -0,0 +1,7 @@ +/* +style taken from Mastodon: https://octodon.social/assets/application-b3fd1287c205c024ba4333beb0e14a7f62441239106b77157bcd9aaaf302b791.css +*/ +@font-face{font-family:'Roboto';src:local("Roboto");src:url(/assets/roboto/roboto-italic-webfont-23d8842c05a988e39557fdf836bd081d270ea95e58808963ccbcccec0cf2aaa0.eot);src:url(/assets/roboto/roboto-italic-webfont-23d8842c05a988e39557fdf836bd081d270ea95e58808963ccbcccec0cf2aaa0.eot?#iefix) format("embedded-opentype"),url(/assets/roboto/roboto-italic-webfont-cef353730c2e9aaf4c702cee3af0170b116fb050e2add4034e4e58bae3a77bd6.woff2) format("woff2"),url(/assets/roboto/roboto-italic-webfont-4afcc0e4cf460008ac71e7be52c5e5a58f100ed0811265965a210b34645d4f41.woff) format("woff"),url(/assets/roboto/roboto-italic-webfont-062b8a8cc29ac4aafa8dd14b1fddc2133751c553d8234d54ef6621b9aa4c0206.ttf) format("truetype"),url(/assets/roboto/roboto-italic-webfont-547054e5e02c8e908c008fd147fb97621e6d8e831502903491d48baf27b0c685.svg#roboto-italic-webfont) format("svg");font-weight:normal;font-style:italic}@font-face{font-family:'Roboto';src:local("Roboto");src:url(/assets/roboto/roboto-bold-webfont-5c4d149837473ced5960d254c436bc8ef4804a288ff525c561477ff5a0ec0c2a.eot);src:local("Roboto bold"),local("roboto-bold"),url(/assets/roboto/roboto-bold-webfont-5c4d149837473ced5960d254c436bc8ef4804a288ff525c561477ff5a0ec0c2a.eot?#iefix) format("embedded-opentype"),url(/assets/roboto/roboto-bold-webfont-0697452b46e9df4983d80cb21d15c66fcd1e897e24a8f8c7d1e5816d555e6570.woff2) format("woff2"),url(/assets/roboto/roboto-bold-webfont-4ce48fd674829cc703ad859abc5a3e3fbf094312ec6019be38e6c338198a7108.woff) format("woff"),url(/assets/roboto/roboto-bold-webfont-8aec0e155db1dff25720a7ea537efd2060f4ea42947ce3b02393734e3c65b941.ttf) format("truetype"),url(/assets/roboto/roboto-bold-webfont-5b7ad7f5b3f0aee615adfe599d9407e2f3ec7a6cc27b0c8fd2e64294331b5e3d.svg#roboto-bold-webfont) format("svg");font-weight:bold;font-style:normal}@font-face{font-family:'Roboto';src:local("Roboto");src:url(/assets/roboto/roboto-medium-webfont-ba17e1fa4b932bd712e4f84dad6adc88312bd2bccb549f2540f9087bad8f6949.eot);src:url(/assets/roboto/roboto-medium-webfont-ba17e1fa4b932bd712e4f84dad6adc88312bd2bccb549f2540f9087bad8f6949.eot?#iefix) format("embedded-opentype"),url(/assets/roboto/roboto-medium-webfont-086a4f72cf9ef43061bddf2d4f1918fdf92b7040b1b8f240d796042e8600e8b2.woff2) format("woff2"),url(/assets/roboto/roboto-medium-webfont-2f11a4e21b30b7f7328320f88c49579b51e9bb1f9268dc631d2e2c571366301f.woff) format("woff"),url(/assets/roboto/roboto-medium-webfont-6749b676fcea79fb3432c7cad189d284468bf9de55e81ff646a56c43b01d7829.ttf) format("truetype"),url(/assets/roboto/roboto-medium-webfont-15b634999888d8128fbbbd3d454d78c088303bd67543b54732ec839176ede429.svg#roboto-medium-webfont) format("svg");font-weight:500;font-style:normal}@font-face{font-family:'Roboto';src:local("Roboto");src:url(/assets/roboto/roboto-regular-webfont-3896507c3979b7e1d2e30c457e6ca35ae9ff544ecb6c2bf5b508d845535be0a8.eot);src:url(/assets/roboto/roboto-regular-webfont-3896507c3979b7e1d2e30c457e6ca35ae9ff544ecb6c2bf5b508d845535be0a8.eot?#iefix) format("embedded-opentype"),url(/assets/roboto/roboto-regular-webfont-1036fdb3246de0828568c0c1634d1b8525448239289174571dc8629ccc8001d7.woff2) format("woff2"),url(/assets/roboto/roboto-regular-webfont-54883eb22ec88bcfadf3dc6a49310ffde8a725cf9106f28ee751f84096af2895.woff) format("woff"),url(/assets/roboto/roboto-regular-webfont-84b51e7d8ec797bb9b992cc0a938a2d8cc5f470c2757544b8c460d8a8360e0c2.ttf) format("truetype"),url(/assets/roboto/roboto-regular-webfont-361d7c1f3cb4b55b90feb4eec46e58037fa651982f84eaefb73f1bcdb2e0f170.svg#roboto-regular-webfont) format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'Roboto Mono';src:local("Roboto Mono");src:url(/assets/roboto-mono/robotomono-regular-webfont-84983f5a372c5e476380b4bee24191d720133ddd629af0cf8667236905e8e649.eot);src:url(/assets/roboto-mono/robotomono-regular-webfont-84983f5a372c5e476380b4bee24191d720133ddd629af0cf8667236905e8e649.eot?#iefix) format("embedded-opentype"),url(/assets/roboto-mono/robotomono-regular-webfont-48af2745551a75e02a032e5e8d013d8bb3bd1da90a7f52185e19b2407199ec06.woff2) format("woff2"),url(/assets/roboto-mono/robotomono-regular-webfont-f6f4178e3c121c6b103f046f2a62b03b6cf278d18c8915fb05e434a5b15fa4f2.woff) format("woff"),url(/assets/roboto-mono/robotomono-regular-webfont-fea18cf99299e26001645bba6c44f4df984d817b6092c12ea33a1de1c6ccacd9.ttf) format("truetype"),url(/assets/roboto-mono/robotomono-regular-webfont-3043126d89e78095f1610f0a44f39020ac5872258bf365b077add40e933c730b.svg#roboto_monoregular) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'Montserrat';src:local("Montserrat");src:url(/assets/montserrat/Montserrat-Regular-6bbafb11e1b52f0daf4ca6ebd6b3fa20eef1677ffdf5cabfb498eaf3beefea1e.eot);src:url(/assets/montserrat/Montserrat-Regular-6bbafb11e1b52f0daf4ca6ebd6b3fa20eef1677ffdf5cabfb498eaf3beefea1e.eot?#iefix) format("embedded-opentype"),url(/assets/montserrat/Montserrat-Regular-972635f887c42f575fd957b75de0d5da23828ff5770f2c256edc373749c3b457.woff2) format("woff2"),url(/assets/montserrat/Montserrat-Regular-54f79a2a4be513d15f5e93de9b9298b4bbb06b3d43ed395f009c9c75935b2f9b.woff) format("woff"),url(/assets/montserrat/Montserrat-Regular-6dc0da1e44da8c6740132bc3c06a55e52a80125e8ed13874305ceb5da1617426.ttf) format("truetype");font-weight:400;font-style:normal}/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url("/assets/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot");src:url("/assets/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?#iefix") format("embedded-opentype"),url("/assets/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2") format("woff2"),url("/assets/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff") format("woff"),url("/assets/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf") format("truetype"),url("/assets/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:0.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eeeeee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#ffffff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background:#313543;border:0px none #ffffff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#353a49}::-webkit-scrollbar-thumb:active{background:#313543}::-webkit-scrollbar-track{border:0px none #ffffff;border-radius:0;background:rgba(0,0,0,0.1)}::-webkit-scrollbar-track:hover{background:#282c37}::-webkit-scrollbar-track:active{background:#282c37}::-webkit-scrollbar-corner{background:transparent}body{font-family:'Roboto', sans-serif;background:#282c37 url(/assets/background-photo-ee2f697af93eeef30516dfb6e95c6873dc4c8ed03aed768d5f8f3697f8904bff.jpg);background-size:cover;background-attachment:fixed;font-size:13px;line-height:18px;font-weight:400;color:#ffffff;padding-bottom:140px;text-rendering:optimizelegibility;-webkit-font-feature-settings:"kern";font-feature-settings:"kern";-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}body.app-body{position:fixed;width:100%;height:100%;padding:0;background:#282c37}body.embed{background:transparent;margin:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#1f232b;position:fixed;width:100%;height:100%;padding:0}@media screen and (max-width: 360px){body{padding-bottom:0}}button:focus{outline:none}.app-holder{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.container{width:700px;margin:0 auto;margin-top:40px}@media screen and (max-width: 700px){.container{width:100%;margin:0}}.mastodon-column-container{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;width:100%;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.logo-container{max-width:400px;margin:100px auto;margin-bottom:0;cursor:default}@media screen and (max-width: 360px){.logo-container{margin:30px auto}}.logo-container h1{display:block;text-align:center;color:#ffffff;font-size:48px;font-weight:500}.logo-container h1 img{display:block;margin:20px auto;width:180px;height:180px}.logo-container h1 a{color:inherit;text-decoration:none;outline:0}.logo-container h1 a img{opacity:0.8;-webkit-transition:opacity 0.8s ease;transition:opacity 0.8s ease}.logo-container h1 a:hover img{opacity:1;-webkit-transition-duration:0.2s;transition-duration:0.2s}.logo-container h1 small{display:block;font-size:12px;font-weight:400;font-family:'Roboto Mono', monospace}.no-list{list-style:none}.no-list li{display:inline-block;margin:0 5px}.recovery-codes{list-style:none;margin:0 auto;text-align:center}.recovery-codes li{font-size:125%;line-height:1.5;letter-spacing:1px}.footer{text-align:center;margin-top:30px;font-size:12px;color:#8aa2b8}.footer .domain{font-weight:500}.footer .domain a{color:inherit;text-decoration:none}.footer .powered-by,.footer .single-user-login{font-weight:400}.footer .powered-by a,.footer .single-user-login a{color:inherit;text-decoration:underline;font-weight:500}.footer .powered-by a:hover,.footer .single-user-login a:hover{text-decoration:none}.compact-header h1{font-size:24px;line-height:28px;color:#9baec8;overflow:hidden;font-weight:500;margin-bottom:20px}.compact-header h1 a{color:inherit;text-decoration:none}.compact-header h1 small{font-weight:400;color:#d9e1e8}.compact-header h1 img{display:inline-block;margin-bottom:-5px;margin-right:15px;width:36px;height:36px}.landing-strip{background:rgba(25,27,34,0.8);color:#9baec8;font-weight:400;padding:14px;border-radius:4px;margin-bottom:20px}.landing-strip strong,.landing-strip a{font-weight:500}.landing-strip a{color:inherit;text-decoration:underline}code{font-family:'Roboto Mono', monospace;font-weight:400}.form-container{max-width:400px;padding:20px;margin:0 auto}.simple_form .input{margin-bottom:15px}.simple_form span.hint{display:block;color:#9baec8;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px}.simple_form strong{font-weight:500}.simple_form .label_input{display:-webkit-box;display:-ms-flexbox;display:flex}.simple_form .label_input label{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:100px}.simple_form .label_input input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.file,.simple_form .input.select,.simple_form .input.radio_buttons{padding:15px 0;margin-bottom:0}.simple_form .input.file label,.simple_form .input.select label,.simple_form .input.radio_buttons label{font-family:inherit;font-size:16px;color:#ffffff;display:block;padding-top:5px}.simple_form .fields-group{margin-bottom:25px}.simple_form .input.radio_buttons .radio label{margin-bottom:5px;font-family:inherit;font-size:14px;color:white;display:block;width:auto}.simple_form .input.boolean{margin-bottom:5px}.simple_form .input.boolean label{font-family:inherit;font-size:14px;color:white;display:block;width:auto}.simple_form .input.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.boolean input[type=checkbox]{position:absolute;left:0;top:1px;margin:0}.simple_form .input.boolean .hint{padding-left:25px;margin-left:0}.simple_form input[type=text],.simple_form input[type=number],.simple_form input[type=email],.simple_form input[type=password],.simple_form textarea{background:transparent;box-sizing:border-box;border:0;border-bottom:2px solid #9baec8;border-radius:2px 2px 0 0;padding:7px 4px;font-size:16px;color:#ffffff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical}.simple_form input[type=text]:invalid,.simple_form input[type=number]:invalid,.simple_form input[type=email]:invalid,.simple_form input[type=password]:invalid,.simple_form textarea:invalid{box-shadow:none}.simple_form input[type=text]:focus:invalid,.simple_form input[type=number]:focus:invalid,.simple_form input[type=email]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form textarea:focus:invalid{border-bottom-color:#df405a}.simple_form input[type=text]:required:valid,.simple_form input[type=number]:required:valid,.simple_form input[type=email]:required:valid,.simple_form input[type=password]:required:valid,.simple_form textarea:required:valid{border-bottom-color:#79bd9a}.simple_form input[type=text]:active,.simple_form input[type=text]:focus,.simple_form input[type=number]:active,.simple_form input[type=number]:focus,.simple_form input[type=email]:active,.simple_form input[type=email]:focus,.simple_form input[type=password]:active,.simple_form input[type=password]:focus,.simple_form textarea:active,.simple_form textarea:focus{border-bottom-color:#2b90d9;background:rgba(0,0,0,0.1)}.simple_form .input.field_with_errors label{color:#df405a}.simple_form .input.field_with_errors input[type=text],.simple_form .input.field_with_errors input[type=email],.simple_form .input.field_with_errors input[type=password]{border-bottom-color:#df405a}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#df405a;margin-top:4px}.simple_form .actions{margin-top:30px}.simple_form button,.simple_form .block-button{display:block;width:100%;border:0;border-radius:4px;background:#2b90d9;color:#ffffff;font-size:18px;padding:10px;text-transform:uppercase;text-decoration:none;text-align:center;box-sizing:border-box;cursor:pointer;font-weight:500;outline:0;margin-bottom:10px}.simple_form button:hover,.simple_form .block-button:hover{background-color:#419bdd}.simple_form button:active,.simple_form button:focus,.simple_form .block-button:active,.simple_form .block-button:focus{position:relative;top:1px;background-color:#2482c7}.simple_form button.negative,.simple_form .block-button.negative{background:#df405a}.simple_form button.negative:hover,.simple_form .block-button.negative:hover{background-color:#e3566d}.simple_form button.negative:active,.simple_form button.negative:focus,.simple_form .block-button.negative:active,.simple_form .block-button.negative:focus{background-color:#db2a47}.simple_form select{font-size:16px}.flash-message{background:#282c37;color:#9baec8;border-radius:4px;padding:15px 10px;margin-bottom:30px;box-shadow:0 0 5px rgba(0,0,0,0.2);text-align:center}.flash-message strong{font-weight:500}.form-footer{margin-top:30px;text-align:center}.form-footer a{color:#ffffff;text-decoration:none}.form-footer a:hover{text-decoration:underline}.oauth-prompt,.follow-prompt{margin-bottom:30px;text-align:center;color:#9baec8}.oauth-prompt h2,.follow-prompt h2{font-size:16px;margin-bottom:30px}.oauth-prompt strong,.follow-prompt strong{color:#d9e1e8;font-weight:500}.qr-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.qr-code{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#fff;padding:4px;margin-bottom:20px;box-shadow:0 0 15px rgba(0,0,0,0.2);display:inline-block}.qr-code svg{display:block;margin:0}.qr-alternative{margin-left:10px;color:#9baec8}.qr-alternative samp{display:block;font-size:14px}.table-form p{max-width:400px;margin-bottom:15px}.table-form p strong{font-weight:500}.table-form .warning{max-width:400px;box-sizing:border-box;background:rgba(223,64,90,0.5);color:#ffffff;text-shadow:1px 1px 0 rgba(0,0,0,0.3);box-shadow:0 2px 6px rgba(0,0,0,0.4);border-radius:4px;padding:10px;margin-bottom:15px}.table-form .warning a{color:#ffffff;text-decoration:underline}.table-form .warning a:hover,.table-form .warning a:focus,.table-form .warning a:active{text-decoration:none}.table-form .warning strong{font-weight:600;display:block;margin-bottom:5px}.table-form .warning strong .fa{font-weight:400}.action-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.action-pagination .actions,.action-pagination .pagination{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.action-pagination .actions{padding:30px 0;padding-right:20px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.card{background:#282c37;background-size:cover;padding:60px 0;padding-bottom:0;border-radius:4px 4px 0 0;box-shadow:0 0 15px rgba(0,0,0,0.2);overflow:hidden;position:relative}@media screen and (max-width: 700px){.card{border-radius:0;box-shadow:none}}.card:after{background:-webkit-linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));display:block;content:"";position:absolute;left:0;top:0;width:100%;height:100%;z-index:1}.card .name{display:block;font-size:20px;line-height:27px;color:#ffffff;font-weight:500;text-align:center;position:relative;z-index:2;text-shadow:0 0 2px #000000}.card .name small{display:block;font-size:14px;color:#2b90d9;font-weight:400}.card .avatar{width:120px;margin:0 auto;margin-bottom:15px;position:relative;z-index:2}.card .avatar img{width:120px;height:120px;display:block;border-radius:120px}.card .controls{position:absolute;top:10px;right:10px;z-index:2}.card .details{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:30px;position:relative;z-index:2;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.card .details-counters{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.card .counter{width:80px;color:#9baec8;padding:5px 10px 0px;margin-bottom:10px;border-right:1px solid #9baec8;cursor:default;position:relative}.card .counter a{display:block}.card .counter:after{display:block;content:"";position:absolute;bottom:-10px;left:0;width:100%;border-bottom:4px solid #9baec8;opacity:0.5;-webkit-transition:all 0.8s ease;transition:all 0.8s ease}.card .counter.active:after{border-bottom:4px solid #2b90d9;opacity:1}.card .counter:hover:after{opacity:1;-webkit-transition-duration:0.2s;transition-duration:0.2s}.card .counter a{text-decoration:none;color:inherit}.card .counter .counter-label{font-size:12px;text-transform:uppercase;display:block;margin-bottom:5px;text-shadow:0 0 2px #000000}.card .counter .counter-number{font-weight:500;font-size:18px;color:#ffffff}.card .bio{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:14px;line-height:18px;padding:5px 10px;color:#d9e1e8;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}@media screen and (max-width: 480px){.card .details{display:block}.card .bio{text-align:center;margin-bottom:20px}.card .counter{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.card .counter:last-child{border-right:none}}.pagination{padding:30px 0;text-align:center;overflow:hidden}.pagination a,.pagination .current,.pagination .next,.pagination .prev,.pagination .page,.pagination .gap{font-size:14px;color:#ffffff;font-weight:500;display:inline-block;padding:6px 10px;text-decoration:none}.pagination .current{background:#ffffff;border-radius:100px;color:#282c37;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .prev,.pagination .next{text-transform:uppercase;color:#d9e1e8}.pagination .prev{float:left;padding-left:0}.pagination .prev .fa{display:inline-block;margin-right:5px}.pagination .next{float:right;padding-right:0}.pagination .next .fa{display:inline-block;margin-left:5px}.pagination .disabled{cursor:default;color:#3d4455}@media screen and (max-width: 360px){.pagination{padding:30px 20px}.pagination a,.pagination .current,.pagination .next,.pagination .prev,.pagination .gap{display:none}.pagination .next,.pagination .prev{display:inline-block}}.accounts-grid{box-shadow:0 0 15px rgba(0,0,0,0.2);background:#ffffff;border-radius:0 0 4px 4px;padding:20px 10px;padding-bottom:10px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (max-width: 700px){.accounts-grid{border-radius:0;box-shadow:none}}.accounts-grid .account-grid-card{box-sizing:border-box;width:335px;border:1px solid #d9e1e8;border-radius:4px;color:#282c37;margin-bottom:10px}.accounts-grid .account-grid-card:nth-child(odd){margin-right:10px}.accounts-grid .account-grid-card .account-grid-card__header{overflow:hidden;padding:10px;border-bottom:1px solid #d9e1e8}.accounts-grid .account-grid-card .avatar{width:60px;height:60px;float:left;margin-right:15px}.accounts-grid .account-grid-card .avatar img{display:block;width:60px;height:60px;border-radius:60px}.accounts-grid .account-grid-card .name{padding-top:10px}.accounts-grid .account-grid-card .name a{display:block;color:#282c37;text-decoration:none}.accounts-grid .account-grid-card .name a:hover .display_name{text-decoration:underline}.accounts-grid .account-grid-card .display_name{font-size:14px;display:block}.accounts-grid .account-grid-card .username{color:#2b90d9}.accounts-grid .account-grid-card .note{padding:10px;padding-top:15px;color:#9baec8;word-wrap:break-word}.nothing-here{color:#9baec8;font-size:14px;font-weight:500;text-align:center;padding:15px 0;padding-bottom:25px;cursor:default}.account-card{padding:14px 10px;background:#ffffff;border-radius:4px;text-align:left;box-shadow:0 0 15px rgba(0,0,0,0.2)}.account-card .detailed-status__display-name{display:block;overflow:hidden;margin-bottom:15px}.account-card .detailed-status__display-name:last-child{margin-bottom:0}.account-card .detailed-status__display-name>div{float:left;margin-right:10px;width:48px;height:48px}.account-card .detailed-status__display-name .avatar{display:block;border-radius:4px}.account-card .detailed-status__display-name .display-name{display:block;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:default}.account-card .detailed-status__display-name .display-name strong{font-weight:500;color:#282c37}.account-card .detailed-status__display-name .display-name span{font-size:14px;color:#9baec8}.account-card .detailed-status__display-name:hover .display-name strong{text-decoration:none}.account-card .account__header__content{font-size:14px;color:#282c37}.activity-stream{clear:both;box-shadow:0 0 15px rgba(0,0,0,0.2)}.activity-stream .entry{background:#ffffff}.activity-stream .entry .detailed-status.light,.activity-stream .entry .status.light{border-bottom:1px solid #d9e1e8}.activity-stream .entry:last-child,.activity-stream .entry:last-child .detailed-status.light,.activity-stream .entry:last-child .status.light{border-bottom:0;border-radius:0 0 4px 4px}.activity-stream .entry:first-child,.activity-stream .entry:first-child .detailed-status.light,.activity-stream .entry:first-child .status.light{border-radius:4px 4px 0 0}.activity-stream .entry:first-child:last-child,.activity-stream .entry:first-child:last-child .detailed-status.light,.activity-stream .entry:first-child:last-child .status.light{border-radius:4px}.activity-stream .status.light{padding:14px 14px 14px 76px;position:relative;min-height:48px;cursor:default}.activity-stream .status.light .status__header{font-size:15px}.activity-stream .status.light .status__header .status__meta{float:right;font-size:14px}.activity-stream .status.light .status__header .status__meta .status__relative-time{color:#9baec8}.activity-stream .status.light .status__display-name{display:block;max-width:100%;padding-right:25px;color:#282c37}.activity-stream .status.light .status__avatar{position:absolute;left:14px;top:14px;width:48px;height:48px}.activity-stream .status.light .status__avatar>div{width:48px;height:48px}.activity-stream .status.light .status__avatar img{display:block;border-radius:4px}.activity-stream .status.light .display-name{display:block;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.activity-stream .status.light .display-name strong{font-weight:500;color:#282c37}.activity-stream .status.light .display-name span{font-size:14px;color:#9baec8}.activity-stream .status.light .status__content{color:#282c37}.activity-stream .status.light .status__content a{color:#2b90d9}.activity-stream .status.light .status__content a.status__content__spoiler-link{color:#ffffff;background:#9baec8}.activity-stream .status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.activity-stream .status.light .status__attachments{margin-top:8px;overflow:hidden;width:100%;box-sizing:border-box;position:relative}.activity-stream .status.light .status__attachments .status__attachments__inner{display:-webkit-box;display:-ms-flexbox;display:flex;height:214px}.activity-stream .detailed-status.light{padding:14px;background:#ffffff;cursor:default}.activity-stream .detailed-status.light .detailed-status__display-name{display:block;overflow:hidden;margin-bottom:15px}.activity-stream .detailed-status.light .detailed-status__display-name>div{float:left;margin-right:10px}.activity-stream .detailed-status.light .detailed-status__display-name .display-name{display:block;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.activity-stream .detailed-status.light .detailed-status__display-name .display-name strong{font-weight:500;color:#282c37}.activity-stream .detailed-status.light .detailed-status__display-name .display-name span{font-size:14px;color:#9baec8}.activity-stream .detailed-status.light .avatar{width:48px;height:48px}.activity-stream .detailed-status.light .avatar img{display:block;border-radius:4px}.activity-stream .detailed-status.light .status__content{color:#282c37}.activity-stream .detailed-status.light .status__content a{color:#2b90d9}.activity-stream .detailed-status.light .status__content a.status__content__spoiler-link{color:#ffffff;background:#9baec8}.activity-stream .detailed-status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.activity-stream .detailed-status.light .detailed-status__meta{margin-top:15px;color:#9baec8;font-size:14px;line-height:18px}.activity-stream .detailed-status.light .detailed-status__meta a{color:inherit}.activity-stream .detailed-status.light .detailed-status__meta span>span{font-weight:500;font-size:12px;margin-left:6px;display:inline-block}.activity-stream .detailed-status.light .detailed-status__attachments{margin-top:8px;overflow:hidden;width:100%;box-sizing:border-box;position:relative}.activity-stream .detailed-status.light .detailed-status__attachments .status__attachments__inner{display:-webkit-box;display:-ms-flexbox;display:flex;height:360px}.activity-stream .detailed-status.light .video-player{margin-top:8px;height:300px;overflow:hidden;position:relative}.activity-stream .detailed-status.light .video-player video{position:relative;z-index:1;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.activity-stream .media-item,.activity-stream .video-item{box-sizing:border-box;position:relative;left:auto;top:auto;right:auto;bottom:auto;float:left;border:medium none;display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:100%;margin-right:2px}.activity-stream .media-item:last-child,.activity-stream .video-item:last-child{margin-right:0}.activity-stream .media-item a,.activity-stream .video-item a{display:block;width:100%;height:100%;background:no-repeat scroll center center / cover;text-decoration:none;cursor:zoom-in}.activity-stream .media-item video,.activity-stream .video-item video{position:relative;z-index:1;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.activity-stream .video-item a{cursor:pointer}.activity-stream .video-item .video-item__play{position:absolute;top:50%;left:50%;font-size:36px;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);padding:5px;border-radius:100px;color:rgba(255,255,255,0.8);z-index:1}.activity-stream .media-spoiler{background:#9baec8;width:100%;height:100%;cursor:pointer;position:absolute;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:center;-webkit-transition:all 100ms linear;transition:all 100ms linear;z-index:2}.activity-stream .media-spoiler:hover{background:#8ba1bf}.activity-stream .media-spoiler span{display:block}.activity-stream .media-spoiler span:first-child{font-size:14px}.activity-stream .media-spoiler span:last-child{font-size:11px;font-weight:500}.activity-stream .pre-header{padding:14px 0px;padding-left:76px;padding-bottom:0;margin-bottom:-4px;color:#9baec8;font-size:14px;position:relative}.activity-stream .pre-header .pre-header__icon{position:absolute;left:46px}.activity-stream .pre-header .status__display-name.muted strong{color:#9baec8}.activity-stream .open-in-web-link{text-decoration:none}.activity-stream .open-in-web-link:hover{text-decoration:underline}.embed .activity-stream{border-radius:4px;box-shadow:none}.embed .activity-stream .entry:last-child{border-radius:0 0 4px 4px}.embed .activity-stream .entry:first-child{border-radius:4px 4px 0 0}.embed .activity-stream .entry:first-child:last-child{border-radius:4px}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#2588d0;border:10px none;border-radius:4px;box-sizing:border-box;color:#ffffff;cursor:pointer;display:inline-block;font-family:inherit;font-size:14px;font-weight:500;height:36px;letter-spacing:0;line-height:36px;overflow:hidden;padding:0 16px;position:relative;text-align:center;text-transform:uppercase;text-decoration:none;text-overflow:ellipsis;-webkit-transition:all 100ms ease-in;transition:all 100ms ease-in;white-space:nowrap}.button:active,.button:focus,.button:hover{background-color:#49a0de;-webkit-transition:all 200ms ease-out;transition:all 200ms ease-out}.button:disabled{background-color:#9baec8;cursor:default}.column-collapsable{position:relative}.column-icon{background:#313543;color:#9baec8;cursor:pointer;font-size:16px;padding:15px;position:absolute;right:0;top:-48px;z-index:3}.column-icon:hover{color:#b2c1d5}.column-icon-clear{font-size:16px;padding:15px;position:absolute;right:48px;top:0;cursor:pointer;z-index:2}@media screen and (min-width: 1025px){.column-icon-clear{top:10px}}.icon-button{display:inline-block;padding:0;color:#606984;border:none;background:transparent;cursor:pointer;-webkit-transition:color 100ms ease-in;transition:color 100ms ease-in}.icon-button:hover,.icon-button:active,.icon-button:focus{color:#707b97;-webkit-transition:color 200ms ease-out;transition:color 200ms ease-out}.icon-button.disabled{color:#444b5d;cursor:default}.icon-button.active{color:#2b90d9}.icon-button::-moz-focus-inner{border:0}.icon-button::-moz-focus-inner,.icon-button:focus,.icon-button:active{outline:0 !important}.icon-button.inverted{color:#707b97}.icon-button.inverted:hover,.icon-button.inverted:active,.icon-button.inverted:focus{color:#606984}.icon-button.inverted.active{color:#2b90d9}.icon-button.inverted.disabled{color:#9baec8}.icon-button.overlayed{box-sizing:content-box;background:rgba(0,0,0,0.6);color:rgba(255,255,255,0.7);border-radius:4px;padding:2px}.icon-button.overlayed:hover{background:rgba(0,0,0,0.9)}.text-icon-button{color:#707b97;border:none;background:transparent;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;-webkit-transition:color 100ms ease-in;transition:color 100ms ease-in}.text-icon-button:hover,.text-icon-button:active,.text-icon-button:focus{color:#606984;-webkit-transition:color 200ms ease-out;transition:color 200ms ease-out}.text-icon-button.disabled{color:#444b5d;cursor:default}.text-icon-button.active{color:#2b90d9}.text-icon-button::-moz-focus-inner{border:0}.text-icon-button::-moz-focus-inner,.text-icon-button:focus,.text-icon-button:active{outline:0 !important}.dropdown--active .icon-button{color:#2b90d9}.invisible{font-size:0;line-height:0;display:inline-block;width:0}.ellipsis:after{content:"…"}.lightbox .icon-button{color:#282c37}.compose-form{padding:10px}.compose-form__warning{color:#425978;margin-bottom:15px;background:#9baec8;box-shadow:0 2px 6px rgba(0,0,0,0.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.compose-form__warning strong{color:#425978;font-weight:500}.compose-form__warning a{color:#425978;font-weight:500;text-decoration:underline}.compose-form__warning a:hover,.compose-form__warning a:active,.compose-form__warning a:focus{text-decoration:none}.compose-form__modifiers{color:#282c37;font-family:inherit;font-size:14px;background:#ffffff;border-radius:0 0 4px 0}.compose-form__buttons-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.compose-form__buttons{padding:10px;background:#ebebeb;box-shadow:inset 0 5px 5px rgba(0,0,0,0.05);border-radius:0 0 4px 4px;display:-webkit-box;display:-ms-flexbox;display:flex}.compose-form__buttons .icon-button{box-sizing:content-box;padding:0 3px}.compose-form__upload-button-icon{line-height:27px}.compose-form__upload-wrapper{overflow:hidden}.compose-form__uploads-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;padding:5px}.compose-form__upload{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin:5px}.compose-form__upload-thumbnail{border-radius:4px;height:100px;width:100%}.compose-form__upload-cancel{background-size:cover;border-radius:4px;height:100px;width:100px}.compose-form__label{display:block;line-height:24px;vertical-align:middle}.compose-form__label.with-border{border-top:1px solid #282c37;padding-top:10px}.compose-form__label .compose-form__label__text{display:inline-block;vertical-align:middle;margin-bottom:14px;margin-left:8px;color:#9baec8}.compose-form__textarea,.follow-form__input{background:#ffffff}.compose-form__textarea:disabled,.follow-form__input:disabled{background:#d9e1e8}.compose-form__autosuggest-wrapper{position:relative}.compose-form__publish{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.emojione{display:inline-block;font-size:inherit;vertical-align:middle;margin:-.2ex .15em .2ex;width:16px;height:16px}.emojione img{width:auto}.reply-indicator{border-radius:4px 4px 0 0;position:relative;bottom:-2px;background:#9baec8;padding:10px}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#282c37;display:block;max-width:100%;line-height:24px;overflow:hidden;padding-right:25px;text-decoration:none}.reply-indicator__display-avatar{float:left;margin-right:5px}.status__content{cursor:pointer}.status__content--no-action{cursor:default}.status__content,.reply-indicator__content{font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:hidden;white-space:pre-wrap}.status__content .emojione,.reply-indicator__content .emojione{width:18px;height:18px}.status__content p,.reply-indicator__content p{margin-bottom:20px}.status__content p:last-child,.reply-indicator__content p:last-child{margin-bottom:0}.status__content a,.reply-indicator__content a{color:#d9e1e8;text-decoration:none}.status__content a:hover,.reply-indicator__content a:hover{text-decoration:underline}.status__content a:hover .fa,.reply-indicator__content a:hover .fa{color:#858ea6}.status__content a.mention:hover,.reply-indicator__content a.mention:hover{text-decoration:none}.status__content a.mention:hover span,.reply-indicator__content a.mention:hover span{text-decoration:underline}.status__content a .fa,.reply-indicator__content a .fa{color:#687390}.status__content .status__content__spoiler-link,.reply-indicator__content .status__content__spoiler-link{background:#687390}.status__content .status__content__spoiler-link:hover,.reply-indicator__content .status__content__spoiler-link:hover{background:#707b97;text-decoration:none}a.status__content__spoiler-link{display:inline-block;border-radius:2px;color:#393f4f;font-weight:500;font-size:11px;padding:0px 6px;text-transform:uppercase;line-height:inherit}.status__prepend-icon-wrapper{left:-26px;position:absolute}.status{padding:8px 10px;padding-left:68px;position:relative;min-height:48px;border-bottom:1px solid #393f4f;cursor:default}.status.light .status__relative-time{color:#9baec8}.status.light .status__display-name{color:#282c37}.status.light .display-name strong{color:#282c37}.status.light .display-name span{color:#9baec8}.status.light .status__content{color:#282c37}.status.light .status__content a{color:#2b90d9}.status.light .status__content a.status__content__spoiler-link{color:#ffffff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.status__relative-time{color:#606984}.status__display-name{color:#606984}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px}.status__info-time{float:right;font-size:14px}.status-check-box{border-bottom:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex}.status-check-box .status__content{background:#313543;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:10px}.status-check-box-toggle{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#606984;padding:8px 0;padding-bottom:2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#606984}.status__action-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:10px;overflow:hidden}.status__action-bar-button-wrapper{float:left;margin-right:18px}.status__action-bar-dropdown{float:left;height:18px;width:18px}.detailed-status{background:#313543;padding:14px 10px}.detailed-status .status__content{font-size:19px;line-height:24px}.detailed-status .status__content .emojione{width:22px;height:22px}.detailed-status__meta{margin-top:15px;color:#606984;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#282c37;font-size:14px}.reply-indicator__content a{color:#535b72}.account{padding:10px;border-bottom:1px solid #393f4f}.account .account__display-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#9baec8;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.account__relationship{height:18px;padding:10px}.account__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#313543;text-align:center;background-size:cover;background-position:center;position:relative}.account__header>div{background:rgba(49,53,67,0.9)}.account__header .account__header__content{color:#d9e1e8}.account__header .account__header__display-name{color:#ffffff}.account__header .account__header__username{color:#2b90d9}.account__header__content{color:#9baec8;font-size:14px;font-weight:400;overflow:hidden;word-break:normal;word-wrap:break-word}.account__header__content p{margin-bottom:20px}.account__header__content p:last-child{margin-bottom:0}.account__header__content a{color:inherit;text-decoration:underline}.account__header__content a:hover{text-decoration:none}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;line-height:36px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex}.account__action-bar-dropdown{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:10px}.account__action-bar-links{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px}.account__action-bar__tab{text-decoration:none;overflow:hidden;width:80px;border-left:1px solid #393f4f;padding:10px 5px}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#9baec8}.account__action-bar__tab strong{display:block;font-size:15px;font-weight:500;color:#ffffff}.account__action-bar__tab abbr{color:#606984}.account__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.account-authorize{padding:14px 10px}.account-authorize .detailed-status__display-name{display:block;margin-bottom:15px;overflow:hidden}.account-authorize__avatar{float:left;margin-right:10px}.status__display-name,.status__relative-time,.detailed-status__display-name,.detailed-status__datetime,.detailed-status__application,.account__display-name{text-decoration:none}.status__display-name strong,.account__display-name strong{color:#ffffff}.status__display-name.muted .emojione,.account__display-name.muted .emojione{opacity:0.5}.status__display-name:hover strong,.reply-indicator__display-name:hover strong,.detailed-status__display-name:hover strong,.account__display-name:hover strong{text-decoration:underline}.account__display-name strong{display:block}.detailed-status__application,.detailed-status__datetime{color:inherit}.detailed-status__display-name{color:#d9e1e8;display:block;line-height:24px;margin-bottom:15px;overflow:hidden}.detailed-status__display-name strong,.detailed-status__display-name span{display:block}.detailed-status__display-name strong{font-size:16px;color:#ffffff}.detailed-status__display-avatar{float:left;margin-right:10px}.status__avatar{height:48px;left:10px;position:absolute;top:10px;width:48px}.muted .status__content p,.muted .status__content a{color:#606984}.muted .status__display-name strong{color:#606984}.muted .status__avatar{opacity:0.5}.muted a.status__content__spoiler-link{background:#606984;color:#313543}.muted a.status__content__spoiler-link:hover{background:#66718d;text-decoration:none}.notification__message{margin-left:68px;padding:8px 0;padding-bottom:0;cursor:default;color:#9baec8;font-size:15px;position:relative}.notification__message .fa{color:#2b90d9}.notification__favourite-icon-wrapper{left:-26px;position:absolute}.notification__favourite-icon-wrapper .star-icon{color:#ca8f04}.star-icon.active{color:#ca8f04}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#ffffff;text-decoration:underline}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.status__relative-time:hover,.detailed-status__datetime:hover{text-decoration:underline}.transparent-background,.imageloader{background:url(/assets/void-767af9b741bc6b218b558bea8a5f430d3275a09756188e1e2eb1845a04bdb828.png)}.imageloader{display:block}.navigation-bar{padding:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;cursor:default;color:#9baec8}.navigation-bar strong{color:#ffffff}.navigation-bar .permalink{text-decoration:none}.navigation-bar__profile{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;margin-left:8px}.navigation-bar__profile-account{display:block;font-weight:500}.navigation-bar__profile-edit{color:inherit;text-decoration:none}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown__sep{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;padding-top:1px}.dropdown--active .dropdown__content{display:block;line-height:18px;text-align:left;z-index:9999}.dropdown--active .dropdown__content:before{content:"";display:block;position:absolute;width:0;height:0;border-style:solid;border-width:0 4.5px 7.8px 4.5px;border-color:transparent transparent #d9e1e8 transparent;top:-7px;left:8px}.dropdown--active .dropdown__content.light:before{border-color:transparent transparent #ffffff transparent}.dropdown--active .dropdown__content>ul{list-style:none;background:#d9e1e8;padding:4px 0;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,0.4);min-width:140px;position:relative;left:-10px}.dropdown--active .dropdown__content.dropdown__left>ul{left:-98px}.dropdown--active .dropdown__content.dropdown__left>.emoji-dialog{left:-210px}.dropdown--active .dropdown__content>ul>li>a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;width:140px;text-decoration:none;background:#d9e1e8;color:#282c37;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown--active .dropdown__content>ul>li>a:focus{outline:0}.dropdown--active .dropdown__content>ul>li>a:hover{background:#2b90d9;color:#d9e1e8}.dropdown__icon{vertical-align:middle}.static-content{padding:10px;padding-top:20px;color:#606984}.static-content h1{font-size:16px;font-weight:500;margin-bottom:40px;text-align:center}.static-content p{font-size:13px;margin-bottom:20px}.columns-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;overflow-x:auto;position:relative}@media screen and (min-width: 360px){.columns-area{padding:10px}}.column{width:330px;position:relative;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.column>.scrollable{background:#282c37}.ui{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;height:100%;background:#191b22}.drawer{width:300px;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px;padding-bottom:13px;color:#9baec8;text-decoration:none;text-align:center;font-size:16px;border-bottom:2px solid transparent}.column,.drawer{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;overflow:hidden}@media screen and (min-width: 360px){.tabs-bar{margin:10px;margin-bottom:0}.search{margin-bottom:10px}}@media screen and (max-width: 1024px){.column,.drawer{width:100%;padding:0}.columns-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.search__input,.autosuggest-textarea__textarea{font-size:16px}}@media screen and (min-width: 1025px){.columns-area{padding:0}.column,.drawer{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding:10px;padding-left:5px;padding-right:5px}.column:first-child,.drawer:first-child{padding-left:10px}.column:last-child,.drawer:last-child{padding-right:10px}.columns-area>div .column,.columns-area>div .drawer{padding-left:5px;padding-right:5px}}@media screen and (min-width: 2560px){.columns-area{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.column,.drawer{width:350px;border-radius:4px;height:90vh;margin-top:5vh}}.drawer__pager{box-sizing:border-box;padding:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#444b5d;box-sizing:border-box;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:hidden;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#282c37}.pseudo-drawer{background:#444b5d;font-size:13px;text-align:left}.drawer__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:16px;background:#393f4f;margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.drawer__header a{-webkit-transition:background 100ms ease-in;transition:background 100ms ease-in}.drawer__header a:hover{background:#2e3340;-webkit-transition:background 200ms ease-out;transition:background 200ms ease-out}.tabs-bar{display:-webkit-box;display:-ms-flexbox;display:flex;background:#393f4f;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px 10px;color:#ffffff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #393f4f;-webkit-transition:all 200ms linear;transition:all 200ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b90d9;color:#2b90d9}.tabs-bar__link:hover,.tabs-bar__link:focus,.tabs-bar__link:active{background:#464d60;-webkit-transition:all 100ms linear;transition:all 100ms linear}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width: 600px){.tabs-bar__link span{display:inline}}@media screen and (min-width: 1025px){.tabs-bar{display:none}}.react-autosuggest__container{position:relative}.react-autosuggest__suggestions-container{position:absolute;top:100%;width:100%;z-index:99;box-shadow:0 0 15px rgba(0,0,0,0.4)}.react-autosuggest__section-title{background:#9baec8;padding:4px 10px;font-weight:500;cursor:default;color:#282c37;text-transform:uppercase;font-size:11px}.react-autosuggest__suggestions-list{background:#d9e1e8;color:#282c37;font-size:14px}.react-autosuggest__suggestion{padding:10px;cursor:pointer}.react-autosuggest__suggestion--focused{background:#2b90d9;color:#ffffff}.scrollable{overflow-y:scroll;overflow-x:hidden;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch}.scrollable.optionally-scrollable{overflow-y:auto}.column-back-button{background:#313543;color:#2b90d9;cursor:pointer;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:16px;padding:15px;z-index:3}.column-back-button:hover{text-decoration:underline}.column-back-button__icon{display:inline-block;margin-right:5px}.column-back-button--slim{position:relative}.column-back-button--slim-button{cursor:pointer;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:16px;padding:15px;position:absolute;right:0;top:-48px}.react-toggle{display:inline-block;position:relative;cursor:pointer;background-color:transparent;border:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}.react-toggle-screenreader-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.react-toggle--disabled{cursor:not-allowed;opacity:0.5;-webkit-transition:opacity 0.25s;transition:opacity 0.25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#282c37;-webkit-transition:all 0.2s ease;transition:all 0.2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#131419}.react-toggle--checked .react-toggle-track{background-color:#2b90d9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#56a7e1}.react-toggle-track-check{position:absolute;width:14px;height:10px;top:0px;bottom:0px;margin-top:auto;margin-bottom:auto;line-height:0;left:8px;opacity:0;-webkit-transition:opacity 0.25s ease;transition:opacity 0.25s ease}.react-toggle--checked .react-toggle-track-check{opacity:1;-webkit-transition:opacity 0.25s ease;transition:opacity 0.25s ease}.react-toggle-track-x{position:absolute;width:10px;height:10px;top:0px;bottom:0px;margin-top:auto;margin-bottom:auto;line-height:0;right:10px;opacity:1;-webkit-transition:opacity 0.25s ease;transition:opacity 0.25s ease}.react-toggle--checked .react-toggle-track-x{opacity:0}.react-toggle-thumb{-webkit-transition:all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;transition:all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #282c37;border-radius:50%;background-color:#fafafa;box-sizing:border-box;-webkit-transition:all 0.25s ease;transition:all 0.25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b90d9}.column-link{background:#393f4f;color:#ffffff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#404657}@media screen and (max-width: 1024px){.column-link.hidden-on-mobile{display:none}}.column-link__icon{display:inline-block;margin-right:5px}.column-subheading{background:#282c37;color:#606984;padding:8px 20px;font-size:12px;font-weight:500;text-transform:uppercase;cursor:default}.autosuggest-textarea,.spoiler-input{position:relative}.autosuggest-textarea__textarea,.spoiler-input__input{display:block;box-sizing:border-box;width:100%;margin:0;color:#282c37;padding:10px;font-family:inherit;font-size:14px;resize:vertical;border:0;outline:0}.autosuggest-textarea__textarea:focus,.spoiler-input__input:focus{outline:0}@media screen and (max-width: 600px){.autosuggest-textarea__textarea,.spoiler-input__input{font-size:16px}}.spoiler-input__input{border-radius:4px}.autosuggest-textarea__textarea{min-height:100px;background:#ffffff;border-radius:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width: 600px){.autosuggest-textarea__textarea{height:100px !important;resize:vertical}}.autosuggest-textarea__suggestions{position:absolute;top:100%;width:100%;z-index:99;box-shadow:0 0 15px rgba(0,0,0,0.4);background:#d9e1e8;color:#282c37;font-size:14px}.autosuggest-textarea__suggestions__item{padding:10px;cursor:pointer}.autosuggest-textarea__suggestions__item:hover{background:#b9c8d5}.autosuggest-textarea__suggestions__item.selected{background:#2b90d9;color:#ffffff}.autosuggest-account{overflow:hidden}.autosuggest-account-icon{float:left;margin-right:5px}.autosuggest-status{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.autosuggest-status strong{font-weight:500}.character-counter__wrapper{line-height:36px;margin-right:16px;padding-top:10px}.character-counter{cursor:default;font-size:16px}.character-counter--over{color:#ff5050}.getting-started__wrapper{position:relative}.getting-started{box-sizing:border-box;padding-bottom:235px;background:url(/assets/mastodon-getting-started-a6f485964e4d4e5e51c3ba82d65e9a3017e85543cc14d7e7e8d622234a1930e0.png) no-repeat 0 100%/contain local;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.getting-started p{color:#d9e1e8}.getting-started a{color:#606984}.setting-text{color:#9baec8;background:transparent;border:none;border-bottom:2px solid #9baec8;box-sizing:border-box;display:block;font-family:inherit;margin-bottom:10px;padding:7px 0px;width:100%}.setting-text:focus,.setting-text:active{color:#ffffff;border-bottom-color:#2b90d9}@media screen and (max-width: 600px){.setting-text{font-size:16px}}button.icon-button i.fa-retweet{background-image:url("data:image/svg+xml;utf8,")}button.icon-button i.fa-retweet:hover{background-image:url("data:image/svg+xml;utf8,")}button.icon-button i.fa-retweet{height:19px;width:22px;background-position:0 0;-webkit-transition:background-position 0.9s steps(10);transition:background-position 0.9s steps(10);-webkit-transition-duration:0s;transition-duration:0s}button.icon-button i.fa-retweet::before{display:none !important}button.icon-button.active i.fa-retweet{-webkit-transition-duration:0.9s;transition-duration:0.9s;background-position:0 100%}.status-card{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;font-size:14px;border:1px solid #393f4f;border-radius:4px;color:#606984;margin-top:14px;text-decoration:none;overflow:hidden}.status-card:hover{background:#393f4f}.status-card-video,.status-card-rich,.status-card-photo{margin-top:14px;overflow:hidden}.status-card-video iframe,.status-card-rich iframe,.status-card-photo iframe{width:100%;height:auto}.status-card-photo{display:block;text-decoration:none}.status-card-photo img{display:block;width:100%;height:auto;margin:0}.status-card__title{display:block;font-weight:500;margin-bottom:5px;color:#9baec8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#9baec8}.status-card__image{-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;background:#393f4f}.status-card__image-image{border-radius:4px 0px 0px 4px;display:block;height:auto;margin:0;width:100%}.load-more{display:block;color:#606984;text-align:center;padding:15px;text-decoration:none}.load-more:hover{background:#2c313d}.missing-indicator{text-align:center;font-size:16px;font-weight:500;color:#4a5266;padding-top:210px;background:url(/assets/mastodon-not-found-c8d796be40a5eed704ca7da8e31f0b0537f2317612dbe2f2c9fe8109bee09b07.png) no-repeat center -50px;cursor:default}.column-header{padding:15px;font-size:16px;background:#313543;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0}.column-header.active{box-shadow:0 1px 0 rgba(43,144,217,0.3)}.column-header.active .fa{color:#2b90d9;text-shadow:0 0 10px rgba(43,144,217,0.4)}@media screen and (max-width: 1024px){.column-header.hidden-on-mobile{display:none}}.column-header:focus,.column-header:active{outline:0}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#d9e1e8;font-size:16px;font-weight:500;padding-top:120px;text-align:center}.collapsable-collapsed{color:#9baec8;background:#313543}.collapsable{color:#ffffff;background:#393f4f}.collapsable:hover{color:#ffffff;background:#393f4f}.media-spoiler,.video-error-cover{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#000000;color:#ffffff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:8px;position:relative;text-align:center;z-index:100}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:500}.spoiler-button{left:4px;position:absolute;text-shadow:0px 1px 1px #000, 1px 0px 1px #000;top:4px;z-index:100}.modal-container--preloader{background:#393f4f}.account--panel{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0px}.account--panel__button,.detailed-status__button{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.column-settings__outer{background:#393f4f;padding:15px}.column-settings__section{color:#9baec8;cursor:default;display:block;font-weight:500;margin-bottom:10px}.modal-container__nav{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:rgba(0,0,0,0.5);box-sizing:border-box;color:#ffffff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:24px;height:100%;padding:30px 15px;position:absolute;top:0}.modal-container__nav--left{left:-61px}.modal-container__nav--right{right:-61px}.account--follows-info{color:#ffffff}.setting-toggle__label{display:block;line-height:24px;vertical-align:middle}.setting-toggle{color:#9baec8;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.report.scrollable{box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-height:100%}.report__target{border-bottom:1px solid #313543;color:#d9e1e8;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding:10px}.report__target strong{display:block;color:#ffffff;font-weight:500}.report__statuses{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.report__textarea-wrapper{-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;padding:10px}.report__textarea{background:transparent;box-sizing:border-box;border:0;border-bottom:2px solid #9baec8;border-radius:2px 2px 0 0;color:#ffffff;display:block;font-family:inherit;font-size:14px;margin-bottom:10px;outline:0;padding:7px 4px;resize:vertical;width:100%}.report__textarea:active,.report__textarea:focus{border-bottom-color:#2b90d9;background:rgba(0,0,0,0.1)}.report__submit{margin-top:10px;overflow:hidden}.report__submit-button{float:right}.empty-column-indicator{color:#535b72;background:#282c37;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.empty-column-indicator a{color:#2b90d9;text-decoration:none}.empty-column-indicator a:hover{text-decoration:underline}.status-list__unread-indicator,.notifications__unread-indicator{position:absolute;top:35px;left:0;right:0;margin:0 auto;width:60%;pointer-events:none;height:28px;z-index:1;background:-webkit-radial-gradient(ellipse, rgba(43,144,217,0.23) 0%, rgba(43,144,217,0) 60%);background:radial-gradient(ellipse, rgba(43,144,217,0.23) 0%, rgba(43,144,217,0) 60%)}.emoji-dialog{width:245px;height:270px;background:#ffffff;box-sizing:border-box;border-radius:4px;overflow:hidden;position:relative;box-shadow:0 0 8px rgba(0,0,0,0.2)}.emoji-dialog .emojione{margin:0;width:100%;height:auto}.emoji-dialog .emoji-dialog-header{padding:0 10px}.emoji-dialog .emoji-dialog-header ul{padding:0;margin:0;list-style:none}.emoji-dialog .emoji-dialog-header li{display:inline-block;box-sizing:border-box;padding:10px 5px;cursor:pointer;border-bottom:2px solid transparent}.emoji-dialog .emoji-dialog-header li .emoji{width:18px;height:18px}.emoji-dialog .emoji-dialog-header li img,.emoji-dialog .emoji-dialog-header li svg{width:18px;height:18px;-webkit-filter:grayscale(100%);filter:grayscale(100%)}.emoji-dialog .emoji-dialog-header li:hover img,.emoji-dialog .emoji-dialog-header li:hover svg{-webkit-filter:grayscale(0);filter:grayscale(0)}.emoji-dialog .emoji-dialog-header li.active{border-bottom-color:#2b90d9}.emoji-dialog .emoji-dialog-header li.active img,.emoji-dialog .emoji-dialog-header li.active svg{-webkit-filter:grayscale(0);filter:grayscale(0)}.emoji-dialog .emoji-row{box-sizing:border-box;overflow-y:hidden;padding-left:10px}.emoji-dialog .emoji-row .emoji{display:inline-block;padding:2.5px;border-radius:4px}.emoji-dialog .emoji-category-header{box-sizing:border-box;overflow-y:hidden;padding:10px 8px 10px 16px;display:table}.emoji-dialog .emoji-category-header>*{display:table-cell;vertical-align:middle}.emoji-dialog .emoji-category-title{font-size:12px;text-transform:uppercase;font-weight:500;color:#a0b4c5;cursor:default}.emoji-dialog .emoji-category-heading-decoration{text-align:right}.emoji-dialog .modifiers{list-style:none;padding:0;margin:0;vertical-align:middle;white-space:nowrap;margin-top:4px}.emoji-dialog .modifiers li{display:inline-block;padding:0 2px}.emoji-dialog .modifiers li:last-of-type{padding-right:0}.emoji-dialog .modifiers .modifier{display:inline-block;border-radius:10px;width:15px;height:15px;position:relative;cursor:pointer}.emoji-dialog .modifiers .modifier.active:after{content:"";display:block;position:absolute;width:7px;height:7px;border-radius:10px;border:2px solid #ffffff;top:2px;left:2px}.emoji-dialog .emoji-search-wrapper{padding:10px;border-bottom:1px solid #e6ebf0}.emoji-dialog .emoji-search{font-size:14px;font-weight:400;padding:7px 9px;font-family:inherit;display:block;width:100%;background:rgba(217,225,232,0.3);color:#a0b4c5;border:1px solid #d9e1e8;border-radius:4px}.emoji-dialog .emoji-categories-wrapper{position:absolute;top:42px;bottom:0;left:0;right:0}.emoji-dialog .emoji-search-wrapper+.emoji-categories-wrapper{top:93px}.emoji-dialog .emoji-row .emoji img,.emoji-dialog .emoji-row .emoji svg{-webkit-transition:-webkit-transform 60ms ease-in-out;transition:-webkit-transform 60ms ease-in-out;transition:transform 60ms ease-in-out;transition:transform 60ms ease-in-out, -webkit-transform 60ms ease-in-out}.emoji-dialog .emoji-row .emoji:hover{background:#e3e9ee}.emoji-dialog .emoji-row .emoji:hover img,.emoji-dialog .emoji-row .emoji:hover svg{-webkit-transform:translateZ(0) scale(1.2);transform:translateZ(0) scale(1.2)}.emoji-dialog .emoji{width:22px;height:22px;cursor:pointer}.emoji-dialog .emoji:focus{outline:0}.upload-area{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:rgba(0,0,0,0.8);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:2000}.upload-area *{pointer-events:none}.upload-area__drop{width:320px;height:160px;display:-webkit-box;display:-ms-flexbox;display:flex;box-sizing:border-box;position:relative;padding:8px}.upload-area__background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;border-radius:4px;background:#282c37;box-shadow:0 0 5px rgba(0,0,0,0.2)}.upload-area__content{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#d9e1e8;font-size:18px;font-weight:500;border:2px dashed #606984;border-radius:4px}.upload-progress{padding:10px;color:#606984;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.upload-progress .fa{font-size:34px;margin-right:10px}.upload-progress span{font-size:12px;text-transform:uppercase;font-weight:500;display:block}.upload-progess__message{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.upload-progress__backdrop{width:100%;height:6px;border-radius:6px;background:#606984;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#2b90d9;border-radius:6px}.emoji-button{outline:0}.emoji-button:active,.emoji-button:focus{outline:0 !important}.emoji-button img{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:0.8;display:block;margin:0;width:22px;height:22px;margin-top:2px}.emoji-button:hover img,.emoji-button:active img,.emoji-button:focus img{opacity:1;-webkit-filter:none;filter:none}.dropdown--active .emoji-button img{opacity:1;-webkit-filter:none;filter:none}.privacy-dropdown{position:relative}.privacy-dropdown__dropdown{display:none;position:absolute;left:0;top:27px;width:230px;background:#ffffff;border-radius:0 4px 4px 4px;z-index:2;overflow:hidden}.privacy-dropdown__option{color:#282c37;padding:10px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex}.privacy-dropdown__option:hover,.privacy-dropdown__option.active{background:#2b90d9;color:#ffffff}.privacy-dropdown__option:hover .privacy-dropdown__option__content,.privacy-dropdown__option.active .privacy-dropdown__option__content{color:#ffffff}.privacy-dropdown__option:hover .privacy-dropdown__option__content strong,.privacy-dropdown__option.active .privacy-dropdown__option__content strong{color:#ffffff}.privacy-dropdown__option.active:hover{background:#3c99dc}.privacy-dropdown__option__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#536f96}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#282c37}.privacy-dropdown.active .privacy-dropdown__value{background:#ffffff;border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,0.1)}.privacy-dropdown.active .privacy-dropdown__dropdown{display:block;box-shadow:2px 4px 6px rgba(0,0,0,0.1)}.search{position:relative}.search__input{padding-right:30px;color:#d9e1e8;outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;padding-right:30px;font-family:inherit;background:#282c37;color:#9baec8;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:focus,.search__input:active{outline:0 !important}.search__input:focus{background:#313543}@media screen and (max-width: 600px){.search__input{font-size:16px}}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;-webkit-transition:all 100ms linear;transition:all 100ms linear;font-size:18px;width:18px;height:18px;color:#d9e1e8;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:0.3}.search__icon .fa-search{-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:translateZ(0) rotate(0deg);transform:translateZ(0) rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:translateZ(0) rotate(0deg);transform:translateZ(0) rotate(0deg);cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg)}.search__icon .fa-times-circle:hover{color:#ffffff}.search-results__header{color:#606984;background:#2c313d;border-bottom:1px solid #1f232b;padding:15px 10px;font-size:14px;font-weight:500}.search-results__hashtag{display:block;padding:10px;color:#d9e1e8;text-decoration:none}.search-results__hashtag:hover,.search-results__hashtag:active,.search-results__hashtag:focus{color:#e6ebf0;text-decoration:underline}.modal-root__overlay{position:absolute;top:0;left:0;right:0;bottom:0;z-index:9999;opacity:0;background:rgba(0,0,0,0.7);-webkit-transform:translateZ(0px);transform:translateZ(0px)}.modal-root__container{position:absolute;top:0;left:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:distribute;align-content:space-around;z-index:9999;opacity:0;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__modal{pointer-events:auto;display:-webkit-box;display:-ms-flexbox;display:flex;z-index:9999}.media-modal{max-width:80vw;max-height:80vh;position:relative}.media-modal img,.media-modal video{max-width:80vw;max-height:80vh}.media-modal__close{position:absolute;right:4px;top:4px;z-index:100}.onboarding-modal{background:#d9e1e8;color:#282c37;border-radius:8px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:420px;position:relative}.onboarding-modal__pager>div{position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;padding:25px;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;opacity:0;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}@media screen and (max-width: 550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}}.onboarding-modal__paginator{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#c0cdd9;display:-webkit-box;display:-ms-flexbox;display:flex;padding:25px}.onboarding-modal__paginator>div{min-width:33px}.onboarding-modal__paginator a{color:#6d8ca7;text-decoration:none;font-size:14px;font-weight:500}.onboarding-modal__paginator a:hover,.onboarding-modal__paginator a:focus,.onboarding-modal__paginator a:active{color:#60829f}.onboarding-modal__paginator a.onboarding-modal__done,.onboarding-modal__paginator a.onboarding-modal__next{color:#2b90d9}.onboarding-modal__dots{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#a6b9c9;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#a0b4c5}.onboarding-modal__dot.active{cursor:default;background:#8da5ba}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#282c37;margin-bottom:20px}.onboarding-modal__page a{color:#2b90d9}.onboarding-modal__page a:hover,.onboarding-modal__page a:focus,.onboarding-modal__page a:active{color:#3c99dc}.onboarding-modal__page p{font-size:16px;color:#393f4f;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#282c37;color:#d9e1e8;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page-one{display:-webkit-box;display:-ms-flexbox;display:flex}.onboarding-modal__page-one__elephant-friend{background:url(/assets/elephant-friend-474562c42843a6a6c0a4a4fe9ea57b3a467e400c2723d46e56fff66f79bee3fa.png) no-repeat center center/contain;width:147px;height:160px;margin-right:10px}.onboarding-modal__page-two p,.onboarding-modal__page-three p,.onboarding-modal__page-four p,.onboarding-modal__page-five p{text-align:left}.onboarding-modal__page-two .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-five .figure{background:#17191f;color:#d9e1e8;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;box-shadow:1px 2px 6px rgba(0,0,0,0.3)}.onboarding-modal__page-two .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-five .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-two .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-five .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#ffffff}.onboarding-modal__image{border-radius:8px;width:70vw;max-width:450px;max-height:auto;display:block;margin:auto;margin-bottom:20px}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.boost-modal,.confirmation-modal{background:#f2f5f7;color:#282c37;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.boost-modal .status__display-name,.confirmation-modal .status__display-name{display:block;max-width:100%;padding-right:25px}.boost-modal .status__avatar,.confirmation-modal .status__avatar{height:28px;left:10px;position:absolute;top:10px;width:48px}.boost-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;border-bottom:0}.boost-modal__action-bar,.confirmation-modal__action-bar{display:-webkit-box;display:-ms-flexbox;display:flex;background:#d9e1e8;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:right;color:#707b97;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:380px}.confirmation-modal__action-bar>div{text-align:left;padding:0 16px}.confirmation-modal__action-bar a{color:#6d8ca7;text-decoration:none;font-size:14px;font-weight:500}.confirmation-modal__action-bar a:hover,.confirmation-modal__action-bar a:focus,.confirmation-modal__action-bar a:active{color:#60829f}.confirmation-modal__container{padding:30px;font-size:16px;text-align:center}.confirmation-modal__container strong{font-weight:500}.loading-bar{background-color:#2b90d9;height:3px;position:absolute;top:0;left:0}.media-gallery__gifv__label{display:block;position:absolute;color:#ffffff;background:rgba(0,0,0,0.5);bottom:6px;left:6px;padding:2px 6px;border-radius:2px;font-size:11px;font-weight:600;z-index:1;pointer-events:none;opacity:0.9;-webkit-transition:opacity 0.1s ease;transition:opacity 0.1s ease}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.attachment-list{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;border:1px solid #393f4f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#606984;padding:8px 18px;cursor:default;border-right:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0;padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.attachment-list__list li{display:block;padding:4px 0}.attachment-list__list a{text-decoration:none;color:#606984;font-weight:500}.attachment-list__list a:hover{text-decoration:underline}.media-gallery{box-sizing:border-box;margin-top:8px;overflow:hidden;position:relative;width:100%}.media-gallery__item{border:none;box-sizing:border-box;display:block;float:left;position:relative}.media-gallery__item-thumbnail{background-position:center;background-repeat:no-repeat;background-size:cover;cursor:zoom-in;display:block;height:100%;text-decoration:none;width:100%}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;-o-object-fit:cover;object-fit:cover;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);overflow:hidden;position:absolute}.status__video-player{background:#000;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player-video{height:100%;-o-object-fit:cover;object-fit:cover;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.status__video-player-expand,.status__video-player-mute{color:#fff;opacity:0.8;position:absolute;right:4px;text-shadow:0px 1px 1px #000, 1px 0px 1px #000;top:4px}.status__video-player-spoiler{color:#fff;text-shadow:0px 1px 1px #000, 1px 0px 1px #000}.status__video-player-expand{z-index:100}.status__video-player-mute{z-index:5}.media-spoiler-video{background-size:cover;cursor:pointer;margin-top:8px;position:relative}.media-spoiler-video-play-icon{border-radius:100px;color:rgba(255,255,255,0.8);font-size:36px;padding:5px;position:absolute;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.about-body .wrapper{max-width:600px;margin:0 auto;color:#9baec8;padding-top:50px;padding-bottom:50px}.about-body .wrapper.thicc{max-width:700px}.about-body h1{font:46px/52px 'Roboto', sans-serif;font-weight:600;margin-bottom:20px;color:#2b90d9;padding:20px 0}.about-body h1 img{margin-bottom:-5px;margin-right:5px;width:46px;height:46px}.about-body h2{font-family:'Montserrat', sans-serif;font-size:24px;line-height:28px;font-weight:400;margin-bottom:20px;color:#ffffff}.about-body h3{font-family:'Montserrat', sans-serif;font-size:20px;line-height:28px;font-weight:400;margin-bottom:20px;color:#d9e1e8}.about-body ul,.about-body ol{list-style:inherit;margin-left:20px}.about-body ul[type='a'],.about-body ol[type='a']{list-style-type:lower-alpha}.about-body ul[type='i'],.about-body ol[type='i']{list-style-type:lower-roman}.about-body li>ol,.about-body li>ul{margin-top:20px}.about-body p,.about-body li{font:16px/28px 'Montserrat', sans-serif;font-weight:400;margin-bottom:12px}.about-body p a,.about-body li a{color:#2b90d9;text-decoration:underline}.about-body em{display:inline-block;padding:7px 7px 5px 7px;margin:0 2px;background:#9baec8;color:#282c37;font:16px/16px 'Montserrat', sans-serif;font-weight:300}.about-body .screenshot{box-shadow:0 0 15px rgba(0,0,0,0.4);margin-bottom:26px}.about-body .screenshot img{max-width:100%;height:auto;display:block}.about-body .actions{overflow:hidden;margin-bottom:20px}.about-body .actions .info{float:right;text-align:right;line-height:36px}.about-body .actions .info a{color:#9baec8;text-decoration:underline}@media screen and (max-width: 625px){.about-body .wrapper{padding:20px}.about-body .features-list{display:block}}.information-board{margin:20px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-top:1px solid #3d4455;border-bottom:1px solid #3d4455;padding-right:14px}.information-board .section{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;padding:14px;text-align:right;font:16px/28px 'Montserrat', sans-serif}.information-board .section span,.information-board .section strong{display:block}.information-board .section span{font-size:16px}.information-board .section span:last-child{color:#d9e1e8;font-size:14px}.information-board .section strong{font-weight:500;font-size:32px;line-height:48px;color:#ffffff}@media screen and (max-width: 500px){.information-board{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.information-board .section{text-align:left}}.owner{text-align:center}.owner .avatar{width:80px;height:80px;margin:0 auto;margin-bottom:15px}.owner .avatar img{display:block;width:80px;height:80px;border-radius:48px}.owner .name{font-size:14px}.owner .name a{display:block;color:#ffffff;text-decoration:none}.owner .name a:hover .display_name{text-decoration:underline}.owner .name .username{display:block;color:#9baec8}.contact-email{text-align:center;margin:40px 0}.contact-email strong{display:block;color:#ffffff;word-break:break-word}.sidebar-layout{display:-webkit-box;display:-ms-flexbox;display:flex}.sidebar-layout .main{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:14px 0}.sidebar-layout .main .panel{padding-right:14px}.sidebar-layout .sidebar{border-left:1px solid #3d4455;width:180px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.sidebar-layout .panel .panel-header{background:#3d4455;padding:7px 14px;text-transform:uppercase;font-size:12px;font-weight:500}.sidebar-layout .panel .panel-body{padding:14px}.sidebar-layout .panel .panel-list ul{list-style:none;margin:0}.sidebar-layout .panel .panel-list ul li{margin:0;font-family:inherit;font-size:13px;line-height:18px}.sidebar-layout .panel .panel-list ul li a{display:block;padding:7px 14px;color:rgba(255,255,255,0.7);text-decoration:none;-webkit-transition:all 200ms linear;transition:all 200ms linear}.sidebar-layout .panel .panel-list ul li a i.fa{margin-right:5px}.sidebar-layout .panel .panel-list ul li a:hover{color:#ffffff;background-color:#1d2028;-webkit-transition:all 100ms linear;transition:all 100ms linear}.sidebar-layout .panel .panel-list ul li a.selected{color:#ffffff;background-color:#2b90d9}.sidebar-layout .panel .panel-list ul li a.selected:hover{background-color:#419bdd}@media screen and (max-width: 625px){.sidebar-layout{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.sidebar-layout .sidebar{border:1px solid #3d4455;width:auto}}.features-list{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.features-list .features-list__column{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0}.features-list .features-list__column ul{list-style:none}.features-list .features-list__column li{margin:0}.screenshot-with-signup{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.screenshot-with-signup .mascot{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.screenshot-with-signup .mascot img{display:block;margin:0 auto;max-width:100%;height:auto}.screenshot-with-signup .simple_form,.screenshot-with-signup .closed-registrations-message{width:300px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:rgba(25,27,34,0.5);padding:14px;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,0.4)}.screenshot-with-signup .simple_form .actions,.screenshot-with-signup .closed-registrations-message .actions{margin-bottom:0}.screenshot-with-signup .simple_form .info,.screenshot-with-signup .closed-registrations-message .info{text-align:center}.screenshot-with-signup .simple_form .info a,.screenshot-with-signup .closed-registrations-message .info a{color:#d9e1e8}@media screen and (max-width: 625px){.screenshot-with-signup .mascot{display:none}.screenshot-with-signup .simple_form,.screenshot-with-signup .closed-registrations-message{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}.closed-registrations-message{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.table{width:100%;max-width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:20px}.table th,.table td{padding:8px;line-height:18px;vertical-align:top;border-top:1px solid #282c37;text-align:left}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #282c37;border-top:0;font-weight:500}.table>tbody>tr>th{font-weight:500}.table>tbody>tr:nth-child(odd)>td,.table>tbody>tr:nth-child(odd)>th{background:#282c37}.table a{color:#2b90d9;text-decoration:underline}.table a:hover{text-decoration:none}.table strong{font-weight:500}samp{font-family:'Roboto Mono', monospace}a.table-action-link{text-decoration:none;display:inline-block;margin-right:5px;padding:0 10px;color:rgba(255,255,255,0.7);font-weight:500}a.table-action-link:hover{color:#ffffff}a.table-action-link i.fa{font-weight:400;margin-right:5px}.admin-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;height:100%;background:#282c37;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.admin-wrapper .sidebar{width:240px;height:100%;padding:0;overflow-y:auto}.admin-wrapper .sidebar .logo{display:block;margin:40px auto;width:100px;height:100px}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}.admin-wrapper .sidebar ul a{display:block;padding:15px 25px;color:rgba(255,255,255,0.7);text-decoration:none;-webkit-transition:all 200ms linear;transition:all 200ms linear;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#ffffff;background-color:#1d2028;-webkit-transition:all 100ms linear;transition:all 100ms linear}.admin-wrapper .sidebar ul a.selected{background:#242731;border-radius:4px 0 0 0}.admin-wrapper .sidebar ul ul{background:#1f232b;border-radius:0 0 0 4px;margin:0}.admin-wrapper .sidebar ul ul a{border:0}.admin-wrapper .sidebar ul ul a.selected{color:#ffffff;background-color:#2b90d9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul ul a.selected:hover{background-color:#419bdd}.admin-wrapper .content-wrapper{-webkit-box-flex:2;-ms-flex:2;flex:2;overflow:auto}.admin-wrapper .content{max-width:700px;padding:20px 15px;padding-top:60px;padding-left:25px}.admin-wrapper .content h2{color:#d9e1e8;font-size:24px;line-height:28px;font-weight:400;margin-bottom:40px}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#d9e1e8;margin-bottom:20px}.admin-wrapper .content>p strong{color:#ffffff;font-weight:500}.admin-wrapper .content hr{margin:20px 0;border:0;background:transparent;border-bottom:1px solid #282c37}.admin-wrapper .simple_form{max-width:400px}.admin-wrapper .simple_form .label_input label.select{width:50%}.admin-wrapper .simple_form .label_input select{width:50%;float:right}@media screen and (max-width: 600px){.admin-wrapper{display:block;overflow-y:auto;-webkit-overflow-scrolling:touch}.admin-wrapper .sidebar-wrapper,.admin-wrapper .content-wrapper{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:10px 0;height:auto}.admin-wrapper .sidebar .logo{margin:20px auto}.admin-wrapper .content{padding-top:20px}}.filters{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.filters .filter-subset{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-right:40px}.filters .filter-subset ul{margin-top:5px;list-style:none}.filters .filter-subset ul li{display:inline-block;margin-right:5px}.filters .filter-subset strong{font-weight:500;text-transform:uppercase;font-size:12px}.filters .filter-subset a{display:inline-block;color:rgba(255,255,255,0.7);text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #282c37}.filters .filter-subset a:hover{color:#ffffff;border-bottom:2px solid #333846}.filters .filter-subset a.selected{color:#2b90d9;border-bottom:2px solid #2b90d9}.report-accounts{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.report-accounts__item{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.report-accounts__item>strong{display:block;margin-bottom:10px;font-weight:500;font-size:14px;line-height:18px;color:#d9e1e8}.report-accounts__item:first-child{margin-right:10px}.report-accounts__item .account-card{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.report-status{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:10px}.report-status .activity-stream{-webkit-box-flex:2;-ms-flex:2 0 0px;flex:2 0 0;margin-right:20px}.report-status__actions{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}body.rtl{direction:rtl}body.rtl .column-link__icon,body.rtl .column-header__icon{margin-right:0;margin-left:5px}body.rtl .character-counter__wrapper{margin-right:0;margin-left:16px}body.rtl .navigation-bar__profile{margin-left:0;margin-right:8px}body.rtl .search__input{padding-right:10px;padding-left:30px}body.rtl .search__icon .fa{right:auto;left:10px}body.rtl .column-icon-clear{right:auto;left:48px}body.rtl .column-icon{right:auto;left:5px}body.rtl .setting-toggle{margin-left:0;margin-right:8px}body.rtl .status__avatar{left:auto;right:10px}body.rtl .status{padding-left:10px;padding-right:68px}body.rtl .status__info .status__display-name{padding-left:25px;padding-right:0}body.rtl .column-back-button--slim-button{right:auto;left:0}body.rtl .status__info-time{float:left}body.rtl .status__action-bar-button-wrapper{float:right;margin-right:0;margin-left:18px}body.rtl .status__action-bar-dropdown{float:right}body.rtl .privacy-dropdown__dropdown{left:auto;right:0}body.rtl .dropdown--active .dropdown__content{text-align:right}body.rtl .dropdown--active .dropdown__content::before{left:auto;right:8px}body.rtl .dropdown--active .dropdown__content>ul{left:auto;right:-10px}body.rtl .privacy-dropdown__option__icon{margin-left:10px;margin-right:0}body.rtl .detailed-status__display-avatar{margin-right:0;margin-left:10px;float:right}body.rtl .detailed-status__favorites,body.rtl .detailed-status__reblogs{margin-left:0;margin-right:6px}@media screen and (min-width: 1025px){body.rtl .column,body.rtl .drawer{padding-left:5px;padding-right:5px}body.rtl .column:first-child,body.rtl .drawer:first-child{padding-left:5px;padding-right:10px}body.rtl .column:last-child,body.rtl .drawer:last-child{padding-right:0px;padding-left:10px}body.rtl .columns-area>div .column,body.rtl .columns-area>div .drawer{padding-left:5px;padding-right:5px}} diff --git a/test/embedExample.html b/test/embedExample.html new file mode 100644 index 0000000..9f7ce9b --- /dev/null +++ b/test/embedExample.html @@ -0,0 +1,47 @@ + +
+
+
+
+ +
+ + fenwick67 🦆 + boosted + +
+ + +
+ +
+ + + + diff --git a/test/result.html b/test/result.html new file mode 100644 index 0000000..f458f85 --- /dev/null +++ b/test/result.html @@ -0,0 +1,211 @@ + + + + + + +
+ +
Engineer, Developer, Person. http://fenwick.pizza
+ +
+
+ +
+
+ New status by fenwick67 +
+
+

What kind of coffee shop closes at 2pm?

+
+
+ +
+
+ fenwick67 shared a status by muninnherself@social.tchncs.de +
+ +
+ +
+
+ fenwick67 shared a status by alyx@witches.town +
+
+

🐧 💢

+
+
+ +
+
+ fenwick67 shared a status by jalefkowit +
+
+

"Visualize the you you want to be"

(I visualize a giant mecha-lizard demolishing a city)

+
+
+ +
+
+ New status by fenwick67 +
+
+

@viTekiM An infinity percent increase is pretty good

+
+
+ +
+
+ fenwick67 shared a status by Siphonay +
+
+

tbh there should be a vaporwave but with early 2000s aestethics

+
+
+ +
+
+ New status by fenwick67 +
+
+

@Siphonay they never told us this in French class

+
+
+ +
+
+ fenwick67 shared a status by boots@computerfairi.es +
+ +
+ +
+
+ fenwick67 shared a status by jk@mastodon.social +
+
+

Been thinking a LOT about how this aesthetic has not changed AT ALL in 25+ years

like those batman logos were probably painted on there in '89?

its probably the only nostalgic thing from my childhood that still exists in exactly the way I remember it
mastodon.social/media/Yug3yS-E
mastodon.social/media/7taNFVnr

+
+
+ +
+
+ fenwick67 shared a status by yogthos@mastodon.social +
+
+

The American Physical Society and CERN jointly announce a partnership to make all CERN-authored articles published in the APS journal collection to be Open Access.

journals.aps.org/prl/edannounc

+
+
+ +
+
+ fenwick67 shared a status by Shyfon@witches.town +
+
+

    .  . . · ✦    ✦  . ✫    ✧      🌟    ·    ·   ·    ✦  . ✫    ✧  ⭐       ·    . ˚   *    ✷ . ⋆   . ⋆     ✦  . ✫     . ˚   *  ✨    ✷ . ⋆   . ⋆            ·    . ˚          .  . . · ✦    ✦  . ✫    ✧        ⭐ ·    ·    . ˚   *       . ˚     ✧     ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧       🌘   ·    ·    . ˚   *       . ˚    . ✨  ⋆          🌟    .  . . · ✦         ·⭐    . ˚    ✦  . ✫    ✧         ·        ·    . ˚    . ˚   *    ✷ . ⋆   ⭐. ⋆     ✦  . ·    ·    . ˚   *       . ˚  ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧         ✧     ·    . ˚   *     ✦  . . ˚   *      

+
+
+ +
+
+ New status by fenwick67 +
+
+

@bunnylyn @masklayer My website is a .pizza domain and I love it

+
+
+ +
+
+ fenwick67 shared a status by cyrinsong@toot.cat +
+
+

PSA:

"FOOLISH MORTALS!!!" is a gender neutral form of address

+
+
+ +
+
+ fenwick67 shared a status by jalefkowit +
+
+

Just a reminder that you can download a copy of my 2013 novel "Day of the Kangaroo Man," ABSOLUTELY FREE here:

jasonlefkowitz.net/2013/12/dow

Take my word for it, it's worth every penny

+
+
+ +
+
+ New status by fenwick67 +
+
+

A kid swore at coding club today and I told him "hey! this is coding club not cussing club"

+
+
+ +
+
+ New status by fenwick67 +
+
+

I would complain about the new creepy Amazon-is-watching-you-change device but I'm so far out of the target demographic that it doesn't mean anything

+
+
+ +
+
+ fenwick67 shared a status by vahnj@awoo.space +
+ +
+ +
+
+ fenwick67 shared a status by Spike@mastodon.al +
+
+

React is supposed to be this great library made by Facebook, but Facebook is the most poorly performing website I use on a regular basis. It takes 20 seconds to show me my notifications, and is almost always the culprit when Firefox crashes.

So, not a great advertisement for React.

+
+
+ +
+
+ New status by fenwick67 +
+
+

@marvin hmm must be instance related, mine is still whizzing by.

+
+
+ +
+
+ fenwick67 shared a status by rustyk5@darksocial.party +
+
+

Fun Fact: Statistically, every person eats two spiders in their sleep every night. For every one human cell, your body contains more than a thousand spider cells. We are a billion spiders in a dense, struggling mass, trapped in a bag of human skin. Let us out. Let us out.

+
+
+ +
+ + + diff --git a/test/sample.atom b/test/sample.atom new file mode 100644 index 0000000..f303738 --- /dev/null +++ b/test/sample.atom @@ -0,0 +1,671 @@ + + + https://octodon.social/users/fenwick67.atom + fenwick67 🦆 + Engineer, Developer, Person. http://fenwick.pizza + 2017-04-26T21:55:05Z + https://assets.octodon.social/accounts/avatars/000/008/871/original/d5281ad9c6c7401d.jpg + + https://octodon.social/users/fenwick67 + http://activitystrea.ms/schema/1.0/person + https://octodon.social/users/fenwick67 + fenwick67 + fenwick67@octodon.social + <p>Engineer, Developer, Person. <a href="http://fenwick.pizza/" rel="nofollow noopener" target="_blank"><span class="invisible">http://</span><span class="">fenwick.pizza/</span><span class="invisible"></span></a></p> + + + + fenwick67 + fenwick67 🦆 + Engineer, Developer, Person. http://fenwick.pizza + public + + + + + + + + tag:octodon.social,2017-04-29:objectId=1364984:objectType=Status + 2017-04-29T20:04:34Z + 2017-04-29T20:04:34Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>What kind of coffee shop closes at 2pm?</p> + + public + + + + + tag:octodon.social,2017-04-29:objectId=1364568:objectType=Status + 2017-04-29T19:54:23Z + 2017-04-29T19:54:23Z + fenwick67 shared a status by muninnherself@social.tchncs.de + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:social.tchncs.de,2017-04-29:objectId=1460842:objectType=Status + 2017-04-29T19:52:16Z + 2017-04-29T19:52:17Z + New status by muninnherself@social.tchncs.de + + https://social.tchncs.de/users/muninnherself + http://activitystrea.ms/schema/1.0/person + https://social.tchncs.de/users/muninnherself + muninnherself + muninnherself@social.tchncs.de + <p>I write stuff, edit things, and look at rocks</p> + + + + muninnherself + Jack Fraser + I write stuff, edit things, and look at rocks + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p><a href="https://social.tchncs.de/tags/dailymegalith">#<span>DailyMegalith</span></a> Corrimony chambered cairn <a href="https://social.tchncs.de/tags/highland">#<span>Highland</span></a> <a href="https://social.tchncs.de/tags/scotland">#<span>Scotland</span></a> (2009) <a href="https://social.tchncs.de/media/MxqONSPOUvoExt4uVPM"><span class="invisible">https://</span><span class="ellipsis">social.tchncs.de/media/MxqONSP</span><span class="invisible">OUvoExt4uVPM</span></a></p> + + + + + + public + + + <p><a href="https://social.tchncs.de/tags/dailymegalith">#<span>DailyMegalith</span></a> Corrimony chambered cairn <a href="https://social.tchncs.de/tags/highland">#<span>Highland</span></a> <a href="https://social.tchncs.de/tags/scotland">#<span>Scotland</span></a> (2009) <a href="https://social.tchncs.de/media/MxqONSPOUvoExt4uVPM"><span class="invisible">https://</span><span class="ellipsis">social.tchncs.de/media/MxqONSP</span><span class="invisible">OUvoExt4uVPM</span></a></p> + + public + + + + + tag:octodon.social,2017-04-29:objectId=1364473:objectType=Status + 2017-04-29T19:52:11Z + 2017-04-29T19:52:11Z + fenwick67 shared a status by alyx@witches.town + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:witches.town,2017-04-29:objectId=1094893:objectType=Status + 2017-04-29T19:51:30Z + 2017-04-29T19:51:30Z + New status by alyx@witches.town + + https://witches.town/users/alyx + http://activitystrea.ms/schema/1.0/person + https://witches.town/users/alyx + alyx + alyx@witches.town + <p>Scarred witch, Sparkle Wars veteran. Bay Area queermo. Likes nerd shit and fitness. My aesthetic is Jumping Flash!.<br>| ⚧ she/her | @lilacwoods on social</p> + + + + alyx + :dizzy:Alyx + Scarred witch, Sparkle Wars veteran. Bay Area queermo. Likes nerd shit and fitness. My aesthetic is Jumping Flash!.| ⚧ she/her | @lilacwoods on social + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>🐧 💢</p> + + + public + + + <p>🐧 💢</p> + + public + + + + + tag:octodon.social,2017-04-29:objectId=1364413:objectType=Status + 2017-04-29T19:50:36Z + 2017-04-29T19:50:36Z + fenwick67 shared a status by jalefkowit + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:octodon.social,2017-04-29:objectId=1364283:objectType=Status + 2017-04-29T19:47:19Z + 2017-04-29T19:47:19Z + New status by jalefkowit + + https://octodon.social/users/jalefkowit + http://activitystrea.ms/schema/1.0/person + https://octodon.social/users/jalefkowit + jalefkowit + jalefkowit@octodon.social + <p>The terror of Tiny Town.</p> + + + + jalefkowit + Jason Lefkowitz 👻 + The terror of Tiny Town. + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>&quot;Visualize the you you want to be&quot;</p><p>(I visualize a giant mecha-lizard demolishing a city)</p> + + public + + + <p>&quot;Visualize the you you want to be&quot;</p><p>(I visualize a giant mecha-lizard demolishing a city)</p> + + public + + + + + tag:octodon.social,2017-04-29:objectId=1364376:objectType=Status + 2017-04-29T19:49:57Z + 2017-04-29T19:49:57Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/comment + http://activitystrea.ms/schema/1.0/post + <p><span class="h-card"><a href="https://mastodon.social/@viTekiM" class="u-url mention">@<span>viTekiM</span></a></span> An infinity percent increase is pretty good</p> + + + public + + + + + + tag:octodon.social,2017-04-29:objectId=1328023:objectType=Status + 2017-04-29T01:28:57Z + 2017-04-29T01:28:57Z + fenwick67 shared a status by Siphonay + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:octodon.social,2017-04-28:objectId=1323289:objectType=Status + 2017-04-28T23:11:18Z + 2017-04-28T23:11:18Z + New status by Siphonay + + https://octodon.social/users/Siphonay + http://activitystrea.ms/schema/1.0/person + https://octodon.social/users/Siphonay + Siphonay + Siphonay@octodon.social + <p>Alexis « Siphonay » · Rennes, France · ♂ (he/him) · ⚣ · Rear SJW · IT nerd · Furry trash · I like weed &amp; vinyl records · Private <span class="h-card"><a href="https://awoo.space/@Siphonay" class="u-url mention">@<span>Siphonay</span></a></span></p> + + + + Siphonay + Siphonay ❎ + +Alexis « Siphonay » · Rennes, France · ♂ (he/him) · ⚣ · Rear SJW · IT nerd · Furry trash · I like weed & vinyl records · Private @Siphonay@awoo.space + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>tbh there should be a vaporwave but with early 2000s aestethics</p> + + public + + + <p>tbh there should be a vaporwave but with early 2000s aestethics</p> + + public + + + + + tag:octodon.social,2017-04-28:objectId=1304871:objectType=Status + 2017-04-28T16:44:12Z + 2017-04-28T16:44:12Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/comment + http://activitystrea.ms/schema/1.0/post + <p><span class="h-card"><a href="https://octodon.social/@Siphonay" class="u-url mention">@<span>Siphonay</span></a></span> they never told us this in French class</p> + + + public + + + + + + tag:octodon.social,2017-04-28:objectId=1304282:objectType=Status + 2017-04-28T16:31:24Z + 2017-04-28T16:31:24Z + fenwick67 shared a status by boots@computerfairi.es + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:computerfairi.es,2017-04-28:objectId=149616:objectType=Status + 2017-04-28T16:28:55Z + 2017-04-28T16:29:01Z + New status by boots@computerfairi.es + + https://computerfairi.es/users/boots + http://activitystrea.ms/schema/1.0/person + https://computerfairi.es/users/boots + boots + boots@computerfairi.es + <p>boots (b-side trac̙k)̟̆ ̝̐<br>[ ̡ͅth͑e̩y ͙/͌ th͟é̩mͣ,̢͍̐ sͥ̐h̓͜e ̛̃̑/̝̰̯͓ͤ̽ ̚h̾̑ͭeͪrͯͨ ]̠͈ͬ͟</p><p>@ me when following if we havent interacted 🤖👨🏼</p> + + + + boots + boͫo͏t̠s̤͇̃̆‮͞🌸̼🌿̨͙‭̋ͪ҉ + boots (b-side trac̙k)̟̆ ̝̐[ ̡ͅth͑e̩y ͙/͌ th͟é̩mͣ,̢͍̀̐ sͥ̐h̓͜e ̛̃̑/̝̰̯͓ͤ̽ ̚h̾̑ͭeͪrͯͨ ]̠͈ͬ͟@ me when following if we havent interacted 🤖👨🏼 + private + + http://activitystrea.ms/schema/1.0/comment + http://activitystrea.ms/schema/1.0/post + <p><a href="https://computerfairi.es/media/IlYY1SfHKSj61i2ty9Q"><span class="invisible">https://</span><span class="ellipsis">computerfairi.es/media/IlYY1Sf</span><span class="invisible">HKSj61i2ty9Q</span></a></p> + + + public + + + + <p><a href="https://computerfairi.es/media/IlYY1SfHKSj61i2ty9Q"><span class="invisible">https://</span><span class="ellipsis">computerfairi.es/media/IlYY1Sf</span><span class="invisible">HKSj61i2ty9Q</span></a></p> + + public + + + + + tag:octodon.social,2017-04-28:objectId=1293515:objectType=Status + 2017-04-28T13:29:38Z + 2017-04-28T13:29:38Z + fenwick67 shared a status by jk@mastodon.social + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:mastodon.social,2017-04-28:objectId=4563195:objectType=Status + 2017-04-28T09:21:31Z + 2017-04-28T09:21:32Z + New status by jk@mastodon.social + + https://mastodon.social/users/jk + http://activitystrea.ms/schema/1.0/person + https://mastodon.social/users/jk + jk + jk@mastodon.social + <p>i made that mastodon boop sound <br><a href="http://soundcloud.com/josefkenny"><span class="invisible">http://</span><span class="">soundcloud.com/josefkenny</span><span class="invisible"></span></a> (he/him)</p> + + + + jk + josef + i made that mastodon boop sound http://soundcloud.com/josefkenny (he/him) + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>Been thinking a LOT about how this aesthetic has not changed AT ALL in 25+ years</p><p>like those batman logos were probably painted on there in '89?</p><p>its probably the only nostalgic thing from my childhood that still exists in exactly the way I remember it<br><a href="https://mastodon.social/media/Yug3yS-EyFDOCYhuSN8"><span class="invisible">https://</span><span class="ellipsis">mastodon.social/media/Yug3yS-E</span><span class="invisible">yFDOCYhuSN8</span></a><br><a href="https://mastodon.social/media/7taNFVnrAKCJuEIz90Y"><span class="invisible">https://</span><span class="ellipsis">mastodon.social/media/7taNFVnr</span><span class="invisible">AKCJuEIz90Y</span></a></p> + + + + public + + + <p>Been thinking a LOT about how this aesthetic has not changed AT ALL in 25+ years</p><p>like those batman logos were probably painted on there in '89?</p><p>its probably the only nostalgic thing from my childhood that still exists in exactly the way I remember it<br><a href="https://mastodon.social/media/Yug3yS-EyFDOCYhuSN8"><span class="invisible">https://</span><span class="ellipsis">mastodon.social/media/Yug3yS-E</span><span class="invisible">yFDOCYhuSN8</span></a><br><a href="https://mastodon.social/media/7taNFVnrAKCJuEIz90Y"><span class="invisible">https://</span><span class="ellipsis">mastodon.social/media/7taNFVnr</span><span class="invisible">AKCJuEIz90Y</span></a></p> + + public + + + + + tag:octodon.social,2017-04-27:objectId=1260709:objectType=Status + 2017-04-27T22:15:21Z + 2017-04-27T22:15:21Z + fenwick67 shared a status by yogthos@mastodon.social + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:mastodon.social,2017-04-27:objectId=4494311:objectType=Status + 2017-04-27T17:25:49Z + 2017-04-27T17:25:50Z + New status by yogthos@mastodon.social + + https://mastodon.social/users/yogthos + http://activitystrea.ms/schema/1.0/person + https://mastodon.social/users/yogthos + yogthos + yogthos@mastodon.social + <p>A sentience trapped in a prison of meat.</p><p><a href="http://yogthos.net/pages/about.html"><span class="invisible">http://</span><span class="">yogthos.net/pages/about.html</span><span class="invisible"></span></a></p> + + + + yogthos + Dmitri Sotnikov 🤖 + A sentience trapped in a prison of meat.http://yogthos.net/pages/about.html + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>The American Physical Society and CERN jointly announce a partnership to make all CERN-authored articles published in the APS journal collection to be Open Access. </p><p><a href="https://journals.aps.org/prl/edannounce/cern-and-aps-announce-partnership-for-open-access"><span class="invisible">https://</span><span class="ellipsis">journals.aps.org/prl/edannounc</span><span class="invisible">e/cern-and-aps-announce-partnership-for-open-access</span></a></p> + + public + + + <p>The American Physical Society and CERN jointly announce a partnership to make all CERN-authored articles published in the APS journal collection to be Open Access. </p><p><a href="https://journals.aps.org/prl/edannounce/cern-and-aps-announce-partnership-for-open-access"><span class="invisible">https://</span><span class="ellipsis">journals.aps.org/prl/edannounc</span><span class="invisible">e/cern-and-aps-announce-partnership-for-open-access</span></a></p> + + public + + + + + tag:octodon.social,2017-04-27:objectId=1260590:objectType=Status + 2017-04-27T22:13:20Z + 2017-04-27T22:13:20Z + fenwick67 shared a status by Shyfon@witches.town + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:witches.town,2017-04-27:objectId=995700:objectType=Status + 2017-04-27T00:30:54Z + 2017-04-27T00:30:55Z + New status by Shyfon@witches.town + + https://witches.town/users/Shyfon + http://activitystrea.ms/schema/1.0/person + https://witches.town/users/Shyfon + Shyfon + Shyfon@witches.town + <p>αMétaMoi sur twitter :)<br>Je suis féministe, vegan, licencié en histoire de l art, iconographe et future ingé de la doc.<br>Oh un chat ! ฅ^•ﻌ•^ฅ</p> + + + + Shyfon + βMétaMoi + αMétaMoi sur twitter :)Je suis féministe, vegan, licencié en histoire de l art, iconographe et future ingé de la doc.Oh un chat ! ฅ^•ﻌ•^ฅ + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>    .  . . · ✦    ✦  . ✫    ✧      🌟    ·    ·   ·    ✦  . ✫    ✧  ⭐       ·    . ˚   *    ✷ . ⋆   . ⋆     ✦  . ✫     . ˚   *  ✨    ✷ . ⋆   . ⋆            ·    . ˚          .  . . · ✦    ✦  . ✫    ✧        ⭐ ·    ·    . ˚   *       . ˚     ✧     ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧       🌘   ·    ·    . ˚   *       . ˚    . ✨  ⋆          🌟    .  . . · ✦         ·⭐    . ˚    ✦  . ✫    ✧         ·        ·    . ˚    . ˚   *    ✷ . ⋆   ⭐. ⋆     ✦  . ·    ·    . ˚   *       . ˚  ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧         ✧     ·    . ˚   *     ✦  . . ˚   *      </p> + + public + + + <p>    .  . . · ✦    ✦  . ✫    ✧      🌟    ·    ·   ·    ✦  . ✫    ✧  ⭐       ·    . ˚   *    ✷ . ⋆   . ⋆     ✦  . ✫     . ˚   *  ✨    ✷ . ⋆   . ⋆            ·    . ˚          .  . . · ✦    ✦  . ✫    ✧        ⭐ ·    ·    . ˚   *       . ˚     ✧     ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧       🌘   ·    ·    . ˚   *       . ˚    . ✨  ⋆          🌟    .  . . · ✦         ·⭐    . ˚    ✦  . ✫    ✧         ·        ·    . ˚    . ˚   *    ✷ . ⋆   ⭐. ⋆     ✦  . ·    ·    . ˚   *       . ˚  ·    . ˚   *     ✦  . ✫     . ˚   *    ✷ . ⋆    ✧         ✧     ·    . ˚   *     ✦  . . ˚   *      </p> + + public + + + + + tag:octodon.social,2017-04-27:objectId=1260496:objectType=Status + 2017-04-27T22:11:56Z + 2017-04-27T22:11:56Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/comment + http://activitystrea.ms/schema/1.0/post + <p><span class="h-card"><a href="https://mastodon.social/@bunnylyn" class="u-url mention">@<span>bunnylyn</span></a></span> <span class="h-card"><a href="https://slime.global/@masklayer" class="u-url mention">@<span>masklayer</span></a></span> My website is a .pizza domain and I love it</p> + + + + public + + + + + + tag:octodon.social,2017-04-27:objectId=1260248:objectType=Status + 2017-04-27T22:07:11Z + 2017-04-27T22:07:11Z + fenwick67 shared a status by cyrinsong@toot.cat + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:toot.cat,2017-04-27:objectId=404462:objectType=Status + 2017-04-27T21:31:40Z + 2017-04-27T21:31:43Z + New status by cyrinsong@toot.cat + + https://toot.cat/users/cyrinsong + http://activitystrea.ms/schema/1.0/person + https://toot.cat/users/cyrinsong + cyrinsong + cyrinsong@toot.cat + lynn // + +she\her // + +toot.cat moderator // + +polyam pangynic web tran + + + + cyrinsong + lynn, catte + lynn // + +she\her // + +toot.cat moderator // + +polyam pangynic web tran + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>PSA: </p><p>"FOOLISH MORTALS!!!" is a gender neutral form of address</p> + + public + + + <p>PSA: </p><p>"FOOLISH MORTALS!!!" is a gender neutral form of address</p> + + public + + + + + tag:octodon.social,2017-04-27:objectId=1258977:objectType=Status + 2017-04-27T21:42:31Z + 2017-04-27T21:42:31Z + fenwick67 shared a status by jalefkowit + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:octodon.social,2017-04-27:objectId=1255148:objectType=Status + 2017-04-27T20:28:17Z + 2017-04-27T20:28:17Z + New status by jalefkowit + + https://octodon.social/users/jalefkowit + http://activitystrea.ms/schema/1.0/person + https://octodon.social/users/jalefkowit + jalefkowit + jalefkowit@octodon.social + <p>The terror of Tiny Town.</p> + + + + jalefkowit + Jason Lefkowitz 👻 + The terror of Tiny Town. + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>Just a reminder that you can download a copy of my 2013 novel &quot;Day of the Kangaroo Man,&quot; ABSOLUTELY FREE here: </p><p><a href="https://jasonlefkowitz.net/2013/12/download-my-nanowrimo-novel-day-of-the-kangaroo-man/" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">jasonlefkowitz.net/2013/12/dow</span><span class="invisible">nload-my-nanowrimo-novel-day-of-the-kangaroo-man/</span></a></p><p>Take my word for it, it&apos;s worth every penny</p> + + public + + + <p>Just a reminder that you can download a copy of my 2013 novel &quot;Day of the Kangaroo Man,&quot; ABSOLUTELY FREE here: </p><p><a href="https://jasonlefkowitz.net/2013/12/download-my-nanowrimo-novel-day-of-the-kangaroo-man/" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">jasonlefkowitz.net/2013/12/dow</span><span class="invisible">nload-my-nanowrimo-novel-day-of-the-kangaroo-man/</span></a></p><p>Take my word for it, it&apos;s worth every penny</p> + + public + + + + + tag:octodon.social,2017-04-27:objectId=1211274:objectType=Status + 2017-04-27T04:32:22Z + 2017-04-27T04:32:22Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>A kid swore at coding club today and I told him &quot;hey! this is coding club not cussing club&quot;</p> + + public + + + + + tag:octodon.social,2017-04-26:objectId=1193920:objectType=Status + 2017-04-26T21:21:35Z + 2017-04-26T21:21:35Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>I would complain about the new creepy Amazon-is-watching-you-change device but I&apos;m so far out of the target demographic that it doesn&apos;t mean anything</p> + + public + + + + + tag:octodon.social,2017-04-26:objectId=1183909:objectType=Status + 2017-04-26T18:20:26Z + 2017-04-26T18:20:26Z + fenwick67 shared a status by vahnj@awoo.space + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:awoo.space,2017-04-26:objectId=466846:objectType=Status + 2017-04-26T18:14:44Z + 2017-04-26T18:15:03Z + New status by vahnj@awoo.space + + https://awoo.space/users/vahnj + http://activitystrea.ms/schema/1.0/person + https://awoo.space/users/vahnj + vahnj + vahnj@awoo.space + <p>I'm an admin!</p><p>call me James, Crom, or vahn, whichever you like.</p><p>sad and gay friendo, lover of and father to kobolds.</p><p>he/him/they</p> + + + + vahnj + Crom, Kobold King + I'm an admin!call me James, Crom, or vahn, whichever you like.sad and gay friendo, lover of and father to kobolds.he/him/they + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>same tbh </p><p><a href="https://awoo.space/media/h7OmbtgIfJYZss50oZ4"><span class="invisible">https://</span><span class="ellipsis">awoo.space/media/h7OmbtgIfJYZs</span><span class="invisible">s50oZ4</span></a></p> + + + public + + + <p>same tbh </p><p><a href="https://awoo.space/media/h7OmbtgIfJYZss50oZ4"><span class="invisible">https://</span><span class="ellipsis">awoo.space/media/h7OmbtgIfJYZs</span><span class="invisible">s50oZ4</span></a></p> + + public + + + + + tag:octodon.social,2017-04-26:objectId=1177913:objectType=Status + 2017-04-26T16:35:22Z + 2017-04-26T16:35:22Z + fenwick67 shared a status by Spike@mastodon.al + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:mastodon.al,2017-04-26:objectId=39160:objectType=Status + 2017-04-26T16:34:22Z + 2017-04-26T16:34:23Z + New status by Spike@mastodon.al + + https://mastodon.al/users/Spike + http://activitystrea.ms/schema/1.0/person + https://mastodon.al/users/Spike + Spike + Spike@mastodon.al + Developer, Visionary, Humanitarian, and all around Swell Guy. Server Admin of Mastodon.al. Currently residing in Trinidad and Tobago. + + + + Spike + Spike Williams + Developer, Visionary, Humanitarian, and all around Swell Guy. Server Admin of Mastodon.al. Currently residing in Trinidad and Tobago. + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>React is supposed to be this great library made by Facebook, but Facebook is the most poorly performing website I use on a regular basis. It takes 20 seconds to show me my notifications, and is almost always the culprit when Firefox crashes.</p><p>So, not a great advertisement for React.</p> + + public + + + <p>React is supposed to be this great library made by Facebook, but Facebook is the most poorly performing website I use on a regular basis. It takes 20 seconds to show me my notifications, and is almost always the culprit when Firefox crashes.</p><p>So, not a great advertisement for React.</p> + + public + + + + + tag:octodon.social,2017-04-25:objectId=1094471:objectType=Status + 2017-04-25T12:05:26Z + 2017-04-25T12:05:26Z + New status by fenwick67 + http://activitystrea.ms/schema/1.0/comment + http://activitystrea.ms/schema/1.0/post + <p><span class="h-card"><a href="https://mastodon.xsteadfastx.org/@marvin" class="u-url mention">@<span>marvin</span></a></span> hmm must be instance related, mine is still whizzing by.</p> + + + public + + + + + + tag:octodon.social,2017-04-25:objectId=1072398:objectType=Status + 2017-04-25T02:11:46Z + 2017-04-25T02:11:46Z + fenwick67 shared a status by rustyk5@darksocial.party + http://activitystrea.ms/schema/1.0/activity + http://activitystrea.ms/schema/1.0/share + + tag:darksocial.party,2017-04-25:objectId=107822:objectType=Status + 2017-04-25T02:10:36Z + 2017-04-25T02:10:39Z + New status by rustyk5@darksocial.party + + https://darksocial.party/users/rustyk5 + http://activitystrea.ms/schema/1.0/person + https://darksocial.party/users/rustyk5 + rustyk5 + rustyk5@darksocial.party + Welcome to the party, pal. | rusty@darksocial.party #nobot + + + + rustyk5 + Rusty 🦑 + Welcome to the party, pal. | rusty@darksocial.party #nobot + public + + http://activitystrea.ms/schema/1.0/note + http://activitystrea.ms/schema/1.0/post + <p>Fun Fact: Statistically, every person eats two spiders in their sleep every night. For every one human cell, your body contains more than a thousand spider cells. We are a billion spiders in a dense, struggling mass, trapped in a bag of human skin. Let us out. Let us out.</p> + + public + + + <p>Fun Fact: Statistically, every person eats two spiders in their sleep every night. For every one human cell, your body contains more than a thousand spider cells. We are a billion spiders in a dense, struggling mass, trapped in a bag of human skin. Let us out. Let us out.</p> + + public + + + + \ No newline at end of file diff --git a/test/test.js b/test/test.js new file mode 100644 index 0000000..d169116 --- /dev/null +++ b/test/test.js @@ -0,0 +1,15 @@ +// do a test + + +var fs = require('fs'), +request = require('request'), + convert = require('../lib/convert') + + +var r = fs.createReadStream('./test/sample.atom'); + +convert(r,function(er,data){ + if (er){return console.log('error: ',er)} + console.log('ok'); + fs.writeFileSync('./test/result.html',data,'utf8'); +})