TIL: Bs are not Ps. The confusion of which caused an inordinate amount of frustration today.
{
"type": "entry",
"published": "2020-02-06T14:11:54+00:00",
"url": "https://twitter.com/mapkyca/status/1225421866682195968",
"content": {
"text": "TIL: Bs are not Ps. The confusion of which caused an inordinate amount of frustration today."
},
"author": {
"type": "card",
"name": "Marcus Povey",
"url": "https://twitter.com/mapkyca",
"photo": "https://pbs.twimg.com/profile_images/1099999805/4879322645_3b0290d2b2_o.jpg"
},
"post-type": "note",
"_id": "8660925",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-06T14:01:50+00:00",
"url": "https://twitter.com/jgmac1106/status/1225419331581947904",
"content": {
"text": "Home in our Heliosphere: To the Spinners of the World #clmooc #poetryport: quickthoughts.jgregorymcverry.com/2020/02/06/hom\u2026",
"html": "Home in our Heliosphere: To the Spinners of the World <a href=\"https://twitter.com/search?q=%23clmooc\">#clmooc</a> <a href=\"https://twitter.com/search?q=%23poetryport\">#poetryport</a>: <a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/06/home-in-our-heliosphere-to-the-spinners-of-the-world\">quickthoughts.jgregorymcverry.com/2020/02/06/hom\u2026</a>"
},
"author": {
"type": "card",
"name": "https://jgregorymcverry.com",
"url": "https://twitter.com/jgmac1106",
"photo": "https://pbs.twimg.com/profile_images/565227710104883200/g4MDcTnx.jpeg"
},
"post-type": "note",
"_id": "8660926",
"_source": "2773"
}
Local First, Undo Redo, JS-Optional, Create Edit Publish: tantek.com/b/54y2
{
"type": "entry",
"published": "2020-02-06T11:30:57+00:00",
"url": "https://twitter.com/t/status/1225381358693842944",
"content": {
"text": "Local First, Undo Redo, JS-Optional, Create Edit Publish: tantek.com/b/54y2",
"html": "Local First, Undo Redo, JS-Optional, Create Edit Publish: <a href=\"https://tantek.com/b/54y2\">tantek.com/b/54y2</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "https://twitter.com/t",
"photo": "https://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH.jpeg"
},
"post-type": "note",
"_id": "8657363",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-06 01:11-0800",
"url": "https://tantek.com/2020/037/b2/local-first-undo-redo-create-edit-publish",
"name": "Local First, Undo Redo, JS-Optional, Create Edit Publish",
"content": {
"text": "For a while I have brainstormed designs for a user experience (UX) to create, edit, and publish notes and other types of posts, that is fully undoable (like Gmail\u2019s \"Undo Send\" yet generalized to to all user actions) and redoable, works local first, and lastly, uses progressive enhancement to work without scripts in the extreme fallback case of not being installed, and scripts not loading.\n\n\nI\u2019d like to be able to construct an entire post, like a photo post with caption, people tags, location tag etc. all locally, offline, without any need to access a network.\n\n\nThis is like how old email applications used to work. You could be completely offline, open your email application (there was no need to login to it!), create a message, add attachments, edit it etc., click \"Send\" and then forget about it. Eventually it synced to the network but you didn\u2019t worry or care about when that step would happen, you just knew it would eventually work without you having to tend to it or watch it.\n\n\nI want to approach this from user-experience-first design perspective, rather than a bottom-up protocol/technology/backend first perspective. For one, I don\u2019t know if any existing protocols actually have the necessary features to support such a UX.\n\n\nMicropub has a lot of what\u2019s needed, and I won\u2019t know what else is needed until I build the user flows I want, and then use those to drive any necessary Micropub feature additions. I absolutely do not want to limit my UX by what an existing protocol can or cannot do (essentially the software design version of the tail wags dog problem).\n\n\nLocal First\n\n\nI wrote up a brief stub article on the IndieWeb wiki on \nlocal first.\nI see local first as an essential aspect of an authoring experience that is maximally responsive to user input, and avoids any and all unnecessary ties to other services.\n\n\nI want a 100% local first offline capable creating / editing / posting workflow which then \u201cauto-syncs\u201d once the network shows up. The presence / absence of internet access should not affect user flow at all. Network presence or absence should only be a status indicator (e.g. whether / how much a post has been sent to the internet or not, any edits / updates etc.). It should never block any user actions. I\u2019ll say it again for emphasis:\n\n\nThe absence or presence of network access must not block any user actions. Ever. Any changes should be effective locally immediately, with zero data loss.\n\n\nOf course nearly no one actually builds apps like that today. Even typical mobile \u201cnative\u201d apps fail without network access (a couple of counter-examples are the iOS built-in Notes & Photos apps, as well as the independent maps.me 100% offline mapping program). Some \u201coffline first\u201d apps get close. But even those, especially on mobile, fail in both predictable (like requiring logging into a website or network service, just to edit a local text document) and strange ways.\n\n\nFull Undo Redo\n\n\nEvery such user action should be undoable and redoable, again, without waiting for the network (it\u2019s reasonable to apply some time limits for some actions, e.g. Gmail Undo can be configured to work for 30 seconds). Now imagine that for any user action, especialy any user action that creates, edits, or deletes content or any aspects thereof (like name, tags, location etc.).\n\n\nJS-Optional\n\n\nIn the case where a web application has not yet been installed, I also want it to be 100% capable without depending on loading any external scripts. \nThis JS-Optional approach is more broadly known as \nprogressive enhancement, which does require that you have at least some connection, enough for a browser to submit form requests and retrieve static HTML (and preferably though not required, static CSS and image files too).\n\n\nObviously once you are connected and are running at least a service worker for the site, local first requires execution of some scripts, though even then dependencies on any external scripts should be minimized and preferably eliminated.\nI do have a Service Worker and offline reading support on my site so I\u2019m getting there.\n\n\nIncremental Progress\n\n\nI believe aspects of this experience can be built and deployed incrementally, iterating over time until the full system is built.\n\nI\u2019ve got a handful of paper sketches of local-first undoable/redoable user flows. I have a service worker deployed on my site that allows viewers to browse offline the pages they\u2019ve previously visited, and I have a form submission user interface that handles part of publishing. There\u2019s a lot more to do, and as I think of them I add them to \npart of my \u201cWorking On\u201d list on the IndieWeb Wiki, iteratively reprioritizing and making incremental progress at IndieWebCamps.\n\n\nOne building block at a time, collaboratively.",
"html": "<p>\nFor a while I have brainstormed designs for a user experience (UX) to create, edit, and publish notes and other types of posts, that is fully undoable (like Gmail\u2019s \"Undo Send\" yet generalized to to all user actions) and redoable, works local first, and lastly, uses progressive enhancement to work without scripts in the extreme fallback case of not being installed, and scripts not loading.\n</p>\n<p>\nI\u2019d like to be able to construct an entire post, like a photo post with caption, people tags, location tag etc. all locally, offline, without any need to access a network.\n</p>\n<p>\nThis is like how old email applications used to work. You could be completely offline, open your email application (there was no need to login to it!), create a message, add attachments, edit it etc., click \"Send\" and then forget about it. Eventually it synced to the network but you didn\u2019t worry or care about when that step would happen, you just knew it would eventually work without you having to tend to it or watch it.\n</p>\n<p>\nI want to approach this from user-experience-first design perspective, rather than a bottom-up protocol/technology/backend first perspective. For one, I don\u2019t know if any existing protocols actually have the necessary features to support such a UX.\n</p>\n<p>\n<a href=\"https://micropub.net/\">Micropub</a> has a lot of what\u2019s needed, and I won\u2019t know what else is needed until I build the user flows I want, and then use those to drive any necessary Micropub feature additions. I absolutely do not want to limit my UX by what an existing protocol can or cannot do (essentially the software design version of the tail wags dog problem).\n</p>\n<h2>\nLocal First\n</h2>\n<p>\nI wrote up a brief stub article on the IndieWeb wiki on \n<a href=\"https://indieweb.org/local_first\">local first</a>.\nI see local first as an essential aspect of an authoring experience that is maximally responsive to user input, and avoids any and all unnecessary ties to other services.\n</p>\n<p>\nI want a 100% local first offline capable creating / editing / posting workflow which then \u201cauto-syncs\u201d once the network shows up. The presence / absence of internet access should not affect user flow at all. Network presence or absence should only be a status indicator (e.g. whether / how much a post has been sent to the internet or not, any edits / updates etc.). It should never block any user actions. I\u2019ll say it again for emphasis:\n</p>\n<p>\nThe absence or presence of network access must not block any user actions. Ever. Any changes should be effective locally immediately, with zero data loss.\n</p>\n<p>\nOf course nearly no one actually builds apps like that today. Even typical mobile \u201cnative\u201d apps fail without network access (a couple of counter-examples are the iOS built-in Notes & Photos apps, as well as the independent <a href=\"https://maps.me\">maps.me</a> 100% offline mapping program). Some \u201coffline first\u201d apps get close. But even those, especially on mobile, fail in both predictable (like requiring logging into a website or network service, just to edit a local text document) and strange ways.\n</p>\n<h2>\nFull Undo Redo\n</h2>\n<p>\nEvery such user action should be undoable and redoable, again, without waiting for the network (it\u2019s reasonable to apply some time limits for some actions, e.g. Gmail Undo can be configured to work for 30 seconds). Now imagine that for any user action, especialy any user action that creates, edits, or deletes content or any aspects thereof (like name, tags, location etc.).\n</p>\n<h2>\nJS-Optional\n</h2>\n<p>\nIn the case where a web application has not yet been installed, I also want it to be 100% capable without depending on loading any external scripts. \nThis JS-Optional approach is more broadly known as \n<a href=\"https://indieweb.org/progressive_enhancement\">progressive enhancement</a>, which does require that you have at least some connection, enough for a browser to submit form requests and retrieve static HTML (and preferably though not required, static CSS and image files too).\n</p>\n<p>\nObviously once you are connected and are running at least a service worker for the site, local first requires execution of some scripts, though even then dependencies on any external scripts should be minimized and preferably eliminated.\nI do have a Service Worker and offline reading support on my site so I\u2019m getting there.\n</p>\n<h2>\nIncremental Progress\n</h2>\n<p>\nI believe aspects of this experience can be built and deployed incrementally, iterating over time until the full system is built.\n</p>\n<p>I\u2019ve got a handful of paper sketches of local-first undoable/redoable user flows. I have a service worker deployed on my site that allows viewers to browse offline the pages they\u2019ve previously visited, and I have a form submission user interface that handles part of publishing. There\u2019s a lot more to do, and as I think of them I add them to \n<a href=\"https://indieweb.org/Falcon#better_post_creation_UI\">part of my \u201cWorking On\u201d list on the IndieWeb Wiki</a>, iteratively reprioritizing and making incremental progress at IndieWebCamps.\n</p>\n<p>\nOne building block at a time, collaboratively.\n</p>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "https://tantek.com/",
"photo": "https://tantek.com/photo.jpg"
},
"post-type": "article",
"_id": "8656271",
"_source": "2460"
}
SF + #WasmSummit ahoy! Here we come! 👋🦊 w/ @baelathefox (@ Gate Z50 - @airport_fra in Frankfurt am Main, Hessen) swarmapp.com/c/4AQ2QR27OzD
{
"type": "entry",
"published": "2020-02-06T08:53:17+00:00",
"url": "https://twitter.com/slsoftworks/status/1225341681702227969",
"photo": [
"https://pbs.twimg.com/media/EQFJxBSXYAACAzn.jpg"
],
"content": {
"text": "SF + #WasmSummit ahoy! Here we come! \ud83d\udc4b\ud83e\udd8a w/ @baelathefox (@ Gate Z50 - @airport_fra in Frankfurt am Main, Hessen) swarmapp.com/c/4AQ2QR27OzD",
"html": "SF + <a href=\"https://twitter.com/search?q=%23WasmSummit\">#WasmSummit</a> ahoy! Here we come! \ud83d\udc4b\ud83e\udd8a w/ <a href=\"https://twitter.com/baelathefox\">@baelathefox</a> (@ Gate Z50 - <a href=\"https://twitter.com/Airport_FRA\">@airport_fra</a> in Frankfurt am Main, Hessen) <a href=\"https://www.swarmapp.com/c/4AQ2QR27OzD\">swarmapp.com/c/4AQ2QR27OzD</a>"
},
"author": {
"type": "card",
"name": "flaki",
"url": "https://twitter.com/slsoftworks",
"photo": "https://pbs.twimg.com/profile_images/749678683514896385/7gxIRnoC.jpg"
},
"post-type": "photo",
"_id": "8654287",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-05T23:56:28-08:00",
"url": "https://beesbuzz.biz/blog/8395-Kitchen-day-10-Countertops",
"syndication": [
"https://indieweb.xyz/en/kitchen",
"https://indieweb.xyz/en/remodel"
],
"name": "Kitchen day 10: Countertops!",
"author": {
"type": "card",
"name": "fluffy",
"url": "https://beesbuzz.biz/",
"photo": "https://beesbuzz.biz/static/headshot.jpg"
},
"post-type": "article",
"_id": "8653496",
"_source": "2778"
}
New post: Plaidophile: Kitchen day 10: Countertops! beesbuzz.biz/blog/8395-Kitc…
{
"type": "entry",
"published": "2020-02-06T08:03:13+00:00",
"url": "https://twitter.com/fluffy/status/1225329081471905794",
"content": {
"text": "New post: Plaidophile: Kitchen day 10: Countertops! beesbuzz.biz/blog/8395-Kitc\u2026",
"html": "New post: Plaidophile: Kitchen day 10: Countertops! <a href=\"https://beesbuzz.biz/blog/8395-Kitchen-day-10-Countertops\">beesbuzz.biz/blog/8395-Kitc\u2026</a>"
},
"author": {
"type": "card",
"name": "fluffy \ud83d\udc9c",
"url": "https://twitter.com/fluffy",
"photo": "https://pbs.twimg.com/profile_images/1113258016151707648/vzpeXCFt.png"
},
"post-type": "note",
"_id": "8653385",
"_source": "2773"
}
🌴🌇 The sun is finally rising again @Nov_Project_SF. The air still a bit cold, the bright orange light(1) feels like an end to winter’s longer nights.
The clouds picked up a cotton candy underglow during the last 10 minutes of the workout(2).
Even at the start, the sky ranged from medium to light blue above a thin orange horizon(3).
#NPSF #NovemberProjectSF #NovemberProject #wakeUpTheSun #fromWhereIRun #blueSky #optoutside #SF #SanFrancisco #freeFitness #justShowUp #AltaPlaza #AltaPlazaPark #nofilter
{
"type": "entry",
"published": "2020-02-05 22:29-0800",
"url": "https://tantek.com/2020/036/t4/sun-rising-again",
"category": [
"NPSF",
"NovemberProjectSF",
"NovemberProject",
"wakeUpTheSun",
"fromWhereIRun",
"blueSky",
"optoutside",
"SF",
"SanFrancisco",
"freeFitness",
"justShowUp",
"AltaPlaza",
"AltaPlazaPark",
"nofilter"
],
"photo": [
"https://fastly.4sqi.net/img/general/width960/476_tPYNJ2wp0ZfQSsJF6nGxLaIejGC20vYJx8ppt6zFkXY.jpg",
"https://fastly.4sqi.net/img/general/width960/476_JYVwUj5CCA83ZuK84qrPJK8m_16kv3xTLUy6O2BMrvg.jpg",
"https://fastly.4sqi.net/img/general/width960/476_AP45yG0PYhwisyvlGi47f5Qr7CxCK_pIoiDg6-UN9Gk.jpg"
],
"content": {
"text": "\ud83c\udf34\ud83c\udf07 The sun is finally rising again @Nov_Project_SF. The air still a bit cold, the bright orange light(1) feels like an end to winter\u2019s longer nights.\n\nThe clouds picked up a cotton candy underglow during the last 10 minutes of the workout(2).\n\nEven at the start, the sky ranged from medium to light blue above a thin orange horizon(3).\n\n#NPSF #NovemberProjectSF #NovemberProject #wakeUpTheSun #fromWhereIRun #blueSky #optoutside #SF #SanFrancisco #freeFitness #justShowUp #AltaPlaza #AltaPlazaPark #nofilter",
"html": "<a class=\"u-bridgy-flickr-photo\" href=\"https://fastly.4sqi.net/img/general/original/476_tPYNJ2wp0ZfQSsJF6nGxLaIejGC20vYJx8ppt6zFkXY.jpg\"></a><a class=\"u-bridgy-flickr-photo\" href=\"https://fastly.4sqi.net/img/general/original/476_JYVwUj5CCA83ZuK84qrPJK8m_16kv3xTLUy6O2BMrvg.jpg\"></a><a class=\"u-bridgy-flickr-photo\" href=\"https://fastly.4sqi.net/img/general/original/476_AP45yG0PYhwisyvlGi47f5Qr7CxCK_pIoiDg6-UN9Gk.jpg\"></a>\ud83c\udf34\ud83c\udf07 The sun is finally rising again <a class=\"h-cassis-username\" href=\"https://twitter.com/Nov_Project_SF\">@Nov_Project_SF</a>. The air still a bit cold, the bright orange light(1) feels like an end to winter\u2019s longer nights.<br /><br />The clouds picked up a cotton candy underglow during the last 10 minutes of the workout(2).<br /><br />Even at the start, the sky ranged from medium to light blue above a thin orange horizon(3).<br /><br />#<span class=\"p-category\">NPSF</span> #<span class=\"p-category\">NovemberProjectSF</span> #<span class=\"p-category\">NovemberProject</span> #<span class=\"p-category\">wakeUpTheSun</span> #<span class=\"p-category\">fromWhereIRun</span> #<span class=\"p-category\">blueSky</span> #<span class=\"p-category\">optoutside</span> #<span class=\"p-category\">SF</span> #<span class=\"p-category\">SanFrancisco</span> #<span class=\"p-category\">freeFitness</span> #<span class=\"p-category\">justShowUp</span> #<span class=\"p-category\">AltaPlaza</span> #<span class=\"p-category\">AltaPlazaPark</span> #<span class=\"p-category\">nofilter</span>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "https://tantek.com/",
"photo": "https://tantek.com/photo.jpg"
},
"post-type": "photo",
"_id": "8653055",
"_source": "2460"
}
lol son I hope @CertaPet doesn't fuck me over
{
"type": "entry",
"published": "2020-02-06T07:20:06+00:00",
"url": "https://twitter.com/jackyalcine/status/1225318232308867073",
"content": {
"text": "lol son I hope @CertaPet doesn't fuck me over",
"html": "lol son I hope <a href=\"https://twitter.com/CertaPet\">@CertaPet</a> doesn't fuck me over"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"_id": "8652621",
"_source": "2773"
}
🌴🌇 The sun is finally rising again @Nov_Project_SF. The air still a bit cold, the bright orange light(1) feels like an end to winter’s longer nights.
The clouds picked up a cotton candy underglow during the last 10 minutes of the workout(2).
Even at… tantek.com/2020/036/t4/su…
{
"type": "entry",
"published": "2020-02-06T07:18:00+00:00",
"url": "https://twitter.com/t/status/1225317705592590341",
"photo": [
"https://pbs.twimg.com/media/EQEz83fXkAAZJzl.jpg",
"https://pbs.twimg.com/media/EQEz9GCU8AAiIw8.jpg",
"https://pbs.twimg.com/media/EQEz9U5WsAIoLIz.jpg"
],
"content": {
"text": "\ud83c\udf34\ud83c\udf07 The sun is finally rising again @Nov_Project_SF. The air still a bit cold, the bright orange light(1) feels like an end to winter\u2019s longer nights.\n\nThe clouds picked up a cotton candy underglow during the last 10 minutes of the workout(2).\n\nEven at\u2026 tantek.com/2020/036/t4/su\u2026",
"html": "\ud83c\udf34\ud83c\udf07 The sun is finally rising again <a href=\"https://twitter.com/Nov_Project_SF\">@Nov_Project_SF</a>. The air still a bit cold, the bright orange light(1) feels like an end to winter\u2019s longer nights.\n\nThe clouds picked up a cotton candy underglow during the last 10 minutes of the workout(2).\n\nEven at\u2026 <a href=\"https://tantek.com/2020/036/t4/sun-rising-again\">tantek.com/2020/036/t4/su\u2026</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "https://twitter.com/t",
"photo": "https://pbs.twimg.com/profile_images/423350922408767488/nlA_m2WH.jpeg"
},
"post-type": "photo",
"_id": "8652622",
"_source": "2773"
}
"we LITERALLY only got enemies" lmfaooooo
Villains that always kill their subordinates.
{
"type": "entry",
"published": "2020-02-06T06:35:57+00:00",
"url": "https://twitter.com/jackyalcine/status/1225307122868486144",
"quotation-of": "https://twitter.com/CalebCity/status/1225301564736319488",
"content": {
"text": "\"we LITERALLY only got enemies\" lmfaooooo"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/CalebCity/status/1225301564736319488": {
"type": "entry",
"published": "2020-02-06T06:13:52+00:00",
"url": "https://twitter.com/CalebCity/status/1225301564736319488",
"video": [
"https://video.twimg.com/ext_tw_video/1225301326998855682/pu/vid/1280x720/e0MmECAhYm3jW2o1.mp4?tag=10"
],
"content": {
"text": "Villains that always kill their subordinates."
},
"author": {
"type": "card",
"name": "Caleb\u611b",
"url": "https://twitter.com/CalebCity",
"photo": "https://pbs.twimg.com/profile_images/724478692563423232/JvFVhFSD.jpg"
},
"post-type": "video"
}
},
"_id": "8651766",
"_source": "2773"
}
Yo shoutout to the people who work on WINE, y'all bring software everywhere and anywhere (Mac and Linux). I appreciate y'all
{
"type": "entry",
"published": "2020-02-06T06:22:32+00:00",
"url": "https://twitter.com/jackyalcine/status/1225303744549511168",
"content": {
"text": "Yo shoutout to the people who work on WINE, y'all bring software everywhere and anywhere (Mac and Linux). I appreciate y'all"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"_id": "8651565",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-06T08:21:17+02:00",
"url": "https://david.shanske.com/2020/02/06/micropub-for-wordpress-2-1-0-released/",
"syndication": [
"https://news.indieweb.org/en/david.shanske.com/2020/02/06/micropub-for-wordpress-2-1-0-released/"
],
"name": "Micropub for WordPress 2.1.0 Released",
"content": {
"text": "Micropub version 2.1.0 for WordPress was released. It contains no exciting new features as Micropub is fairly stable.\nMicropub now checks WordPress capabilities more effectively. It will now throw an error if the user tries to edit a post authored by another user if they do not have that permission, for example.\nDefault Titles and captions weren\u2019t being set for images when uploaded.\nFix a variety of timezone related bugs\nAdded support for the proposed draft scope. If the token has this scope and not the create scope, then it will only allow posts to be created as drafts.\nReturn the created URL in the Micropub response to support an automation use case.\nAdd filters to allow a custom post type or custom taxonomy to be set during creation.\nNo longer support the \u2018post\u2019 scope as permission to do anything. It will map to a combination of create and update.\nMisc unit test tweaks for consistency.",
"html": "Micropub version 2.1.0 for WordPress was released. It contains no exciting new features as Micropub is fairly stable.\n<ul><li>Micropub now checks WordPress capabilities more effectively. It will now throw an error if the user tries to edit a post authored by another user if they do not have that permission, for example.</li>\n<li>Default Titles and captions weren\u2019t being set for images when uploaded.</li>\n<li>Fix a variety of timezone related bugs</li>\n<li>Added support for the proposed draft scope. If the token has this scope and not the create scope, then it will only allow posts to be created as drafts.</li>\n<li>Return the created URL in the Micropub response to support an automation use case.</li>\n<li>Add filters to allow a custom post type or custom taxonomy to be set during creation.</li>\n<li>No longer support the \u2018post\u2019 scope as permission to do anything. It will map to a combination of create and update.</li>\n<li>Misc unit test tweaks for consistency.</li>\n</ul>"
},
"author": {
"type": "card",
"name": "David Shanske",
"url": "https://david.shanske.com/",
"photo": "https://secure.gravatar.com/avatar/681eba02e72ba1d894097034a8110e61?s=49&d=mm&r=g"
},
"post-type": "article",
"_id": "8651540",
"_source": "1905"
}
Sonnn https://t.co/3GTbeYV8J1
My coworker got engaged. She knows I was a Certified Gemologist for 9 yrs. She asked me to look at her ring & give her an estimate on it’s value. He told her it was 10g...
{
"type": "entry",
"published": "2020-02-06T06:19:59+00:00",
"url": "https://twitter.com/jackyalcine/status/1225303102821027841",
"video": [
"https://video.twimg.com/tweet_video/EQEmqp6UcAAI4Rm.mp4"
],
"quotation-of": "https://twitter.com/_Iamnvtveviv/status/1225205205635149824",
"content": {
"text": "Sonnn https://t.co/3GTbeYV8J1"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "video",
"refs": {
"https://twitter.com/_Iamnvtveviv/status/1225205205635149824": {
"type": "entry",
"published": "2020-02-05T23:50:58+00:00",
"url": "https://twitter.com/_Iamnvtveviv/status/1225205205635149824",
"content": {
"text": "My coworker got engaged. She knows I was a Certified Gemologist for 9 yrs. She asked me to look at her ring & give her an estimate on it\u2019s value. He told her it was 10gs. It\u2019s a white sapphire set in plated sterling silver. Worth less than $10. Do I tell her?",
"html": "My coworker got engaged. She knows I was a Certified Gemologist for 9 yrs. She asked me to look at her ring & give her an estimate on it\u2019s value. He told her it was 10gs. It\u2019s a white sapphire set in plated sterling silver. Worth less than $10. Do I tell her?"
},
"author": {
"type": "card",
"name": ".",
"url": "https://twitter.com/_Iamnvtveviv",
"photo": "https://pbs.twimg.com/profile_images/1211216278440030208/uMHz8S4z.jpg"
},
"post-type": "note"
}
},
"_id": "8651395",
"_source": "2773"
}
LMFAO lmfaoooo yo I heard this in my head
Some little white girl (between 8 and 10) in Starbucks just looked up at me and said
"Whoa, a beautiful chocolate man"
And her dad literally grabbed her arm and said " Em...
{
"type": "entry",
"published": "2020-02-06T06:18:33+00:00",
"url": "https://twitter.com/jackyalcine/status/1225302744250011649",
"quotation-of": "https://twitter.com/BlankChexkYB/status/1224854735418585090",
"content": {
"text": "LMFAO lmfaoooo yo I heard this in my head"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/BlankChexkYB/status/1224854735418585090": {
"type": "entry",
"published": "2020-02-05T00:38:20+00:00",
"url": "https://twitter.com/BlankChexkYB/status/1224854735418585090",
"content": {
"text": "Some little white girl (between 8 and 10) in Starbucks just looked up at me and said\n\"Whoa, a beautiful chocolate man\"\nAnd her dad literally grabbed her arm and said \" Emily what the fuck is the matter with you\" \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02"
},
"author": {
"type": "card",
"name": "\ud83c\udd71\ufe0f WAVYYY! \ud83c\udf0a",
"url": "https://twitter.com/BlankChexkYB",
"photo": "https://pbs.twimg.com/profile_images/1208119018730725376/7Y4gdBiP.jpg"
},
"post-type": "note"
}
},
"_id": "8651398",
"_source": "2773"
}
This a job for batman TF we going to do
{
"type": "entry",
"published": "2020-02-06T06:14:51+00:00",
"url": "https://twitter.com/jackyalcine/status/1225301811478679552",
"quotation-of": "https://twitter.com/TheBronzeStatue/status/1225278214374928384",
"content": {
"text": "LMFAO NOT FOR BATMAN"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/TheBronzeStatue/status/1225278214374928384": {
"type": "entry",
"published": "2020-02-06T04:41:05+00:00",
"url": "https://twitter.com/TheBronzeStatue/status/1225278214374928384",
"in-reply-to": [
"https://twitter.com/AmbriaHarkey/status/1225244928625737729"
],
"content": {
"text": "This a job for batman TF we going to do",
"html": "This a job for batman TF we going to do\n<a class=\"u-mention\" href=\"https://twitter.com/AmbriaHarkey\"></a>"
},
"author": {
"type": "card",
"name": "Bronzelion.Jpeg",
"url": "https://twitter.com/TheBronzeStatue",
"photo": "https://pbs.twimg.com/profile_images/1211506642765975552/nDnFeZZF.jpg"
},
"post-type": "reply"
}
},
"_id": "8651346",
"_source": "2773"
}
this is one of the biggest caps I've seen in my life
I don’t ask for a lot but it would be greatly appreciated if this post goes viral!! My cousin is in SERIOUS danger!! He’s been kidnapped in Chihuahua, Mexico. Who eve...
{
"type": "entry",
"published": "2020-02-06T05:26:37+00:00",
"url": "https://twitter.com/jackyalcine/status/1225289673121005568",
"quotation-of": "https://twitter.com/AmbriaHarkey/status/1225244928625737729",
"content": {
"text": "this is one of the biggest caps I've seen in my life"
},
"author": {
"type": "card",
"name": "jacky wants to be DaDaddy",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/AmbriaHarkey/status/1225244928625737729": {
"type": "entry",
"published": "2020-02-06T02:28:49+00:00",
"url": "https://twitter.com/AmbriaHarkey/status/1225244928625737729",
"photo": [
"https://pbs.twimg.com/media/EQDxuxFXUAAZLmI.jpg"
],
"content": {
"text": "I don\u2019t ask for a lot but it would be greatly appreciated if this post goes viral!! My cousin is in SERIOUS danger!! He\u2019s been kidnapped in Chihuahua, Mexico. Who ever has him is asking for $100,000. Like even the smallest donations would help."
},
"author": {
"type": "card",
"name": "Si'Mone\u00ea\ud83d\udc9c\ud83d\udca6",
"url": "https://twitter.com/AmbriaHarkey",
"photo": "https://pbs.twimg.com/profile_images/940140994544074752/BUh-fpLm.jpg"
},
"post-type": "photo"
}
},
"_id": "8650456",
"_source": "2773"
}
Explaining to Chloe that the dog on Voyager she’s barking at has been dead for a while.
{
"type": "entry",
"published": "2020-02-06T04:19:03+00:00",
"url": "https://twitter.com/karabaic/status/1225272669316075520",
"content": {
"text": "Explaining to Chloe that the dog on Voyager she\u2019s barking at has been dead for a while."
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/899122188921446400/NZHI0sB2.jpg"
},
"post-type": "note",
"_id": "8649209",
"_source": "2773"
}
OK, starting the Voyager watch a little behind schedule. But just a couple of minutes with Mulgrew’s Janeway may have taken me off Team Picard.
{
"type": "entry",
"published": "2020-02-06T04:06:39+00:00",
"url": "https://twitter.com/karabaic/status/1225269549924155392",
"content": {
"text": "OK, starting the Voyager watch a little behind schedule. But just a couple of minutes with Mulgrew\u2019s Janeway may have taken me off Team Picard."
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/899122188921446400/NZHI0sB2.jpg"
},
"post-type": "note",
"_id": "8648905",
"_source": "2773"
}
Wait, you can turn a food replicator into a tiny transporter? That must’ve totally been featured in the 24th Century version of Make Magazine.
Deep Space 9 Deep Cuts.
{
"type": "entry",
"published": "2020-02-06T03:26:27+00:00",
"url": "https://twitter.com/karabaic/status/1225259431669071872",
"content": {
"text": "Wait, you can turn a food replicator into a tiny transporter? That must\u2019ve totally been featured in the 24th Century version of Make Magazine. \n\nDeep Space 9 Deep Cuts."
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/899122188921446400/NZHI0sB2.jpg"
},
"post-type": "note",
"_id": "8648217",
"_source": "2773"
}