Thank you Black people. For real. My goodness. (v2.jacky.wtf/post/e2879d8a-…)
{
"type": "entry",
"published": "2020-02-15T23:20:08+00:00",
"url": "https://twitter.com/jackyalcine/status/1228821324816113665",
"content": {
"text": "Thank you Black people. For real. My goodness. (v2.jacky.wtf/post/e2879d8a-\u2026)",
"html": "Thank you Black people. For real. My goodness. (<a href=\"https://v2.jacky.wtf/post/e2879d8a-cfde-4042-912d-0bb27045d79b\">v2.jacky.wtf/post/e2879d8a-\u2026</a>)"
},
"author": {
"type": "card",
"name": "I'm not rich who the fuck told you that?",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1217457758863286273/jOe5WIo4.jpg"
},
"post-type": "note",
"_id": "8971133",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-16T00:11:03+02:00",
"url": "https://david.shanske.com/2020/02/15/fixing-times-on-exif/",
"name": "Fixing Times on EXIF",
"content": {
"text": "I\u2019ve been working on a patch for WordPress that involves fixing the incorrectly stored timestamp stored as part of WordPress image metadata. I already do something like this in my Simple Location plugin, but I\u2019ve found a way that works more simply.\nTo summarize the issue, there are multiple datetime properties stored in your photos. The creation time of the file(DateTime), the time the image was created(DateTimeOriginal), and the time it was digitized(DateTimeDigitized. There are two separate properties for the GPS time and date.\nThe problem being that the GPS time and date, which may not reflect when the picture was taken, but the last GPS lock, is in UTC, but the rest have no defined timezone. With photos taken on a cell phone, if you have GPS time and date, you also have location, which can be used to figure out timezone as well.\nOffset fields for the three datetime stamps mentioned were introduced in EXIF version 2.31, which came out in July of 2016. PHP returns these with its exif_read_data function as \u2018UndefinedTag:0x9010\u2019, \u2018UndefinedTag:0x9011\u2019, \u2018UndefinedTag:0x9012\u2019, reflecting DateTime, DateTimeOriginal, and DateTimeDigitized respectively.\nI don\u2019t support these, and just learned about them, and intended to support them\u2026until I read EXIF version 2.32, which just came out last year and no one is using yet. They are retiring all of those offset formats they introduced in 2.32 and switching all their date properties to ISO8601. They are also changing GPS Coordinate storage, if you use that.\nSo any code has to check the EXIF version, and if 0231, check the offset. If 0232, use just the properties, and if less than 0231, try to derive from the GPS location or timestamp.\n\n\nfunction exif_gpsdatetime( $datestamp, $timestamp ) {\n\nreturn new DateTimeImmutable(\n\n$datestamp . ' ' . sprintf( '%02d:%02d:%02d', (int) $timestamp[0], (int) $timestamp[1], (int) $timestamp[2] ),\n\nnew DateTimeZone( 'UTC' )\n\n);\n\n}\n\nfunction derive_exif_timezone( $datetime, $gmtdatetime ) {\n\n$seconds = $datetime->getTimestamp() - $gmtdatetime->getTimestamp();\n\nreturn new DateTimeZone( timezone_name_from_abbr( '', $seconds, 0 ) );\n\n}\n\nHere are the two functions that I\u2019m using to calculate timezone offset without using geo coordinates. You can also use a timezone lookup database for the location, but this adds another dependency.\nIf you want to go solely using built-in PHP functions, you can get the datetime stamp(whichever of the properties you are using), set to assume it is UTC, figure out the difference between the two times, and use that to calculate a timezone, which you apply to the original.\nWordPress takes the digitized property and converts it to a timestamp using strotime, which is usually an inaccurate timestamp and therefore useless. I am trying to get this fixed.",
"html": "I\u2019ve been working on a patch for WordPress that involves fixing the incorrectly stored timestamp stored as part of WordPress image metadata. I already do something like this in my Simple Location plugin, but I\u2019ve found a way that works more simply.\n<p>To summarize the issue, there are multiple datetime properties stored in your photos. The creation time of the file(DateTime), the time the image was created(DateTimeOriginal), and the time it was digitized(DateTimeDigitized. There are two separate properties for the GPS time and date.</p>\n<p>The problem being that the GPS time and date, which may not reflect when the picture was taken, but the last GPS lock, is in UTC, but the rest have no defined timezone. With photos taken on a cell phone, if you have GPS time and date, you also have location, which can be used to figure out timezone as well.</p>\n<p>Offset fields for the three datetime stamps mentioned were introduced in EXIF version 2.31, which came out in July of 2016. PHP returns these with its exif_read_data function as \u2018UndefinedTag:0x9010\u2019, \u2018UndefinedTag:0x9011\u2019, \u2018UndefinedTag:0x9012\u2019, reflecting DateTime, DateTimeOriginal, and DateTimeDigitized respectively.</p>\n<p>I don\u2019t support these, and just learned about them, and intended to support them\u2026until I read EXIF version 2.32, which just came out last year and no one is using yet. They are retiring all of those offset formats they introduced in 2.32 and switching all their date properties to ISO8601. They are also changing GPS Coordinate storage, if you use that.</p>\n<p>So any code has to check the EXIF version, and if 0231, check the offset. If 0232, use just the properties, and if less than 0231, try to derive from the GPS location or timestamp.</p>\n<p><code><br />\nfunction exif_gpsdatetime( $datestamp, $timestamp ) {<br />\nreturn new DateTimeImmutable(<br />\n$datestamp . ' ' . sprintf( '%02d:%02d:%02d', (int) $timestamp[0], (int) $timestamp[1], (int) $timestamp[2] ),<br />\nnew DateTimeZone( 'UTC' )<br />\n);<br />\n}</code><code><br />\nfunction derive_exif_timezone( $datetime, $gmtdatetime ) {<br />\n$seconds = $datetime->getTimestamp() - $gmtdatetime->getTimestamp();<br />\nreturn new DateTimeZone( timezone_name_from_abbr( '', $seconds, 0 ) );<br />\n}<br /></code></p>\n<p>Here are the two functions that I\u2019m using to calculate timezone offset without using geo coordinates. You can also use a timezone lookup database for the location, but this adds another dependency.</p>\n<p>If you want to go solely using built-in PHP functions, you can get the datetime stamp(whichever of the properties you are using), set to assume it is UTC, figure out the difference between the two times, and use that to calculate a timezone, which you apply to the original.</p>\n<p>WordPress takes the digitized property and converts it to a timestamp using strotime, which is usually an inaccurate timestamp and therefore useless. I am trying to get this fixed.</p>"
},
"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": "8969417",
"_source": "1905"
}
Prediction: this won’t age well.
{
"type": "entry",
"published": "2020-02-15T21:49:59+00:00",
"url": "https://twitter.com/dangerdave/status/1228798635619471360",
"photo": [
"https://pbs.twimg.com/media/EQ2R1vPUUAEUa63.jpg"
],
"content": {
"text": "Prediction: this won\u2019t age well."
},
"author": {
"type": "card",
"name": "Dave Peck",
"url": "https://twitter.com/dangerdave",
"photo": "https://pbs.twimg.com/profile_images/1175122018536062976/wMpKNJRv.jpg"
},
"post-type": "photo",
"_id": "8969099",
"_source": "2773"
}
{
"type": "entry",
"author": {
"name": "Jared White",
"url": "https://jaredwhite.com/",
"photo": null
},
"url": "https://jaredwhite.com/articles/what-its-like-to-live-in-portlandia",
"published": "2020-02-15T08:15:18-08:00",
"content": {
"html": "<img alt=\"\" src=\"https://res.cloudinary.com/mariposta/image/upload/w_1200,c_limit,q_65/FDF0F3FE-0D1F-40C5-AB7E-68BC2AA91765_h4ltsy.jpg\" /><h2>This may sound like the craziest thing you\u2019ve ever heard, but I watched a TV show called Portlandia and then I moved to Portland. No joke.</h2>\n\n<p><a href=\"https://jaredwhite.com/articles/what-its-like-to-live-in-portlandia\">Read on the Web</a></p>",
"text": "This may sound like the craziest thing you\u2019ve ever heard, but I watched a TV show called Portlandia and then I moved to Portland. No joke.\n\nRead on the Web"
},
"name": "What It\u2019s Like to Live in Portlandia",
"post-type": "article",
"_id": "8966974",
"_source": "2783"
}
{
"type": "entry",
"author": {
"name": "Jared White",
"url": "https://jaredwhite.com/",
"photo": null
},
"url": "https://jaredwhite.com/pictures/20200215/1",
"published": "2020-02-15T07:55:43-08:00",
"content": {
"html": "<img alt=\"\" src=\"https://res.cloudinary.com/mariposta/image/upload/w_1200,c_limit,q_65/52CB36AD-DFF0-4A03-9BD9-24CF374102B5_o1rrn5.jpg\" /><p>Two of my favorite skyscrapers in the Emerald City in one shot. Achievement unlocked!</p>\n\n<p><a href=\"https://jaredwhite.com/tag/seattle\">#seattle</a> <a href=\"https://jaredwhite.com/tag/washingtonexplored\">#washingtonexplored</a></p>",
"text": "Two of my favorite skyscrapers in the Emerald City in one shot. Achievement unlocked!\n\n#seattle #washingtonexplored"
},
"name": "Picture for Saturday, February 15, 2020 at 7:55 AM",
"post-type": "article",
"_id": "8966975",
"_source": "2783"
}
I’m watching this ep of High Maintenance and ever since they professed a mutual love of Steven Universe I am rooting for Kym & Evan and hoping we’re in spinoff territory
{
"type": "entry",
"published": "2020-02-15T20:20:55+00:00",
"url": "https://twitter.com/karabaic/status/1228776221774757888",
"content": {
"text": "I\u2019m watching this ep of High Maintenance and ever since they professed a mutual love of Steven Universe I am rooting for Kym & Evan and hoping we\u2019re in spinoff territory",
"html": "I\u2019m watching this ep of High Maintenance and ever since they professed a mutual love of Steven Universe I am rooting for Kym & Evan and hoping we\u2019re in spinoff territory"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/899122188921446400/NZHI0sB2.jpg"
},
"post-type": "note",
"_id": "8966833",
"_source": "2773"
}
Hey #writingcommunity here is my #poetryport poem for the word Stretch: jgregorymcverry.com/poetryisastret… gonna read it some and mess with the timings of the CSS animation. (quickthoughts.jgregorymcverry.com/s/MYJof)
{
"type": "entry",
"published": "2020-02-15T20:00:29+00:00",
"url": "https://twitter.com/jgmac1106/status/1228771078333489152",
"content": {
"text": "Hey #writingcommunity here is my #poetryport poem for the word Stretch: jgregorymcverry.com/poetryisastret\u2026 gonna read it some and mess with the timings of the CSS animation. (quickthoughts.jgregorymcverry.com/s/MYJof)",
"html": "Hey <a href=\"https://twitter.com/search?q=%23writingcommunity\">#writingcommunity</a> here is my <a href=\"https://twitter.com/search?q=%23poetryport\">#poetryport</a> poem for the word Stretch: <a href=\"https://jgregorymcverry.com/poetryisastretch\">jgregorymcverry.com/poetryisastret\u2026</a> gonna read it some and mess with the timings of the CSS animation. (<a href=\"https://quickthoughts.jgregorymcverry.com/s/MYJof\">quickthoughts.jgregorymcverry.com/s/MYJof</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": "8966584",
"_source": "2773"
}
Hey #writingcommunity here is my #poetryport poem for the word Stretch: https://jgregorymcverry.com/poetryisastretch gonna read it some and mess with the timings of the CSS animation.
{
"type": "entry",
"published": "2020-02-15T20:00:23+0000",
"url": "https://quickthoughts.jgregorymcverry.com/2020/02/15/hey-writingcommunity-here-is-my-poetryport-poem",
"category": [
"writingcommunity",
"poetryport"
],
"syndication": [
"https://twitter.com/jgmac1106/status/1228771078333489152"
],
"content": {
"text": "Hey #writingcommunity here is my #poetryport poem for the word Stretch: https://jgregorymcverry.com/poetryisastretch gonna read it some and mess with the timings of the CSS animation.",
"html": "Hey <a href=\"https://quickthoughts.jgregorymcverry.com/tag/writingcommunity\" class=\"p-category\">#writingcommunity</a> here is my <a href=\"https://quickthoughts.jgregorymcverry.com/tag/poetryport\" class=\"p-category\">#poetryport</a> poem for the word Stretch: <a href=\"https://jgregorymcverry.com/poetryisastretch\">https://jgregorymcverry.com/poetryisastretch</a> gonna read it some and mess with the timings of the CSS animation."
},
"author": {
"type": "card",
"name": "Greg McVerry",
"url": "https://quickthoughts.jgregorymcverry.com/profile/jgmac1106",
"photo": "https://quickthoughts.jgregorymcverry.com/file/2d6c9cfed7ac8e849f492b5bc7e6a630/thumb.jpg"
},
"post-type": "note",
"_id": "8966419",
"_source": "1300"
}
{
"type": "entry",
"published": "2020-02-15T19:28:04+00:00",
"url": "https://twitter.com/jgmac1106/status/1228762920261124096",
"content": {
"text": "Poetry is a Stretch: A #clmooc #poetryport poem: jgregorymcverry.com/poetryisastret\u2026",
"html": "Poetry is a Stretch: A <a href=\"https://twitter.com/search?q=%23clmooc\">#clmooc</a> <a href=\"https://twitter.com/search?q=%23poetryport\">#poetryport</a> poem: <a href=\"https://jgregorymcverry.com/poetryisastretch\">jgregorymcverry.com/poetryisastret\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": "8965627",
"_source": "2773"
}
The rest of the goal setting pictures from IndieWebCamp Navrongo : OLX Ghana. It was so inspiring to learn with so many people out to make a difference in the world
{
"type": "entry",
"published": "2020-02-15T19:23:48+00:00",
"url": "https://twitter.com/jgmac1106/status/1228761847454748674",
"photo": [
"https://pbs.twimg.com/media/EQ1wYQGXkAAB6NY.jpg",
"https://pbs.twimg.com/media/EQ1wYg6XkAIVHj0.jpg",
"https://pbs.twimg.com/media/EQ1wYxDXsAAyr-d.jpg"
],
"content": {
"text": "The rest of the goal setting pictures from IndieWebCamp Navrongo : OLX Ghana. It was so inspiring to learn with so many people out to make a difference in the world"
},
"author": {
"type": "card",
"name": "https://jgregorymcverry.com",
"url": "https://twitter.com/jgmac1106",
"photo": "https://pbs.twimg.com/profile_images/565227710104883200/g4MDcTnx.jpeg"
},
"post-type": "photo",
"_id": "8965628",
"_source": "2773"
}
Pictures of People sharing their Goals from IndieWebCamp Navrongo : OLX Ghana and Art and Feminis,
{
"type": "entry",
"published": "2020-02-15T19:16:42+00:00",
"url": "https://twitter.com/jgmac1106/status/1228760061327134720",
"photo": [
"https://pbs.twimg.com/media/EQ1uv_lW4AACFcZ.jpg",
"https://pbs.twimg.com/media/EQ1uwSGXkAMJfLW.jpg",
"https://pbs.twimg.com/media/EQ1uwjKXkAMfwMI.jpg",
"https://pbs.twimg.com/media/EQ1uwzLWsAAKl-l.jpg"
],
"content": {
"text": "Pictures of People sharing their Goals from IndieWebCamp Navrongo : OLX Ghana and Art and Feminis,"
},
"author": {
"type": "card",
"name": "https://jgregorymcverry.com",
"url": "https://twitter.com/jgmac1106",
"photo": "https://pbs.twimg.com/profile_images/565227710104883200/g4MDcTnx.jpeg"
},
"post-type": "photo",
"_id": "8965629",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-15T19:23:42+0000",
"url": "https://quickthoughts.jgregorymcverry.com/2020/02/15/the-rest-of-the-goal-setting-pictures-from-indiewebcamp-navrongo",
"photo": [
"https://quickthoughts.jgregorymcverry.com/file/b933287b6ed2efcf1f30da1beeb6703d/thumb.png",
"https://quickthoughts.jgregorymcverry.com/file/e251b101104915bcda2ca0db600a8dbb/thumb.png",
"https://quickthoughts.jgregorymcverry.com/file/f8fc6b739575c27d31a70505783cb37c/thumb.png"
],
"syndication": [
"https://twitter.com/jgmac1106/status/1228761847454748674"
],
"content": {
"text": "Our event",
"html": "<a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/the-rest-of-the-goal-setting-pictures-from-indiewebcamp-navrongo\"></a>\n \n \n <a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/the-rest-of-the-goal-setting-pictures-from-indiewebcamp-navrongo\"></a>\n \n \n <a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/the-rest-of-the-goal-setting-pictures-from-indiewebcamp-navrongo\"></a>\n \n <p><a class=\"u-reply-to\" href=\"https://events.indieweb.org/2020/02/indiewebcamp-navrongo-olx-ghana-CmCiz3daOPWB\">Our event</a></p>"
},
"author": {
"type": "card",
"name": "Greg McVerry",
"url": "https://quickthoughts.jgregorymcverry.com/profile/jgmac1106",
"photo": "https://quickthoughts.jgregorymcverry.com/file/2d6c9cfed7ac8e849f492b5bc7e6a630/thumb.jpg"
},
"post-type": "photo",
"_id": "8965551",
"_source": "1300"
}
{
"type": "entry",
"published": "2020-02-15T19:16:35+0000",
"url": "https://quickthoughts.jgregorymcverry.com/2020/02/15/pictures-of-people-sharing-their-goals-from-indiewebcamp-navrongo-olx",
"photo": [
"https://quickthoughts.jgregorymcverry.com/file/91735e293b79555200f975d8d09de0cb/thumb.png",
"https://quickthoughts.jgregorymcverry.com/file/7a902b94f18f57948a38f1c1e8933f9b/thumb.png",
"https://quickthoughts.jgregorymcverry.com/file/3152b0409a4fa6758c43327bd20a49e9/thumb.png",
"https://quickthoughts.jgregorymcverry.com/file/d83c1f44140103944dd6eafb532f038a/thumb.png"
],
"syndication": [
"https://twitter.com/jgmac1106/status/1228760061327134720"
],
"content": {
"text": "Our Event",
"html": "<a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/pictures-of-people-sharing-their-goals-from-indiewebcamp-navrongo-olx\"></a>\n \n \n <a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/pictures-of-people-sharing-their-goals-from-indiewebcamp-navrongo-olx\"></a>\n \n \n <a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/pictures-of-people-sharing-their-goals-from-indiewebcamp-navrongo-olx\"></a>\n \n \n <a href=\"https://quickthoughts.jgregorymcverry.com/2020/02/15/pictures-of-people-sharing-their-goals-from-indiewebcamp-navrongo-olx\"></a>\n \n <p><a href=\"https://events.indieweb.org/2020/02/indiewebcamp-navrongo-olx-ghana-CmCiz3daOPWB\">Our Event</a></p>"
},
"author": {
"type": "card",
"name": "Greg McVerry",
"url": "https://quickthoughts.jgregorymcverry.com/profile/jgmac1106",
"photo": "https://quickthoughts.jgregorymcverry.com/file/2d6c9cfed7ac8e849f492b5bc7e6a630/thumb.jpg"
},
"post-type": "photo",
"_id": "8965552",
"_source": "1300"
}
Ahh, Midwestern values! Imposing the consequences of your way of life on others!
insideclimatenews.org/news/12022020/…
{
"type": "entry",
"published": "2020-02-15T18:40:56+00:00",
"url": "https://twitter.com/karabaic/status/1228751058882531329",
"photo": [
"https://pbs.twimg.com/media/EQ1mkrzVUAAFYvB.jpg"
],
"content": {
"text": "Ahh, Midwestern values! Imposing the consequences of your way of life on others!\n\ninsideclimatenews.org/news/12022020/\u2026",
"html": "Ahh, Midwestern values! Imposing the consequences of your way of life on others!\n\n<a href=\"https://insideclimatenews.org/news/12022020/air-pollution-deaths-fossil-fuel-emissions\">insideclimatenews.org/news/12022020/\u2026</a>"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/899122188921446400/NZHI0sB2.jpg"
},
"post-type": "photo",
"_id": "8964634",
"_source": "2773"
}
It's unfortunate that I wrote about sexism in tech five years, including the uncomfortable acknowledgment of my *own* implicit bias as a young white male, and…far too little has changed from then to now. 😕
jaredwhite.com/articles/sexis…
twitter.com/cherdotdev/sta…
I've got 0 patience for people questioning myself and other womens' job titles.
I taught myself to code 20 years ago.
Over those years I have taught myself:
HTML
CSS
...
{
"type": "entry",
"published": "2020-02-15T18:33:11+00:00",
"url": "https://twitter.com/jaredcwhite/status/1228749111232385025",
"quotation-of": "https://twitter.com/CHERdotdev/status/1228692067800449024",
"content": {
"text": "It's unfortunate that I wrote about sexism in tech five years, including the uncomfortable acknowledgment of my *own* implicit bias as a young white male, and\u2026far too little has changed from then to now. \ud83d\ude15\n\njaredwhite.com/articles/sexis\u2026\n\ntwitter.com/cherdotdev/sta\u2026",
"html": "It's unfortunate that I wrote about sexism in tech five years, including the uncomfortable acknowledgment of my *own* implicit bias as a young white male, and\u2026far too little has changed from then to now. \ud83d\ude15\n\n<a href=\"https://jaredwhite.com/articles/sexism-in-my-world-aka-technology\">jaredwhite.com/articles/sexis\u2026</a>\n\n<a href=\"https://twitter.com/cherdotdev/status/1228692067800449024\">twitter.com/cherdotdev/sta\u2026</a>"
},
"author": {
"type": "card",
"name": "The Jared White Show",
"url": "https://twitter.com/jaredcwhite",
"photo": "https://pbs.twimg.com/profile_images/1225469325328310272/cMYFkP3A.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/CHERdotdev/status/1228692067800449024": {
"type": "entry",
"published": "2020-02-15T14:46:31+00:00",
"url": "https://twitter.com/CHERdotdev/status/1228692067800449024",
"content": {
"text": "I've got 0 patience for people questioning myself and other womens' job titles.\n\nI taught myself to code 20 years ago. \n\nOver those years I have taught myself:\n\nHTML\nCSS\nJavascript\nActionscript\nRuby/Rails\nASP/.NET\nPHP\nGroovy\nVelocity \nPython\nJava\nGo\nC\nC#\nLua\n\nMost on the job."
},
"author": {
"type": "card",
"name": "Cher",
"url": "https://twitter.com/CHERdotdev",
"photo": "https://pbs.twimg.com/profile_images/1128297922603442181/gcC0Ivbi.jpg"
},
"post-type": "note"
}
},
"_id": "8964239",
"_source": "2773"
}
Trump vs Bloomberg 2020: who's the biggest, baddest, foul-mouthed jerk in the country? Stay tuned! 🥳
twitter.com/clarajeffery/s…
This WaPo investigation is great, but there’s so much more. A few weeks ago @timothypmurphy collected the most outrageous/sexist/racist/baffling comments made by Bloomb...
{
"type": "entry",
"published": "2020-02-15T18:21:58+00:00",
"url": "https://twitter.com/jaredcwhite/status/1228746285596807168",
"quotation-of": "https://twitter.com/ClaraJeffery/status/1228719744993247232",
"content": {
"text": "Trump vs Bloomberg 2020: who's the biggest, baddest, foul-mouthed jerk in the country? Stay tuned! \ud83e\udd73\ntwitter.com/clarajeffery/s\u2026",
"html": "Trump vs Bloomberg 2020: who's the biggest, baddest, foul-mouthed jerk in the country? Stay tuned! \ud83e\udd73\n<a href=\"https://twitter.com/clarajeffery/status/1228719744993247232\">twitter.com/clarajeffery/s\u2026</a>"
},
"author": {
"type": "card",
"name": "The Jared White Show",
"url": "https://twitter.com/jaredcwhite",
"photo": "https://pbs.twimg.com/profile_images/1225469325328310272/cMYFkP3A.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/ClaraJeffery/status/1228719744993247232": {
"type": "entry",
"published": "2020-02-15T16:36:30+00:00",
"url": "https://twitter.com/ClaraJeffery/status/1228719744993247232",
"in-reply-to": [
"https://twitter.com/ClaraJeffery/status/1228716766920003584"
],
"content": {
"text": "This WaPo investigation is great, but there\u2019s so much more. A few weeks ago @timothypmurphy collected the most outrageous/sexist/racist/baffling comments made by Bloomberg. It is quite a read motherjones.com/politics/2020/\u2026",
"html": "This WaPo investigation is great, but there\u2019s so much more. A few weeks ago <a href=\"https://twitter.com/timothypmurphy\">@timothypmurphy</a> collected the most outrageous/sexist/racist/baffling comments made by Bloomberg. It is quite a read <a href=\"https://www.motherjones.com/politics/2020/01/a-list-of-things-bloomberg-actually-said-about-fat-people-rape-george-w-bush-and-j-lo/\">motherjones.com/politics/2020/\u2026</a>"
},
"author": {
"type": "card",
"name": "Clara Jeffery",
"url": "https://twitter.com/ClaraJeffery",
"photo": "https://pbs.twimg.com/profile_images/793482716947677188/cgeFNqv_.jpg"
},
"post-type": "reply"
}
},
"_id": "8963970",
"_source": "2773"
}
A new twist on stop & frisk.
Mike Bloomberg has been battling women’s allegations of sexist, profane comments for years - Washington Post washingtonpost.com/graphics/2020/…
{
"type": "entry",
"published": "2020-02-15T18:11:15+00:00",
"url": "https://twitter.com/karabaic/status/1228743591343771649",
"content": {
"text": "A new twist on stop & frisk.\n\nMike Bloomberg has been battling women\u2019s allegations of sexist, profane comments for years - Washington Post washingtonpost.com/graphics/2020/\u2026",
"html": "A new twist on stop & frisk.\n\nMike Bloomberg has been battling women\u2019s allegations of sexist, profane comments for years - Washington Post <a href=\"https://www.washingtonpost.com/graphics/2020/politics/michael-bloomberg-women/\">washingtonpost.com/graphics/2020/\u2026</a>"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/899122188921446400/NZHI0sB2.jpg"
},
"post-type": "note",
"_id": "8963971",
"_source": "2773"
}
Reflection on a Great IndieWeb Camp Online: jgregorymcverry.com/indiewebcampon…
{
"type": "entry",
"published": "2020-02-15T16:48:45+00:00",
"url": "https://twitter.com/jgmac1106/status/1228722826942787585",
"photo": [
"https://pbs.twimg.com/media/EQ1M5gaWoAAc4yC.jpg"
],
"content": {
"text": "Reflection on a Great IndieWeb Camp Online: jgregorymcverry.com/indiewebcampon\u2026",
"html": "Reflection on a Great IndieWeb Camp Online: <a href=\"https://jgregorymcverry.com/indiewebcamponline2020reflection\">jgregorymcverry.com/indiewebcampon\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": "photo",
"_id": "8961761",
"_source": "2773"
}
This may sound like the craziest thing you’ve ever heard, but I watched a TV show called Portlandia and then I moved to Portland. No joke.
➡️ Explain yourself, Jared! 👇 jaredwhite.com/articles/what-…
{
"type": "entry",
"published": "2020-02-15T16:21:17+00:00",
"url": "https://twitter.com/jaredcwhite/status/1228715914985529344",
"content": {
"text": "This may sound like the craziest thing you\u2019ve ever heard, but I watched a TV show called Portlandia and then I moved to Portland. No joke.\n\n\u27a1\ufe0f Explain yourself, Jared! \ud83d\udc47 jaredwhite.com/articles/what-\u2026",
"html": "This may sound like the craziest thing you\u2019ve ever heard, but I watched a TV show called Portlandia and then I moved to Portland. No joke.\n\n\u27a1\ufe0f Explain yourself, Jared! \ud83d\udc47 <a href=\"https://jaredwhite.com/articles/what-its-like-to-live-in-portlandia\">jaredwhite.com/articles/what-\u2026</a>"
},
"author": {
"type": "card",
"name": "The Jared White Show",
"url": "https://twitter.com/jaredcwhite",
"photo": "https://pbs.twimg.com/profile_images/1225469325328310272/cMYFkP3A.jpg"
},
"post-type": "note",
"_id": "8961405",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-02-15T15:20:43+00:00",
"url": "https://twitter.com/jgmac1106/status/1228700674751418369",
"content": {
"text": "I used the white rabbit and Alice in my last few poems as well: jgregorymcverry.com/chickeneggordu\u2026 #writingcommunity (quickthoughts.jgregorymcverry.com/s/SRW0l)",
"html": "I used the white rabbit and Alice in my last few poems as well: <a href=\"https://jgregorymcverry.com/chickeneggorduckofdigital\">jgregorymcverry.com/chickeneggordu\u2026</a> <a href=\"https://twitter.com/search?q=%23writingcommunity\">#writingcommunity</a> (<a href=\"https://quickthoughts.jgregorymcverry.com/s/SRW0l\">quickthoughts.jgregorymcverry.com/s/SRW0l</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": "8959921",
"_source": "2773"
}