LOL son
when people come see me eat at home, they be like "that's a mountain" and I'm like "I'm a GROWN NEG OKAY EPI DASSIT"
As far as me getting chubby ima blame the culture. Haitians have a problem with portion control. My grandfather will stack my plate and watch me eat and encourage me to e...
{
"type": "entry",
"published": "2020-01-09T00:07:07+00:00",
"url": "https://twitter.com/jackyalcine/status/1215062409884393472",
"quotation-of": "https://twitter.com/BavBoyKaj/status/1215052061202665474",
"content": {
"text": "LOL son\nwhen people come see me eat at home, they be like \"that's a mountain\" and I'm like \"I'm a GROWN NEG OKAY EPI DASSIT\""
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/BavBoyKaj/status/1215052061202665474": {
"type": "entry",
"published": "2020-01-08T23:26:00+00:00",
"url": "https://twitter.com/BavBoyKaj/status/1215052061202665474",
"content": {
"text": "As far as me getting chubby ima blame the culture. Haitians have a problem with portion control. My grandfather will stack my plate and watch me eat and encourage me to eat again. Cant blame him. Neg was born in 1941. all he used to talk about was how many people he saw starve"
},
"author": {
"type": "card",
"name": "NEG KI PA CHEAT\ud83c\udded\ud83c\uddf9",
"url": "https://twitter.com/BavBoyKaj",
"photo": "https://pbs.twimg.com/profile_images/1195725157349937152/T4J2LCSK.jpg"
},
"post-type": "note"
}
},
"_id": "7775187",
"_source": "2773"
}
lol this guy dies like four times son
Tony Stark is dead! Who's the next Iron Man? 🤔 Dive into the post-death legacy of Tony Stark and Iron Man with #EarthsMightiestShow ahead of the release of "Iron Man 2...
{
"type": "entry",
"published": "2020-01-08T23:52:44+00:00",
"url": "https://twitter.com/jackyalcine/status/1215058790187446278",
"quotation-of": "https://twitter.com/Marvel/status/1215053066745020416",
"content": {
"text": "lol this guy dies like four times son"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/Marvel/status/1215053066745020416": {
"type": "entry",
"published": "2020-01-08T23:30:00+00:00",
"url": "https://twitter.com/Marvel/status/1215053066745020416",
"video": [
"https://video.twimg.com/amplify_video/1215041404692385792/vid/720x720/kVeVWekwl_Sb7gxC.mp4?tag=13"
],
"content": {
"text": "Tony Stark is dead! Who's the next Iron Man? \ud83e\udd14 Dive into the post-death legacy of Tony Stark and Iron Man with #EarthsMightiestShow ahead of the release of \"Iron Man 2020\" #1!",
"html": "Tony Stark is dead! Who's the next Iron Man? \ud83e\udd14 Dive into the post-death legacy of Tony Stark and Iron Man with <a href=\"https://twitter.com/search?q=%23EarthsMightiestShow\">#EarthsMightiestShow</a> ahead of the release of \"Iron Man 2020\" #1!"
},
"author": {
"type": "card",
"name": "Marvel Entertainment",
"url": "https://twitter.com/Marvel",
"photo": "https://pbs.twimg.com/profile_images/573984336271122432/k8vEBoCW.jpeg"
},
"post-type": "video"
}
},
"_id": "7774908",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-01-08T18:51:36+00:00",
"url": "https://cleverdevil.io/2020/-automatically-downloading-youtube-content-to-plex",
"syndication": [
"https://twitter.com/cleverdevil/status/1214984454462230528",
"https://mastodon.social/@cleverdevil/103449221912664789"
],
"name": "\ud83d\udcfa Automatically Downloading YouTube Content to Plex",
"content": {
"text": "I have a small number of content creators that I enjoy following on YouTube, but I fundamentally dislike YouTube's shady algorithms, poor user experience, and invasive ads. These days, most of the content I watch is stored on my Plex server, so I decided to find a way to automatically download and add my favorite YouTube content to my Plex server. After a bit of searching, I found this guide from DIY Futurism which outlined a nice approach to the problem.My approach is similar, and makes use of the excellent youtube-dl project, along with a personal media scanner and personal media agent for Plex. I run my Plex Media Server on my Synology DS1019+ NAS, which I absolutely adore, so that's where I set everything up. The process was quite simple:Installed the aforementioned personal media scanner and personal media agent in my Plex server and enabled them in my Plex server settings.\nCreated a \"TV Shows\" library in Plex that uses the scanner and agent. I called mine \"YouTube.\"\nInstalled youtube-dl on my Synology. I already have Python installed there, so it was as simple as running pip install youtube-dl.\nAt this point, I was ready to create a script that would download the content and add it to Plex. The key is to take advantage of all of the great features in youtube-dl, including the ability to provide a \"batch\" file containing target channels, the ability to embed metadata and download thumbnails, and an \"archive\" feature which tracks what has already been downloaded. My script is a variation on the one from DIY Futurism:#!/bin/sh\n\ncd /var/services/homes/admin/Media/YouTube\n/volume1/@appstore/python3/bin/youtube-dl --playlist-reverse \\\n\t\t \u00a0 --dateafter now-2weeks \\\n\t\t \u00a0 --download-archive /var/services/homes/admin/Media/YouTube/downloaded.txt \\\n\t\t \u00a0 -i \\\n\t\t \u00a0 -o \"%(uploader)s/%(playlist)s/%(playlist)s - S01E%(playlist_index)s - %(title)s [%(id)s].%(ext)s\" \\\n\t\t \u00a0 --add-metadata \\\n\t\t \u00a0 --write-thumbnail \\\n\t\t \u00a0 --batch-file=/var/services/homes/admin/Media/YouTube/channel_list.txtLet's walk through the script. First, I change directories to where I want all of my content downloaded. This is the same directory that I configured in Plex for my \"YouTube\" library that I created earlier. Next, I specify that I want to process the videos in the playlist chronologically (in \"reverse\"). I also specify that I only want to download videos that were published in the last two weeks using the --dateafter\u00a0parameter. You can tweak this to download as much or as little of the content as you'd like.Next, I point youtube-dl to a text file containing a list of all content that I've already downloaded using the --download-archive parameter, which youtube-dl will automatically maintain for me. Because I am limiting my downloads to the last two weeks, I did need to pre-populate this text file with all of the historical content to avoid having to scan through thousands of videos on each run of the script.Next, I specify a format for where to store the downloaded content and what to name the files and directories, instruct youtube-dl to embed metadata, and to write a thumbnail image as well. This data will be used by the personal media scanner and agent to help Plex index the content.Finally, I specify a \"batch file,\" which contains a list of channels that I want to download content from. The format is simply one YouTube URL per line.After an initial run that I performed manually, I scheduled the script to run every four hours, and now my Plex server is my central location for my YouTube content.",
"html": "<p>I have a small number of content creators that I enjoy following on YouTube, but I fundamentally dislike YouTube's shady algorithms, poor user experience, and invasive ads. These days, most of the content I watch is stored on my <a href=\"https://plex.tv\">Plex</a> server, so I decided to find a way to automatically download and add my favorite YouTube content to my Plex server. After a bit of searching, I found <a href=\"https://diyfuturism.com/index.php/2017/12/14/auto-downloading-youtube-videos-for-plex-media-server/\">this guide from DIY Futurism</a> which outlined a nice approach to the problem.</p><p><img src=\"https://cleverdevil.io/file/78d6b3d1b917e9aeacc331bd5eb5f7e4/thumb.png\" alt=\"My Plex YouTube library\" width=\"1024\" height=\"548\" /></p><p>My approach is similar, and makes use of the excellent <a href=\"http://ytdl-org.github.io/youtube-dl/\">youtube-dl</a> project, along with a <a href=\"https://bitbucket.org/mjarends/plex-scanners\">personal media scanner</a> and <a href=\"https://bitbucket.org/mjarends/extendedpersonalmedia-agent.bundle\">personal media agent</a> for Plex. I run my Plex Media Server on my <a href=\"https://www.synology.com/en-us/products/DS1019+\">Synology DS1019+ NAS</a>, which I absolutely adore, so that's where I set everything up. The process was quite simple:</p><ol><li>Installed the aforementioned personal media scanner and personal media agent in my Plex server and enabled them in my Plex server settings.</li>\n<li>Created a \"TV Shows\" library in Plex that uses the scanner and agent. I called mine \"YouTube.\"</li>\n<li>Installed youtube-dl on my Synology. I already have Python installed there, so it was as simple as running <code>pip install youtube-dl</code>.</li>\n</ol><p>At this point, I was ready to create a script that would download the content and add it to Plex. The key is to take advantage of all of the great features in youtube-dl, including the ability to provide a \"batch\" file containing target channels, the ability to embed metadata and download thumbnails, and an \"archive\" feature which tracks what has already been downloaded. My script is a variation on the one from DIY Futurism:</p><pre><code>#!/bin/sh</code><br /><br /><code>cd /var/services/homes/admin/Media/YouTube</code><br /><code>/volume1/@appstore/python3/bin/youtube-dl --playlist-reverse \\</code><br /><code>\t\t \u00a0 --dateafter now-2weeks \\</code><br /><code>\t\t \u00a0 --download-archive /var/services/homes/admin/Media/YouTube/downloaded.txt \\</code><br /><code>\t\t \u00a0 -i \\</code><br /><code>\t\t \u00a0 -o \"%(uploader)s/%(playlist)s/%(playlist)s - S01E%(playlist_index)s - %(title)s [%(id)s].%(ext)s\" \\</code><br /><code>\t\t \u00a0 --add-metadata \\</code><br /><code>\t\t \u00a0 --write-thumbnail \\</code><br /><code>\t\t \u00a0 --batch-file=/var/services/homes/admin/Media/YouTube/channel_list.txt</code></pre><p>Let's walk through the script. First, I change directories to where I want all of my content downloaded. This is the same directory that I configured in Plex for my \"YouTube\" library that I created earlier. Next, I specify that I want to process the videos in the playlist chronologically (in \"reverse\"). I also specify that I only want to download videos that were published in the last two weeks using the <code>--dateafter</code>\u00a0parameter. You can tweak this to download as much or as little of the content as you'd like.</p><p>Next, I point youtube-dl to a text file containing a list of all content that I've already downloaded using the <code>--download-archive</code> parameter, which youtube-dl will automatically maintain for me. Because I am limiting my downloads to the last two weeks, I did need to pre-populate this text file with all of the historical content to avoid having to scan through thousands of videos on each run of the script.</p><p>Next, I specify a format for where to store the downloaded content and what to name the files and directories, instruct youtube-dl to embed metadata, and to write a thumbnail image as well. This data will be used by the personal media scanner and agent to help Plex index the content.</p><p>Finally, I specify a \"batch file,\" which contains a list of channels that I want to download content from. The format is simply one YouTube URL per line.</p><p>After an initial run that I performed manually, I scheduled the script to run every four hours, and now my Plex server is my central location for my YouTube content.</p>"
},
"author": {
"type": "card",
"name": "Jonathan LaCour",
"url": "https://cleverdevil.io/profile/cleverdevil",
"photo": "https://cleverdevil.io/file/fdbc7696a5f73864ea11a828c861e138/thumb.jpg"
},
"post-type": "article",
"_id": "7774337",
"_source": "10"
}
Oh damn. You about to get people ANGRY with this, lol.
New study prompts questions about diabetes and obesity within Black churches - TheGrio thegrio.com/2019/08/28/new…
{
"type": "entry",
"published": "2020-01-08T23:13:26+00:00",
"url": "https://twitter.com/jackyalcine/status/1215048897124556800",
"quotation-of": "https://twitter.com/jamalhbryant/status/1215047383496699905",
"content": {
"text": "Oh damn. You about to get people ANGRY with this, lol."
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/jamalhbryant/status/1215047383496699905": {
"type": "entry",
"published": "2020-01-08T23:07:25+00:00",
"url": "https://twitter.com/jamalhbryant/status/1215047383496699905",
"content": {
"text": "New study prompts questions about diabetes and obesity within Black churches - TheGrio thegrio.com/2019/08/28/new\u2026",
"html": "New study prompts questions about diabetes and obesity within Black churches - TheGrio <a href=\"https://thegrio.com/2019/08/28/new-study-prompts-questions-about-diabetes-and-obesity-within-black-churches/\">thegrio.com/2019/08/28/new\u2026</a>"
},
"author": {
"type": "card",
"name": "jamalbryant",
"url": "https://twitter.com/jamalhbryant",
"photo": "https://pbs.twimg.com/profile_images/1043144102831943680/DQ7stPZq.jpg"
},
"post-type": "note"
}
},
"_id": "7773987",
"_source": "2773"
}
I wanna rt this so bad but my crush gon see it 😂
{
"type": "entry",
"published": "2020-01-08T23:12:58+00:00",
"url": "https://twitter.com/jackyalcine/status/1215048780988473345",
"quotation-of": "https://twitter.com/BavBoyKaj/status/1213690945402744832",
"content": {
"text": "LMFAO"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/BavBoyKaj/status/1213690945402744832": {
"type": "entry",
"published": "2020-01-05T05:17:25+00:00",
"url": "https://twitter.com/BavBoyKaj/status/1213690945402744832",
"in-reply-to": [
"https://twitter.com/DatOneHaitian/status/1213689976459841537"
],
"content": {
"text": "I wanna rt this so bad but my crush gon see it \ud83d\ude02",
"html": "I wanna rt this so bad but my crush gon see it \ud83d\ude02\n<a class=\"u-mention\" href=\"https://twitter.com/DatOneHaitian\"></a>"
},
"author": {
"type": "card",
"name": "NEG KI PA CHEAT\ud83c\udded\ud83c\uddf9",
"url": "https://twitter.com/BavBoyKaj",
"photo": "https://pbs.twimg.com/profile_images/1195725157349937152/T4J2LCSK.jpg"
},
"post-type": "reply"
}
},
"_id": "7773988",
"_source": "2773"
}
🌆🌴 Another beautiful morning @Nov_Project_SF. Watching the sky brighten and rotate colors is always inspiring, especially when #running & breaking a sweat. So many good #dawn views in #AltaPlazaPark, still finding new ones(1), though the two palm trees… tantek.com/2020/008/t1/mo…
{
"type": "entry",
"published": "2020-01-08T23:12:45+00:00",
"url": "https://twitter.com/t/status/1215048726714167299",
"photo": [
"https://pbs.twimg.com/media/ENy4XpWWsAAMyhL.jpg",
"https://pbs.twimg.com/media/ENy4X2AWsAIEJXf.jpg",
"https://pbs.twimg.com/media/ENy4YH1W4AICjVR.jpg"
],
"content": {
"text": "\ud83c\udf06\ud83c\udf34 Another beautiful morning @Nov_Project_SF. Watching the sky brighten and rotate colors is always inspiring, especially when #running & breaking a sweat. So many good #dawn views in #AltaPlazaPark, still finding new ones(1), though the two palm trees\u2026 tantek.com/2020/008/t1/mo\u2026",
"html": "\ud83c\udf06\ud83c\udf34 Another beautiful morning <a href=\"https://twitter.com/Nov_Project_SF\">@Nov_Project_SF</a>. Watching the sky brighten and rotate colors is always inspiring, especially when <a href=\"https://twitter.com/search?q=%23running\">#running</a> & breaking a sweat. So many good <a href=\"https://twitter.com/search?q=%23dawn\">#dawn</a> views in <a href=\"https://twitter.com/search?q=%23AltaPlazaPark\">#AltaPlazaPark</a>, still finding new ones(1), though the two palm trees\u2026 <a href=\"https://tantek.com/2020/008/t1/morning-sky-colors-running-dawn\">tantek.com/2020/008/t1/mo\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": "7773989",
"_source": "2773"
}
She could definitely drop this too
{
"type": "entry",
"published": "2020-01-08T23:12:35+00:00",
"url": "https://twitter.com/jackyalcine/status/1215048685232496640",
"quotation-of": "https://twitter.com/Naomiasdfjkl/status/1214853088428744704",
"content": {
"text": "LMFAO son"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/Naomiasdfjkl/status/1214853088428744704": {
"type": "entry",
"published": "2020-01-08T10:15:21+00:00",
"url": "https://twitter.com/Naomiasdfjkl/status/1214853088428744704",
"video": [
"https://video.twimg.com/ext_tw_video/1214852978948988928/pu/vid/640x1136/Nnoo186GK8bXk7oc.mp4?tag=10"
],
"in-reply-to": [
"https://twitter.com/nopoIices/status/1214545606829649920"
],
"content": {
"text": "She could definitely drop this too",
"html": "She could definitely drop this too\n<a class=\"u-mention\" href=\"https://twitter.com/nopoIices\"></a>"
},
"author": {
"type": "card",
"name": "Sad Shawty \ud83c\udf52\ud83c\udf4b",
"url": "https://twitter.com/Naomiasdfjkl",
"photo": "https://pbs.twimg.com/profile_images/1195939514172100608/_tZJI3Sx.jpg"
},
"post-type": "reply"
}
},
"_id": "7773990",
"_source": "2773"
}
seeing someone 3 days in a row then being with them for half a day and automatically missing them after is for peasants.
{
"type": "entry",
"published": "2020-01-08T23:09:22+00:00",
"url": "https://twitter.com/jackyalcine/status/1215047876277088258",
"quotation-of": "https://twitter.com/Madesonee_/status/1215047669430747136",
"content": {
"text": "gotta do it in doses"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/Madesonee_/status/1215047669430747136": {
"type": "entry",
"published": "2020-01-08T23:08:33+00:00",
"url": "https://twitter.com/Madesonee_/status/1215047669430747136",
"content": {
"text": "seeing someone 3 days in a row then being with them for half a day and automatically missing them after is for peasants."
},
"author": {
"type": "card",
"name": "Aceito \ud83c\udf78",
"url": "https://twitter.com/Madesonee_",
"photo": "https://pbs.twimg.com/profile_images/1214672234192748544/u02UAoUu.jpg"
},
"post-type": "note"
}
},
"_id": "7773751",
"_source": "2773"
}
This. Between SQLite and Postgres, I find very little reason to use anything else. https://t.co/i8vhgJHeBX
The pace of innovation and remarkable performance of Postgres has more or less foreclosed my interest on using any other kind of data store until or unless there's an ove...
{
"type": "entry",
"published": "2020-01-08T22:53:07+00:00",
"url": "https://twitter.com/jackyalcine/status/1215043783282319361",
"quotation-of": "https://twitter.com/searls/status/1214927742636036096",
"content": {
"text": "This. Between SQLite and Postgres, I find very little reason to use anything else. https://t.co/i8vhgJHeBX"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/searls/status/1214927742636036096": {
"type": "entry",
"published": "2020-01-08T15:12:00+00:00",
"url": "https://twitter.com/searls/status/1214927742636036096",
"content": {
"text": "The pace of innovation and remarkable performance of Postgres has more or less foreclosed my interest on using any other kind of data store until or unless there's an overwhelming reason why Postgres is a bad fit."
},
"author": {
"type": "card",
"name": "Justin Searls",
"url": "https://twitter.com/searls",
"photo": "https://pbs.twimg.com/profile_images/2360535353/20120630-face.jpg"
},
"post-type": "note"
}
},
"_id": "7773409",
"_source": "2773"
}
It's usually some sort of half-malice/half-"haha I did it!"
It's the modern day "Industrial Revolution" tbh. We went from factory workers to cheap gig economy workers. We have apps for:
- Cheap taxis
- Cheap food delivery
- Cheap...
{
"type": "entry",
"published": "2020-01-08T22:48:44+00:00",
"url": "https://twitter.com/jackyalcine/status/1215042680847314950",
"quotation-of": "https://twitter.com/NerdyAndNatural/status/1215038744572633089",
"content": {
"text": "It's usually some sort of half-malice/half-\"haha I did it!\""
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/NerdyAndNatural/status/1215038744572633089": {
"type": "entry",
"published": "2020-01-08T22:33:05+00:00",
"url": "https://twitter.com/NerdyAndNatural/status/1215038744572633089",
"content": {
"text": "It's the modern day \"Industrial Revolution\" tbh. We went from factory workers to cheap gig economy workers. We have apps for:\n\n- Cheap taxis\n- Cheap food delivery\n- Cheap cleaning service\n\nAnd I always wonder about the \"masterminds\" behind these apps and their motivations.\ntwitter.com/tiffani/status\u2026",
"html": "It's the modern day \"Industrial Revolution\" tbh. We went from factory workers to cheap gig economy workers. We have apps for:\n\n- Cheap taxis\n- Cheap food delivery\n- Cheap cleaning service\n\nAnd I always wonder about the \"masterminds\" behind these apps and their motivations.\n<a href=\"https://twitter.com/tiffani/status/1215029309250953218\">twitter.com/tiffani/status\u2026</a>"
},
"author": {
"type": "card",
"name": "Sarah.rb",
"url": "https://twitter.com/NerdyAndNatural",
"photo": "https://pbs.twimg.com/profile_images/1190994139380363264/tW4lbiyb.jpg"
},
"post-type": "note"
}
},
"_id": "7773116",
"_source": "2773"
}
LOL Ari is really two people I know put together
{
"type": "entry",
"published": "2020-01-08T22:30:54+00:00",
"url": "https://twitter.com/jackyalcine/status/1215038194506489856",
"quotation-of": "https://twitter.com/AriLennoxLive/status/1211766748426522624",
"content": {
"text": "LOL Ari is really two people I know put together"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/AriLennoxLive/status/1211766748426522624": {
"type": "entry",
"published": "2019-12-30T21:51:21+00:00",
"url": "https://twitter.com/AriLennoxLive/status/1211766748426522624",
"video": [
"https://video.twimg.com/ext_tw_video/1211717185749565441/pu/vid/720x1280/wDWQ6sGCu7bVmI9R.mp4?tag=10"
],
"content": {
"text": "\u201cBig Booty Privilege\u201d"
},
"author": {
"type": "card",
"name": "Ari Lennox\u2019s IG Live",
"url": "https://twitter.com/AriLennoxLive",
"photo": "https://pbs.twimg.com/profile_images/1213307307376992257/8z_pSjq1.jpg"
},
"post-type": "video"
}
},
"_id": "7772789",
"_source": "2773"
}
I want to but there's too many folk who'd think I'm bashing them for being "bougie".
How long until we have a full conversation on how there’s a bunch of folks who essentially brought back indentured servitude*** but just did it through apps?
***I wan...
{
"type": "entry",
"published": "2020-01-08T22:22:12+00:00",
"url": "https://twitter.com/jackyalcine/status/1215036004790349824",
"quotation-of": "https://twitter.com/tiffani/status/1215029309250953218",
"content": {
"text": "I want to but there's too many folk who'd think I'm bashing them for being \"bougie\"."
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/tiffani/status/1215029309250953218": {
"type": "entry",
"published": "2020-01-08T21:55:36+00:00",
"url": "https://twitter.com/tiffani/status/1215029309250953218",
"content": {
"text": "How long until we have a full conversation on how there\u2019s a bunch of folks who essentially brought back indentured servitude*** but just did it through apps? \n\n***I want to say slavery, but I\u2019m not about to disrespect my ancestors like that."
},
"author": {
"type": "card",
"name": "Tiffani Ashley Bell",
"url": "https://twitter.com/tiffani",
"photo": "https://pbs.twimg.com/profile_images/1018645374527889408/9PSEFeBU.jpg"
},
"post-type": "note"
}
},
"_id": "7772424",
"_source": "2773"
}
if our eyes are lined horizontally, why are our phones vertical. how come they didn’t make our phones horizontally like televisions?
{
"type": "entry",
"published": "2020-01-08T22:12:18+00:00",
"url": "https://twitter.com/jackyalcine/status/1215033514976043008",
"quotation-of": "https://twitter.com/JAYVERSACE/status/1214828345935855619",
"content": {
"text": "delete this"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/JAYVERSACE/status/1214828345935855619": {
"type": "entry",
"published": "2020-01-08T08:37:02+00:00",
"url": "https://twitter.com/JAYVERSACE/status/1214828345935855619",
"content": {
"text": "if our eyes are lined horizontally, why are our phones vertical. how come they didn\u2019t make our phones horizontally like televisions?"
},
"author": {
"type": "card",
"name": "afro archangel jay",
"url": "https://twitter.com/JAYVERSACE",
"photo": "https://pbs.twimg.com/profile_images/1204140314346156032/K7gRWDHU.jpg"
},
"post-type": "note"
}
},
"_id": "7772204",
"_source": "2773"
}
LOL
this is encroaching the "family zone"
where family and friends see y'all together all the time but everyone but the other person doesn't seem to get the memo that Y'ALL FRIENDS
Actually. The friend zone does exist.
It manifests the moment when I reply to a man's proposal of a no effort date with a "happy to go as friends 😊".
{
"type": "entry",
"published": "2020-01-08T22:08:22+00:00",
"url": "https://twitter.com/jackyalcine/status/1215032522108788736",
"quotation-of": "https://twitter.com/TheYelitsa/status/1215031997443330054",
"content": {
"text": "LOL\n\nthis is encroaching the \"family zone\"\n\nwhere family and friends see y'all together all the time but everyone but the other person doesn't seem to get the memo that Y'ALL FRIENDS"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/TheYelitsa/status/1215031997443330054": {
"type": "entry",
"published": "2020-01-08T22:06:17+00:00",
"url": "https://twitter.com/TheYelitsa/status/1215031997443330054",
"content": {
"text": "Actually. The friend zone does exist. \n\nIt manifests the moment when I reply to a man's proposal of a no effort date with a \"happy to go as friends \ud83d\ude0a\"."
},
"author": {
"type": "card",
"name": "Yelitsa Jean-Charles",
"url": "https://twitter.com/TheYelitsa",
"photo": "https://pbs.twimg.com/profile_images/1172616138527825920/k-5euDNa.jpg"
},
"post-type": "note"
}
},
"_id": "7772207",
"_source": "2773"
}
god fucking damn it
I was excited for it at first lol
DJ Khaled to executive produce ‘Bad Boys For Life’ soundtrack
Are you here for it?
hhdx.co/37RI4Ph
{
"type": "entry",
"published": "2020-01-08T22:02:46+00:00",
"url": "https://twitter.com/jackyalcine/status/1215031112851959809",
"quotation-of": "https://twitter.com/HipHopDX/status/1215030419227324416",
"content": {
"text": "god fucking damn it\n\nI was excited for it at first lol"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/HipHopDX/status/1215030419227324416": {
"type": "entry",
"published": "2020-01-08T22:00:00+00:00",
"url": "https://twitter.com/HipHopDX/status/1215030419227324416",
"photo": [
"https://pbs.twimg.com/media/ENyTNKdU4AA_T-y.png"
],
"content": {
"text": "DJ Khaled to executive produce \u2018Bad Boys For Life\u2019 soundtrack\n\nAre you here for it?\n\nhhdx.co/37RI4Ph",
"html": "DJ Khaled to executive produce \u2018Bad Boys For Life\u2019 soundtrack\n\nAre you here for it?\n\n<a href=\"https://hhdx.co/37RI4Ph\">hhdx.co/37RI4Ph</a>"
},
"author": {
"type": "card",
"name": "HipHopDX",
"url": "https://twitter.com/HipHopDX",
"photo": "https://pbs.twimg.com/profile_images/481587622247026688/fRqBH2FG.png"
},
"post-type": "photo"
}
},
"_id": "7771963",
"_source": "2773"
}
This is skill not many have.
This cake ghetto as hell lol
{
"type": "entry",
"published": "2020-01-08T22:02:27+00:00",
"url": "https://twitter.com/jackyalcine/status/1215031033592238082",
"quotation-of": "https://twitter.com/JerzeyNelz/status/1214416583671586816",
"content": {
"text": "This is skill not many have."
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/JerzeyNelz/status/1214416583671586816": {
"type": "entry",
"published": "2020-01-07T05:20:50+00:00",
"url": "https://twitter.com/JerzeyNelz/status/1214416583671586816",
"photo": [
"https://pbs.twimg.com/media/ENp5cfKWsAE9F0k.jpg"
],
"content": {
"text": "This cake ghetto as hell lol"
},
"author": {
"type": "card",
"name": "Ne|z \ud83c\udde9\ud83c\uddf4",
"url": "https://twitter.com/JerzeyNelz",
"photo": "https://pbs.twimg.com/profile_images/1210389350971772930/jws83I6p.jpg"
},
"post-type": "photo"
}
},
"_id": "7771964",
"_source": "2773"
}
I feel like if I was trying to convince someone that I was an entirely new person online I would use exactly this many emojis:
newstatesman.com/science-tech/s…
{
"type": "entry",
"published": "2020-01-08T21:46:53+00:00",
"url": "https://twitter.com/ZoeSchiffer/status/1215027118536450049",
"photo": [
"https://pbs.twimg.com/media/ENykuYtU8AEHUWb.png"
],
"content": {
"text": "I feel like if I was trying to convince someone that I was an entirely new person online I would use exactly this many emojis:\n\nnewstatesman.com/science-tech/s\u2026",
"html": "I feel like if I was trying to convince someone that I was an entirely new person online I would use exactly this many emojis:\n\n<a href=\"https://www.newstatesman.com/science-tech/social-media/2020/01/strange-case-paul-zimmer-influencer-tiktok-instagram-rebrand-different-person-troy-becker\">newstatesman.com/science-tech/s\u2026</a>"
},
"author": {
"type": "card",
"name": "Zoe Schiffer",
"url": "https://twitter.com/ZoeSchiffer",
"photo": "https://pbs.twimg.com/profile_images/808466807119978496/nmhE7XbI.jpg"
},
"post-type": "photo",
"_id": "7771439",
"_source": "2773"
}
Sounds like Twitter’s learning from all of the successes of the open Social Web and rolling into their product. theverge.com/2020/1/8/21056…
{
"type": "entry",
"published": "2020-01-08T21:41:29+00:00",
"url": "https://twitter.com/jackyalcine/status/1215025757166227459",
"content": {
"text": "Sounds like Twitter\u2019s learning from all of the successes of the open Social Web and rolling into their product. theverge.com/2020/1/8/21056\u2026",
"html": "Sounds like Twitter\u2019s learning from all of the successes of the open Social Web and rolling into their product. <a href=\"https://www.theverge.com/2020/1/8/21056856/twitter-replies-limit-option-compose-screen-beta-app-features-new-ces-2020\">theverge.com/2020/1/8/21056\u2026</a>"
},
"author": {
"type": "card",
"name": "this person usually goes by",
"url": "https://twitter.com/jackyalcine",
"photo": "https://pbs.twimg.com/profile_images/1213144052201410570/m7Ghtc8F.jpg"
},
"post-type": "note",
"_id": "7771359",
"_source": "2773"
}
{
"type": "entry",
"published": "2020-01-08T21:00:26+0000",
"url": "https://quickthoughts.jgregorymcverry.com/2020/01/08/something-is-wrong-when-a-car-company",
"syndication": [
"https://twitter.com/jgmac1106/status/1215015453585760264"
],
"content": {
"text": "Something is wrong when a car company who just scratches out a profit: https://www.theverge.com/2019/10/23/20928982/tesla-q4-earnings-profit-model-3-china-gigafactory is also the most valuable: https://thehill.com/policy/transportation/477394-tesla-is-now-most-valuable-us-auto-company-in-histo...",
"html": "Something is wrong when a car company who just scratches out a profit: <a href=\"https://www.theverge.com/2019/10/23/20928982/tesla-q4-earnings-profit-model-3-china-gigafactory\">https://www.theverge.com/2019/10/23/20928982/tesla-q4-earnings-profit-model-3-china-gigafactory</a> is also the most valuable: <a href=\"https://thehill.com/policy/transportation/477394-tesla-is-now-most-valuable-us-auto-company-in-history\">https://thehill.com/policy/transportation/477394-tesla-is-now-most-valuable-us-auto-company-in-histo...</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": "7770263",
"_source": "1300"
}
Something is wrong when a car company who just scratches out a profit: theverge.com/2019/10/23/209… is also the most valuable: thehill.com/policy/transpo… (quickthoughts.jgregorymcverry.com/s/zK9Jh)
{
"type": "entry",
"published": "2020-01-08T21:00:32+00:00",
"url": "https://twitter.com/jgmac1106/status/1215015453585760264",
"content": {
"text": "Something is wrong when a car company who just scratches out a profit: theverge.com/2019/10/23/209\u2026 is also the most valuable: thehill.com/policy/transpo\u2026 (quickthoughts.jgregorymcverry.com/s/zK9Jh)",
"html": "Something is wrong when a car company who just scratches out a profit: <a href=\"https://www.theverge.com/2019/10/23/20928982/tesla-q4-earnings-profit-model-3-china-gigafactory\">theverge.com/2019/10/23/209\u2026</a> is also the most valuable: <a href=\"https://thehill.com/policy/transportation/477394-tesla-is-now-most-valuable-us-auto-company-in-history\">thehill.com/policy/transpo\u2026</a> (<a href=\"https://quickthoughts.jgregorymcverry.com/s/zK9Jh\">quickthoughts.jgregorymcverry.com/s/zK9Jh</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": "7769960",
"_source": "2773"
}