Cookies? BAKED.
Chili? COOKED.
Rice? DONE.
Tonight? nice
{
"type": "entry",
"published": "2019-11-18T02:27:06+00:00",
"url": "https://twitter.com/jackyalcine/status/1196253467884412930",
"content": {
"text": "Cookies? BAKED.\nChili? COOKED.\nRice? DONE.\n\nTonight? nice"
},
"author": {
"type": "card",
"name": "how does respectability taste? is it sweet?",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1195631577515974657/Zb5WD50U.jpg"
},
"post-type": "note",
"_id": "6237930",
"_source": "2773"
}
Thanks everyone who came out to see me at #GeekGirlCon! This was my first time vending at a convention and it was quite the experience. I'll have more to write about it on my blog but in the meantime, feel free to follow me on the various social media.
{
"type": "entry",
"published": "2019-11-18T02:17:15+00:00",
"url": "https://twitter.com/fluffy/status/1196250986311901184",
"content": {
"text": "Thanks everyone who came out to see me at #GeekGirlCon! This was my first time vending at a convention and it was quite the experience. I'll have more to write about it on my blog but in the meantime, feel free to follow me on the various social media.",
"html": "Thanks everyone who came out to see me at <a href=\"https://twitter.com/search?q=%23GeekGirlCon\">#GeekGirlCon</a>! This was my first time vending at a convention and it was quite the experience. I'll have more to write about it on my blog but in the meantime, feel free to follow me on the various social media."
},
"author": {
"type": "card",
"name": "fluffy \ud83d\udc7e GeekGirlCon '19 #101",
"url": "https://twitter.com/fluffy",
"photo": "https://pbs.twimg.com/profile_images/1113258016151707648/vzpeXCFt.png"
},
"post-type": "note",
"_id": "6237818",
"_source": "2773"
}
{
"type": "entry",
"published": "2019-11-17T20:51:37-05:00",
"url": "https://david.shanske.com/2019/11/17/converting-google-location-history-into-geojson-for-compass/",
"name": "Converting Google Location History into GeoJSON for Compass",
"content": {
"text": "After a lot of procrastinating, I finally decided to import all of my Google Location History into Compass. This meant I had to convert Google\u2019s export format into Compass\u2019s GeoJSON.\nA few notes\ntimeStampMs is the timestamp in milliseconds.\u00a0 Most functions use the timestamp as seconds, so this needed to be converted into an ISO8601 date format.\nlatitudeE7 and longitudeE7 are the coordinates, and must be divided by 1e7 in order to get the more conventional format. Also, there was an issue where some of the numbers were incorrectly exported, so there is a sanity check on that below\naccuracy is, as suggested, the accuracy of the location\nFinally, there is activity. I considered doing more with this, but I\u2019m just storing it. Will explain why below the example of my simple PHP code to export.\njson = json_decode( $file, true );\n$json = $json['locations'];\nforeach( $json as $item ) {\n\t$date = date_create_from_format( 'U', round( $item['timestampMs'] / 1000 ) );\n\tif ( $item['latitudeE7'] > 900000000 ) {\n\t\t$item['latitudeE7'] = $item['latitudeE7'] - 4294967296;\n\t}\n\tif ( $item['longitudeE7'] > 900000000 ) {\n\t\t$item['longitudeE7'] = $item['longitudeE7'] - 4294967296;\n\t}\n\t$output = array(\n\t\t'locations' => array(\n\t\t\tarray(\n\t\t\t\t'type' => 'Feature',\n\t\t\t\t'geometry' => array(\n\t\t\t\t\t'type' => 'Point',\n\t\t\t\t\t'coordinates' => array(\n\t\t\t\t\t\t( $item['longitudeE7'] / 1e7 ),\n\t\t\t\t\t\t( $item['latitudeE7'] / 1e7 )\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\t'properties' => array(\n\t\t\t\t\t'timestamp' => $date->format( DATE_W3C ),\n\t\t\t\t\t'horizontal_accuracy' => $item['accuracy']\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t);\n\t\t\t\t\n\tif ( array_key_exists( 'activity', $item ) ) {\n\t\t$output['locations'][0]['properties']['activity'] = $item['activity'];\n\t}\n\nFor activity, it only appears on some entries, and is for the most part, accurate enough..\n \"activity\" : [ {\n \"type\" : \"IN_VEHICLE\",\n \"confidence\" : 100\n }\nIt notes the type of activity, and the confidence level.\u00a0\u00a0 However, in this example\u2026\n\n \"activity\":[ \n {\"type\":\"UNKNOWN\",\"confidence\":50}, \n {\"type\":\"ON_FOOT\",\"confidence\":36}, \n {\"type\":\"ON_BICYCLE\",\"confidence\":11}, \n {\"type\":\"IN_VEHICLE\",\"confidence\":2}\n ]\nIn this example, Google thinks I am either doing something unknown, walking, riding, or on a bicycle. I promise, never a bicycle. So, for now, I consider the information to be less than useful, but am storing it for future use only.\nLooking forward to using the data in interesting ways.",
"html": "After a lot of procrastinating, I finally decided to import all of my Google Location History into Compass. This meant I had to convert Google\u2019s export format into Compass\u2019s GeoJSON.\n<p>A few notes</p>\n<ul><li>timeStampMs is the timestamp in milliseconds.\u00a0 Most functions use the timestamp as seconds, so this needed to be converted into an ISO8601 date format.</li>\n<li>latitudeE7 and longitudeE7 are the coordinates, and must be divided by 1e7 in order to get the more conventional format. Also, there was an issue where some of the numbers were incorrectly exported, so there is a sanity check on that below</li>\n<li>accuracy is, as suggested, the accuracy of the location</li>\n<li>Finally, there is activity. I considered doing more with this, but I\u2019m just storing it. Will explain why below the example of my simple PHP code to export.</li>\n</ul><pre>json = json_decode( $file, true );\n$json = $json['locations'];\nforeach( $json as $item ) {\n\t$date = date_create_from_format( 'U', round( $item['timestampMs'] / 1000 ) );\n\tif ( $item['latitudeE7'] > 900000000 ) {\n\t\t$item['latitudeE7'] = $item['latitudeE7'] - 4294967296;\n\t}\n\tif ( $item['longitudeE7'] > 900000000 ) {\n\t\t$item['longitudeE7'] = $item['longitudeE7'] - 4294967296;\n\t}\n\t$output = array(\n\t\t'locations' => array(\n\t\t\tarray(\n\t\t\t\t'type' => 'Feature',\n\t\t\t\t'geometry' => array(\n\t\t\t\t\t'type' => 'Point',\n\t\t\t\t\t'coordinates' => array(\n\t\t\t\t\t\t( $item['longitudeE7'] / 1e7 ),\n\t\t\t\t\t\t( $item['latitudeE7'] / 1e7 )\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\t'properties' => array(\n\t\t\t\t\t'timestamp' => $date->format( DATE_W3C ),\n\t\t\t\t\t'horizontal_accuracy' => $item['accuracy']\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t);\n\t\t\t\t\n\tif ( array_key_exists( 'activity', $item ) ) {\n\t\t$output['locations'][0]['properties']['activity'] = $item['activity'];\n\t}\n</pre>\n<p>For activity, it only appears on some entries, and is for the most part, accurate enough..</p>\n<pre> \"activity\" : [ {\n \"type\" : \"IN_VEHICLE\",\n \"confidence\" : 100\n }</pre>\n<p>It notes the type of activity, and the confidence level.\u00a0\u00a0 However, in this example\u2026</p>\n<pre>\n \"activity\":[ \n {\"type\":\"UNKNOWN\",\"confidence\":50}, \n {\"type\":\"ON_FOOT\",\"confidence\":36}, \n {\"type\":\"ON_BICYCLE\",\"confidence\":11}, \n {\"type\":\"IN_VEHICLE\",\"confidence\":2}\n ]</pre>\n<p>In this example, Google thinks I am either doing something unknown, walking, riding, or on a bicycle. I promise, never a bicycle. So, for now, I consider the information to be less than useful, but am storing it for future use only.</p>\n<p>Looking forward to using the data in interesting ways.</p>"
},
"author": {
"type": "card",
"name": "David Shanske",
"url": "https://david.shanske.com/",
"photo": "https://david.shanske.com/wp-content/uploads/avatar-privacy/cache/gravatar/2/c/2cb1f8afd9c8d3b646b4071c5ed887c970d81d625eeed87e447706940e2c403d-49.png"
},
"post-type": "article",
"_id": "6237492",
"_source": "1905"
}
āā¦sooo, how's moving to Estonia working out for you so far?ā
š¶
{
"type": "entry",
"published": "2019-11-18T01:49:50+00:00",
"url": "https://twitter.com/slsoftworks/status/1196244089869520896",
"photo": [
"https://pbs.twimg.com/media/EJnpqJFUUAAXVfK.jpg"
],
"content": {
"text": "\u201c\u2026sooo, how's moving to Estonia working out for you so far?\u201d\n\n\ud83d\ude36"
},
"author": {
"type": "card",
"name": "flaki",
"url": "https://twitter.com/slsoftworks",
"photo": "https://pbs.twimg.com/profile_images/749678683514896385/7gxIRnoC.jpg"
},
"post-type": "photo",
"_id": "6237446",
"_source": "2773"
}
Thereās only 20 minutes left of the #GeekGirlCon expo hall, so Iām offering 20% off all purchases over $10. Come see me at table 101 (at the corner by the bathrooms)!
{
"type": "entry",
"published": "2019-11-18T00:42:53+00:00",
"url": "https://twitter.com/fluffy/status/1196227241589362688",
"content": {
"text": "There\u2019s only 20 minutes left of the #GeekGirlCon expo hall, so I\u2019m offering 20% off all purchases over $10. Come see me at table 101 (at the corner by the bathrooms)!",
"html": "There\u2019s only 20 minutes left of the <a href=\"https://twitter.com/search?q=%23GeekGirlCon\">#GeekGirlCon</a> expo hall, so I\u2019m offering 20% off all purchases over $10. Come see me at table 101 (at the corner by the bathrooms)!"
},
"author": {
"type": "card",
"name": "fluffy \ud83d\udc7e GeekGirlCon '19 #101",
"url": "https://twitter.com/fluffy",
"photo": "https://pbs.twimg.com/profile_images/1113258016151707648/vzpeXCFt.png"
},
"post-type": "note",
"_id": "6236598",
"_source": "2773"
}
Passing along a friend's question: anybody know how to purchase a gift subscription to @disneyplus?
{
"type": "entry",
"published": "2019-11-18T00:27:54+00:00",
"url": "https://twitter.com/gRegorLove/status/1196223469207183360",
"content": {
"text": "Passing along a friend's question: anybody know how to purchase a gift subscription to @disneyplus?",
"html": "Passing along a friend's question: anybody know how to purchase a gift subscription to <a href=\"https://twitter.com/disneyplus\">@disneyplus</a>?"
},
"author": {
"type": "card",
"name": "gRegor Morrill",
"url": "https://twitter.com/gRegorLove",
"photo": "https://pbs.twimg.com/profile_images/714490697764716545/je7VCyLC.jpg"
},
"post-type": "note",
"_id": "6236368",
"_source": "2773"
}
display names as a act of resistance
{
"type": "entry",
"published": "2019-11-17T22:55:25+00:00",
"url": "https://twitter.com/jackyalcine/status/1196200196914307072",
"content": {
"text": "display names as a act of resistance"
},
"author": {
"type": "card",
"name": "how does respectability taste? is it sweet?",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1195631577515974657/Zb5WD50U.jpg"
},
"post-type": "note",
"_id": "6234973",
"_source": "2773"
}
This is a war of attrition for sure ...after a quick campaign to capture as much territory as possible before the defenses are effective. Sounds like the best strategy to me.
Wait a minute! Are you telling me that instead of turning the case over for quick acquittal in the Senate, House Dems might instead keep building the case until itās ir...
{
"type": "entry",
"published": "2019-11-17T22:52:09+00:00",
"url": "https://twitter.com/Johannes_Ernst/status/1196199371953434626",
"quotation-of": "https://twitter.com/blakesmustache/status/1196128936759111684",
"content": {
"text": "This is a war of attrition for sure ...after a quick campaign to capture as much territory as possible before the defenses are effective. Sounds like the best strategy to me."
},
"author": {
"type": "card",
"name": "Johannes Ernst",
"url": "https://twitter.com/Johannes_Ernst",
"photo": "https://pbs.twimg.com/profile_images/462335209015238656/ie0cRjdx.jpeg"
},
"post-type": "note",
"refs": {
"https://twitter.com/blakesmustache/status/1196128936759111684": {
"type": "entry",
"published": "2019-11-17T18:12:16+00:00",
"url": "https://twitter.com/blakesmustache/status/1196128936759111684",
"content": {
"text": "Wait a minute! Are you telling me that instead of turning the case over for quick acquittal in the Senate, House Dems might instead keep building the case until it\u2019s ironclad, maybe even waiting until they have his tax returns and bank records?!?!? Inconceivable!!!\ntwitter.com/andrewdesideri\u2026",
"html": "Wait a minute! Are you telling me that instead of turning the case over for quick acquittal in the Senate, House Dems might instead keep building the case until it\u2019s ironclad, maybe even waiting until they have his tax returns and bank records?!?!? Inconceivable!!!\n<a href=\"https://twitter.com/andrewdesiderio/status/1196126447942934534\">twitter.com/andrewdesideri\u2026</a>"
},
"author": {
"type": "card",
"name": "Uncle Blazer",
"url": "https://twitter.com/blakesmustache",
"photo": "https://pbs.twimg.com/profile_images/884048235429548032/PWDO6Xuk.jpg"
},
"post-type": "note"
}
},
"_id": "6234974",
"_source": "2773"
}
Artists who want to put your social media icons on your business card: make sure you can actually be found based on the information on it! Iāve gotten so many cards from folks today where they just have a Twitter logo but I canāt actually find them on Twitter. Missed opportunity!
{
"type": "entry",
"published": "2019-11-17T22:08:19+00:00",
"url": "https://twitter.com/fluffy/status/1196188340124405760",
"content": {
"text": "Artists who want to put your social media icons on your business card: make sure you can actually be found based on the information on it! I\u2019ve gotten so many cards from folks today where they just have a Twitter logo but I can\u2019t actually find them on Twitter. Missed opportunity!"
},
"author": {
"type": "card",
"name": "fluffy \ud83d\udc7e GeekGirlCon '19 #101",
"url": "https://twitter.com/fluffy",
"photo": "https://pbs.twimg.com/profile_images/1113258016151707648/vzpeXCFt.png"
},
"post-type": "note",
"_id": "6234330",
"_source": "2773"
}
{
"type": "entry",
"author": {
"name": "Jared White",
"url": "https://jaredwhite.com/",
"photo": null
},
"url": "https://jaredwhite.com/pictures/20191117/1",
"published": "2019-11-17T10:57:05-08:00",
"content": {
"html": "<img alt=\"\" src=\"https://res.cloudinary.com/mariposta/image/upload/w_1200,c_limit,q_65/169B9B21-6E68-4265-B2FC-9109618A2C85_o2lquw.jpg\" /><p>Carpet of Gold<br /><em>Wilshire Park</em> <a href=\"https://jaredwhite.com/tag/portland\">#portland</a> <a href=\"https://jaredwhite.com/tag/oregonexplored\">#oregonexplored</a></p>",
"text": "Carpet of Gold\nWilshire Park #portland #oregonexplored"
},
"name": "Picture for Sunday, November 17, 2019 at 10:57 AM",
"post-type": "article",
"_id": "6233953",
"_source": "2783"
}
Black churches almost encourage this kind of trash. And they end up being the āvoiceā of Black people. Which is always going to be invalid. https://t.co/7sIC7uey4f (v2.jacky.wtf/post/ec40552c-ā¦)
Can we please stop making a mockery of the Black church by allowing it to be the go-to source for politicians who want a photo op w/ Black people?
twitter.com/nytimes/sta...
{
"type": "entry",
"published": "2019-11-17T20:38:22+00:00",
"url": "https://twitter.com/jackyalcine/status/1196165706141843456",
"quotation-of": "https://twitter.com/BreeNewsome/status/1196120655374274560",
"content": {
"text": "Black churches almost encourage this kind of trash. And they end up being the \u201cvoice\u201d of Black people. Which is always going to be invalid. https://t.co/7sIC7uey4f (v2.jacky.wtf/post/ec40552c-\u2026)",
"html": "Black churches almost encourage this kind of trash. And they end up being the \u201cvoice\u201d of Black people. Which is always going to be invalid. https://t.co/7sIC7uey4f (<a href=\"https://v2.jacky.wtf/post/ec40552c-46ae-4b9f-a8d2-9ee4e7e2dc30\">v2.jacky.wtf/post/ec40552c-\u2026</a>)"
},
"author": {
"type": "card",
"name": "jacky needs y'all to stop riding that status quo",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1195631577515974657/Zb5WD50U.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/BreeNewsome/status/1196120655374274560": {
"type": "entry",
"published": "2019-11-17T17:39:21+00:00",
"url": "https://twitter.com/BreeNewsome/status/1196120655374274560",
"content": {
"text": "Can we please stop making a mockery of the Black church by allowing it to be the go-to source for politicians who want a photo op w/ Black people?\ntwitter.com/nytimes/status\u2026",
"html": "Can we please stop making a mockery of the Black church by allowing it to be the go-to source for politicians who want a photo op w/ Black people?\n<a href=\"https://twitter.com/nytimes/status/1196104145633267714\">twitter.com/nytimes/status\u2026</a>"
},
"author": {
"type": "card",
"name": "Bree Newsome Bass",
"url": "https://twitter.com/BreeNewsome",
"photo": "https://pbs.twimg.com/profile_images/958852715735650304/T1ca80ee.jpg"
},
"post-type": "note"
}
},
"_id": "6232845",
"_source": "2773"
}
You know. This kinda explains Black tech right now. https://t.co/zPEDgmZLq0. Or the delusional state of the world itās holding. (v2.jacky.wtf/post/10ea2761-ā¦)
Elizabeth Warren (@ewarren) tells The Root how capitalism can exist without racism trib.al/mCRs1EK
{
"type": "entry",
"published": "2019-11-17T20:29:08+00:00",
"url": "https://twitter.com/jackyalcine/status/1196163381054623745",
"quotation-of": "https://twitter.com/TheRoot/status/1195039808567033857",
"content": {
"text": "You know. This kinda explains Black tech right now. https://t.co/zPEDgmZLq0. Or the delusional state of the world it\u2019s holding. (v2.jacky.wtf/post/10ea2761-\u2026)",
"html": "You know. This kinda explains Black tech right now. https://t.co/zPEDgmZLq0. Or the delusional state of the world it\u2019s holding. (<a href=\"https://v2.jacky.wtf/post/10ea2761-6a4b-4973-b74b-0f7b03fad967\">v2.jacky.wtf/post/10ea2761-\u2026</a>)"
},
"author": {
"type": "card",
"name": "jacky needs y'all to stop riding that status quo",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1195631577515974657/Zb5WD50U.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/TheRoot/status/1195039808567033857": {
"type": "entry",
"published": "2019-11-14T18:04:27+00:00",
"url": "https://twitter.com/TheRoot/status/1195039808567033857",
"photo": [
"https://pbs.twimg.com/media/EJWiXtaWwAIBmEY.jpg"
],
"content": {
"text": "Elizabeth Warren (@ewarren) tells The Root how capitalism can exist without racism trib.al/mCRs1EK",
"html": "Elizabeth Warren (<a href=\"https://twitter.com/ewarren\">@ewarren</a>) tells The Root how capitalism can exist without racism <a href=\"https://trib.al/mCRs1EK\">trib.al/mCRs1EK</a>"
},
"author": {
"type": "card",
"name": "The Root",
"url": "https://twitter.com/TheRoot",
"photo": "https://pbs.twimg.com/profile_images/1053238931922317314/ZEYVL5EL.jpg"
},
"post-type": "photo"
}
},
"_id": "6232643",
"_source": "2773"
}
I saw my face on some marketing material for Lyft with regards to diversity and theyāve ignored my requests to remove my face so best believe Iām talking from the chest if someone asks me. https://t.co/iqKRtMR4f0 (v2.jacky.wtf/post/f4ac7dbe-ā¦)
The ā& have them stick around long enough to make it into an actual company photoā part is key. Weāre not props. If you donāt want to hear our voices donāt brin...
{
"type": "entry",
"published": "2019-11-17T20:17:40+00:00",
"url": "https://twitter.com/jackyalcine/status/1196160497831297025",
"quotation-of": "https://twitter.com/timnitGebru/status/1196156005433786369",
"content": {
"text": "I saw my face on some marketing material for Lyft with regards to diversity and they\u2019ve ignored my requests to remove my face so best believe I\u2019m talking from the chest if someone asks me. https://t.co/iqKRtMR4f0 (v2.jacky.wtf/post/f4ac7dbe-\u2026)",
"html": "I saw my face on some marketing material for Lyft with regards to diversity and they\u2019ve ignored my requests to remove my face so best believe I\u2019m talking from the chest if someone asks me. https://t.co/iqKRtMR4f0 (<a href=\"https://v2.jacky.wtf/post/f4ac7dbe-872d-4d37-9f6c-fb316f9655ea\">v2.jacky.wtf/post/f4ac7dbe-\u2026</a>)"
},
"author": {
"type": "card",
"name": "jacky needs y'all to stop riding that status quo",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1195631577515974657/Zb5WD50U.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/timnitGebru/status/1196156005433786369": {
"type": "entry",
"published": "2019-11-17T19:59:49+00:00",
"url": "https://twitter.com/timnitGebru/status/1196156005433786369",
"content": {
"text": "The \u201c& have them stick around long enough to make it into an actual company photo\u201d part is key. We\u2019re not props. If you don\u2019t want to hear our voices don\u2019t bring us in. I\u2019m certainly not going to be quiet. I\u2019m not going to smile, nod and put my head down.\ntwitter.com/rajiinio/statu\u2026",
"html": "The \u201c& have them stick around long enough to make it into an actual company photo\u201d part is key. We\u2019re not props. If you don\u2019t want to hear our voices don\u2019t bring us in. I\u2019m certainly not going to be quiet. I\u2019m not going to smile, nod and put my head down.\n<a href=\"https://twitter.com/rajiinio/status/1196102080848637953\">twitter.com/rajiinio/statu\u2026</a>"
},
"author": {
"type": "card",
"name": "Timnit Gebru",
"url": "https://twitter.com/timnitGebru",
"photo": "https://pbs.twimg.com/profile_images/1542707565/image.jpg"
},
"post-type": "note"
}
},
"_id": "6232447",
"_source": "2773"
}
{
"type": "entry",
"published": "2019-11-17T20:13:33+00:00",
"url": "https://twitter.com/jaredcwhite/status/1196159461469016064",
"photo": [
"https://pbs.twimg.com/media/EJmcpuCU4AAp2K-.jpg"
],
"content": {
"text": "Carpet of Gold"
},
"author": {
"type": "card",
"name": "Jared is a Vlogger",
"url": "https://twitter.com/jaredcwhite",
"photo": "https://pbs.twimg.com/profile_images/1009808311628132353/C9b3b8h6.jpg"
},
"post-type": "photo",
"_id": "6232382",
"_source": "2773"
}
Is the plural form of Wonder Woman, āWonders Women?ā
Because thereās been several troupes of Wonders Women at #geekgirlcon.
{
"type": "entry",
"published": "2019-11-17T19:16:08+00:00",
"url": "https://twitter.com/fluffy/status/1196145012498583553",
"content": {
"text": "Is the plural form of Wonder Woman, \u201cWonders Women?\u201d\n\nBecause there\u2019s been several troupes of Wonders Women at #geekgirlcon.",
"html": "Is the plural form of Wonder Woman, \u201cWonders Women?\u201d\n\nBecause there\u2019s been several troupes of Wonders Women at <a href=\"https://twitter.com/search?q=%23geekgirlcon\">#geekgirlcon</a>."
},
"author": {
"type": "card",
"name": "fluffy \ud83d\udc7e GeekGirlCon '19 #101",
"url": "https://twitter.com/fluffy",
"photo": "https://pbs.twimg.com/profile_images/1113258016151707648/vzpeXCFt.png"
},
"post-type": "note",
"_id": "6231466",
"_source": "2773"
}
Appreciated this variation when singing āBe Thou My Visionā this morning @MG_SanDiego
āThou my great Mother, I Thy true sonā
{
"type": "entry",
"published": "2019-11-17T18:37:05+00:00",
"url": "https://twitter.com/gRegorLove/status/1196135185290387457",
"content": {
"text": "Appreciated this variation when singing \u201cBe Thou My Vision\u201d this morning @MG_SanDiego\n\n\u201cThou my great Mother, I Thy true son\u201d",
"html": "Appreciated this variation when singing \u201cBe Thou My Vision\u201d this morning <a href=\"https://twitter.com/MG_SanDiego\">@MG_SanDiego</a>\n\n\u201cThou my great Mother, I Thy true son\u201d"
},
"author": {
"type": "card",
"name": "gRegor Morrill",
"url": "https://twitter.com/gRegorLove",
"photo": "https://pbs.twimg.com/profile_images/714490697764716545/je7VCyLC.jpg"
},
"post-type": "note",
"_id": "6230782",
"_source": "2773"
}
Last day taking malaria meds.
{
"type": "entry",
"published": "2019-11-17T18:14:07+00:00",
"url": "https://twitter.com/scott_gruber/status/1196129403668848640",
"content": {
"text": "Last day taking malaria meds."
},
"author": {
"type": "card",
"name": "Scott Gruber",
"url": "https://twitter.com/scott_gruber",
"photo": "https://pbs.twimg.com/profile_images/1188622306135773185/08845F9i.jpg"
},
"post-type": "note",
"_id": "6230332",
"_source": "2773"
}
This second set!! Woke up and made breakfast listening to #TDIGH. Streaming while raking and time to get torrent.Ā
{
"type": "entry",
"published": "2019-11-17T17:42:22+0000",
"url": "https://quickthoughts.jgregorymcverry.com/2019/11/17/witchita-kansas-1972-11-17",
"category": [
"TDIGH"
],
"content": {
"text": "This second set!! Woke up and made breakfast listening to #TDIGH. Streaming while raking and time to get torrent.\u00a0",
"html": "<p>This second set!! Woke up and made breakfast listening to <a href=\"https://quickthoughts.jgregorymcverry.com/tag/TDIGH\" class=\"p-category\">#TDIGH</a>. Streaming while raking and time to get torrent.\u00a0</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": "note",
"_id": "6229900",
"_source": "1300"
}
injured dog at rest
Where pleasure of work and play
Exceed any pain
#smallpoems
#sundayhaiku
#clmooc (quickthoughts.jgregorymcverry.com/s/1JlyBt)
{
"type": "entry",
"published": "2019-11-17T16:36:00+00:00",
"url": "https://twitter.com/jgmac1106/status/1196104711964901376",
"content": {
"text": "injured dog at rest\nWhere pleasure of work and play\nExceed any pain\n#smallpoems\n#sundayhaiku\n#clmooc (quickthoughts.jgregorymcverry.com/s/1JlyBt)",
"html": "injured dog at rest\nWhere pleasure of work and play\nExceed any pain\n<a href=\"https://twitter.com/search?q=%23smallpoems\">#smallpoems</a>\n<a href=\"https://twitter.com/search?q=%23sundayhaiku\">#sundayhaiku</a>\n<a href=\"https://twitter.com/search?q=%23clmooc\">#clmooc</a> (<a href=\"https://quickthoughts.jgregorymcverry.com/s/1JlyBt\">quickthoughts.jgregorymcverry.com/s/1JlyBt</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": "6228766",
"_source": "2773"
}
injured dog at rest
Where pleasure of work and play
Exceed any pain
#smallpoems
#sundayhaiku
#clmooc
{
"type": "entry",
"published": "2019-11-17T16:35:57+0000",
"url": "https://quickthoughts.jgregorymcverry.com/2019/11/17/injured-dog-at-restwhere-pleasure-of",
"category": [
"smallpoems",
"sundayhaiku",
"clmooc"
],
"syndication": [
"https://twitter.com/jgmac1106/status/1196104711964901376"
],
"content": {
"text": "injured dog at rest\n\nWhere pleasure of work and play\n\nExceed any pain\n#smallpoems\n#sundayhaiku\n#clmooc",
"html": "injured dog at rest<br />\nWhere pleasure of work and play<br />\nExceed any pain<br /><a href=\"https://quickthoughts.jgregorymcverry.com/tag/smallpoems\" class=\"p-category\">#smallpoems</a><br /><a href=\"https://quickthoughts.jgregorymcverry.com/tag/sundayhaiku\" class=\"p-category\">#sundayhaiku</a><br /><a href=\"https://quickthoughts.jgregorymcverry.com/tag/clmooc\" class=\"p-category\">#clmooc</a>"
},
"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": "6228678",
"_source": "1300"
}