{
"type": "entry",
"published": "2020-12-08T22:38:45-08:00",
"url": "https://boffosocko.com/2020/12/08/browser-bookmarklets-for-giving-credit/",
"category": [
"indieweb",
"curators-code",
"giving-credit",
"hat-tip",
"via"
],
"name": "Browser Bookmarklets for Giving Credit",
"content": {
"text": "I\u2019ve been thinking more lately about giving credit on my own website, particularly in cases where the context of things I\u2019m reading has some additional context based on where I originally saw them. I\u2019d also like to give people I follow credit as the source by which my own content is aggregated.\nEarlier today I tinkered around with some ideas relating to the old Curator\u2019s Code which I revisit from time to time. I outlined some details, data fields, UI, and some pseudo-code to actually build it into a WordPress plugin. Then I thought I ought to check the repository where I discovered that someone had previously made one. Unfortunately it was withdrawn from the repository. I suspect its that they didn\u2019t want to continue to support it moving into the Gutenberg era. (It still works with the classic editor.)\nI don\u2019t give credit on my site often enough in large part because it isn\u2019t an easier thing to do when quickly posting some of the smaller bits of content. They say \u201cmanual until it hurts\u201c, and doing this has just hurt too much for too long. Toward that end I thought I\u2019d make a couple of quick bookmarklets for cutting and pasting text into my site. It\u2019s not as good as a better custom UI, but it\u2019ll work and could potentially work well for others.\nThese bookmarklets aren\u2019t any great shakes and perhaps (hopefully?) someone with more JavaScript chops than I have can greatly improve upon them to add or modify some of the bits and automate things a bit better. In particular, I\u2019m sure there\u2019s a way to find the original publication date on a page and pull that data out, but currently I could only figure out how to find the last modified date using document.lastModified because I couldn\u2019t find the other. I\u2019d also prefer to have a way to automatically find the author(s) as well, but JS isn\u2019t my best friend.\nInstructions for use\nCreate two bookmarks in your browser\u2019s bookmark bar. Give them convenient names like \u201cvia\u201d and \u201chat tip\u201d and add the snippets of code respectively into the URL fields. On a site you want to give credit to, highlight the name of the author of the post and click the bookmarklet. You\u2019ll see a pop up for some text which you can then cut and paste into your post to give the credit. You can obviously edit the text if necessary.\nIf your site supports sending Webmention notifications, then when the post is published, the cited page will get a notification of your post.\nBookmarklet code\nBelow are snippets of code that the bookmarklets are running (for transparency\u2019s sake).\njavascript:(function(){let text=\"\"; if(window.getSelection()!=''){text=window.getSelection().toString()+\"\\n\";}prompt(\"Press Ctrl+C, Escape\",\"<p><small><cite class=\"h-cite via\"><abbr title=\"via\">\u1525</abbr> <span class=\"p-author h-card\">\"+text+\"</span> in <a class=\"u-url p-name\" href=\"\"+location.href+\"\" target=\"_blank\" rel=\"noopener noreferrer\" >\"+document.title+\"</a> (<time class=\"dt-published\">\"+document.lastModified+\"</time>)</cite></small></p>\");})()\njavascript:(function(){let text=\"\"; if(window.getSelection()!=''){text=window.getSelection().toString()+\"\\n\";}prompt(\"Press Ctrl+C, Escape\",\"<p><small><cite class=\"h-cite ht\"><abbr title=\"hat tip\">\u21ac</abbr> <span class=\"p-author h-card\">\"+text+\"</span> in <a class=\"u-url p-name\" href=\"\"+location.href+\"\" target=\"_blank\" rel=\"noopener noreferrer\" >\"+document.title+\"</a> (<time class=\"dt-published\">\"+document.lastModified+\"</time>)</cite></small></p>\");})()\nExample\nHere\u2019s an example of what it looks like on my site:\n\u21ac \u00a0Maria Popova with input from Tina Roth Eisenberg in curator\u2019s \u01ddpo\u0254 (2018-12-07 21:32:53)\nWho will you credit?",
"html": "I\u2019ve been thinking more lately about <a href=\"https://indieweb.org/giving-credit\">giving credit</a> on my own website, particularly in cases where the context of things I\u2019m reading has some additional context based on where I originally saw them. I\u2019d also like to give people I follow credit as the source by which my own content is aggregated.\n<p>Earlier today I <a href=\"https://boffosocko.com/2020/12/08/55782209/\">tinkered around</a> with some ideas relating to the old <a href=\"https://web.archive.org/web/20181207213253/http://curatorscode.org/\">Curator\u2019s Code</a> which I revisit from time to time. I outlined some details, data fields, UI, and some pseudo-code to actually build it into a WordPress plugin. Then I thought I ought to check the repository where I discovered that <a href=\"https://www.contentharmony.com/tools/curators-code-plugin/\">someone had previously made one</a>. Unfortunately it was withdrawn from the repository. I suspect its that they didn\u2019t want to continue to support it moving into the Gutenberg era. (It still works with the classic editor.)</p>\n<p>I don\u2019t give credit on my site often enough in large part because it isn\u2019t an easier thing to do when quickly posting some of the smaller bits of content. They say \u201c<a href=\"https://indieweb.org/manual_until_it_hurts\">manual until it hurts</a>\u201c, and doing this has just hurt too much for too long. Toward that end I thought I\u2019d make a couple of quick bookmarklets for cutting and pasting text into my site. It\u2019s not as good as a better custom UI, but it\u2019ll work and could potentially work well for others.</p>\n<p>These bookmarklets aren\u2019t any great shakes and perhaps (hopefully?) someone with more JavaScript chops than I have can greatly improve upon them to add or modify some of the bits and automate things a bit better. In particular, I\u2019m sure there\u2019s a way to find the original publication date on a page and pull that data out, but currently I could only figure out how to find the last modified date using <code>document.lastModified</code> because I couldn\u2019t find the other. I\u2019d also prefer to have a way to automatically find the author(s) as well, but JS isn\u2019t my best friend.</p>\n<h2>Instructions for use</h2>\n<p>Create two bookmarks in your browser\u2019s bookmark bar. Give them convenient names like \u201cvia\u201d and \u201chat tip\u201d and add the snippets of code respectively into the URL fields. On a site you want to give credit to, highlight the name of the author of the post and click the bookmarklet. You\u2019ll see a pop up for some text which you can then cut and paste into your post to give the credit. You can obviously edit the text if necessary.</p>\n<p>If your site supports sending Webmention notifications, then when the post is published, the cited page will get a notification of your post.</p>\n<h3>Bookmarklet code</h3>\n<p>Below are snippets of code that the bookmarklets are running (for transparency\u2019s sake).</p>\n<pre>javascript:(function(){let text=\"\"; if(window.getSelection()!=''){text=window.getSelection().toString()+\"\\n\";}prompt(\"Press Ctrl+C, Escape\",\"<p><small><cite class=\"h-cite via\"><abbr title=\"via\">\u1525</abbr> <span class=\"p-author h-card\">\"+text+\"</span> in <a class=\"u-url p-name\" href=\"\"+location.href+\"\" target=\"_blank\" rel=\"noopener noreferrer\" >\"+document.title+\"</a> (<time class=\"dt-published\">\"+document.lastModified+\"</time>)</cite></small></p>\");})()</pre>\n<pre>javascript:(function(){let text=\"\"; if(window.getSelection()!=''){text=window.getSelection().toString()+\"\\n\";}prompt(\"Press Ctrl+C, Escape\",\"<p><small><cite class=\"h-cite ht\"><abbr title=\"hat tip\">\u21ac</abbr> <span class=\"p-author h-card\">\"+text+\"</span> in <a class=\"u-url p-name\" href=\"\"+location.href+\"\" target=\"_blank\" rel=\"noopener noreferrer\" >\"+document.title+\"</a> (<time class=\"dt-published\">\"+document.lastModified+\"</time>)</cite></small></p>\");})()</pre>\n<h2>Example</h2>\n<p>Here\u2019s an example of what it looks like on my site:</p>\n<p><abbr title=\"hat tip\">\u21ac</abbr> <span>\u00a0Maria Popova</span> with input from Tina Roth Eisenberg in <a href=\"https://curatorscode.org/%22\">curator\u2019s \u01ddpo\u0254</a> (<time>2018-12-07 21:32:53</time>)</p>\n<p>Who will you credit?</p>"
},
"author": {
"type": "card",
"name": "Chris Aldrich",
"url": "https://boffosocko.com/author/chrisaldrich/",
"photo": "https://secure.gravatar.com/avatar/d5fb4e498fe609cc29b04e5b7ad688c4?s=96&d=identicon&r=pg"
},
"post-type": "article",
"_id": "16954651",
"_source": "2785"
}
This is exactly how I’ve been converting undecideds during GA phonebanking
twitter.com/davidnir/statu…
It may be hard to believe now, but Dems won a tough special election for Kirsten Gillibrand's House seat in 2009 by hammering the Republican for not supporting the Obama ...
{
"type": "entry",
"published": "2020-12-09T04:25:16+00:00",
"url": "https://twitter.com/karabaic/status/1336527310623653891",
"quotation-of": "https://twitter.com/DavidNir/status/1336525995143278593",
"content": {
"text": "This is exactly how I\u2019ve been converting undecideds during GA phonebanking\ntwitter.com/davidnir/statu\u2026",
"html": "This is exactly how I\u2019ve been converting undecideds during GA phonebanking\n<a href=\"https://twitter.com/davidnir/status/1336525995143278593\">twitter.com/davidnir/statu\u2026</a>"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/DavidNir/status/1336525995143278593": {
"type": "entry",
"published": "2020-12-09T04:20:03+00:00",
"url": "https://twitter.com/DavidNir/status/1336525995143278593",
"content": {
"text": "It may be hard to believe now, but Dems won a tough special election for Kirsten Gillibrand's House seat in 2009 by hammering the Republican for not supporting the Obama stimulus. Ossoff & Warnock have been making a similar argument re COVID relief nytimes.com/2009/02/24/nyr\u2026",
"html": "It may be hard to believe now, but Dems won a tough special election for Kirsten Gillibrand's House seat in 2009 by hammering the Republican for not supporting the Obama stimulus. Ossoff & Warnock have been making a similar argument re COVID relief <a href=\"https://www.nytimes.com/2009/02/24/nyregion/24house.html\">nytimes.com/2009/02/24/nyr\u2026</a>"
},
"author": {
"type": "card",
"name": "David Nir",
"url": "https://twitter.com/DavidNir",
"photo": "https://pbs.twimg.com/profile_images/1239342968827494407/M1L0qJnS.png"
},
"post-type": "note"
}
},
"_id": "16953156",
"_source": "2773"
}
Irooni Twitter, help me out: gift ideas for Iranian dads? Every year I draw a blank and of course "a child eez not esupposed to get der parent a gift"
{
"type": "entry",
"published": "2020-12-09T03:50:20+00:00",
"url": "https://twitter.com/tinysubversions/status/1336518515331743749",
"content": {
"text": "Irooni Twitter, help me out: gift ideas for Iranian dads? Every year I draw a blank and of course \"a child eez not esupposed to get der parent a gift\""
},
"author": {
"type": "card",
"name": "Darius Kazemi",
"url": "https://twitter.com/tinysubversions",
"photo": "https://pbs.twimg.com/profile_images/1204800150939435008/Qk7oX7db.jpg"
},
"post-type": "note",
"_id": "16952776",
"_source": "2773"
}
I think this is an outtake from ST:First Contact
The Galactic Federation interviews Earth for membership
{
"type": "entry",
"published": "2020-12-09T02:52:03+00:00",
"url": "https://twitter.com/karabaic/status/1336503848500793344",
"quotation-of": "https://twitter.com/vinn_ayy/status/1336178629450018817",
"content": {
"text": "I think this is an outtake from ST:First Contact"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/vinn_ayy/status/1336178629450018817": {
"type": "entry",
"published": "2020-12-08T05:19:44+00:00",
"url": "https://twitter.com/vinn_ayy/status/1336178629450018817",
"video": [
"https://video.twimg.com/ext_tw_video/1336178477029072896/pu/vid/720x1280/lG5PZZRZ-ZGzTeUS.mp4?tag=10"
],
"content": {
"text": "The Galactic Federation interviews Earth for membership"
},
"author": {
"type": "card",
"name": "Vinny Thomas (With Eggnog!)",
"url": "https://twitter.com/vinn_ayy",
"photo": "https://pbs.twimg.com/profile_images/1303903599743901696/mvxEOveA.jpg"
},
"post-type": "video"
}
},
"_id": "16952150",
"_source": "2773"
}
It was estimated that every car2go vehicle in a city removed between 7-11 cars from private ownership. When they left the U.S., how many former members eventually decided to purchase their first or second car?
I think urbanists don't talk enough about a strategy of convincing people of on-demand car usage as opposed to car ownership. Just shifting people away from ownership wou...
{
"type": "entry",
"published": "2020-12-09T02:39:04+00:00",
"url": "https://twitter.com/andymcmillan/status/1336500582706659328",
"quotation-of": "https://twitter.com/bromptonpete/status/1335936034656415750",
"content": {
"text": "It was estimated that every car2go vehicle in a city removed between 7-11 cars from private ownership. When they left the U.S., how many former members eventually decided to purchase their first or second car?"
},
"author": {
"type": "card",
"name": "Andy McMillan",
"url": "https://twitter.com/andymcmillan",
"photo": "https://pbs.twimg.com/profile_images/1151993418232369153/9ShXZFLh.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/bromptonpete/status/1335936034656415750": {
"type": "entry",
"published": "2020-12-07T13:15:45+00:00",
"url": "https://twitter.com/bromptonpete/status/1335936034656415750",
"content": {
"text": "I think urbanists don't talk enough about a strategy of convincing people of on-demand car usage as opposed to car ownership. Just shifting people away from ownership would drastically reduce the psychological impact of car culture."
},
"author": {
"type": "card",
"name": "Peter K",
"url": "https://twitter.com/bromptonpete",
"photo": "https://pbs.twimg.com/profile_images/1308840332054933504/8WOqvz1H.jpg"
},
"post-type": "note"
}
},
"_id": "16951993",
"_source": "2773"
}
In Korra, I love those aerial views of New Yo—“Republic City” so much. I wish NYC had those mountains!
{
"type": "entry",
"published": "2020-12-09T02:08:25+00:00",
"url": "https://twitter.com/karabaic/status/1336492870686011394",
"content": {
"text": "In Korra, I love those aerial views of New Yo\u2014\u201cRepublic City\u201d so much. I wish NYC had those mountains!"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "note",
"_id": "16951606",
"_source": "2773"
}
Another heartbreaking loss to COVID-19. 💔
US composer Harold Budd dies aged 84 theguardian.com/music/2020/dec…
{
"type": "entry",
"published": "2020-12-09T01:48:11+00:00",
"url": "https://twitter.com/andymcmillan/status/1336487775898484738",
"quotation-of": "https://twitter.com/guardian/status/1336459453173002244",
"content": {
"text": "Another heartbreaking loss to COVID-19. \ud83d\udc94"
},
"author": {
"type": "card",
"name": "Andy McMillan",
"url": "https://twitter.com/andymcmillan",
"photo": "https://pbs.twimg.com/profile_images/1151993418232369153/9ShXZFLh.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/guardian/status/1336459453173002244": {
"type": "entry",
"published": "2020-12-08T23:55:38+00:00",
"url": "https://twitter.com/guardian/status/1336459453173002244",
"content": {
"text": "US composer Harold Budd dies aged 84 theguardian.com/music/2020/dec\u2026",
"html": "US composer Harold Budd dies aged 84 <a href=\"https://www.theguardian.com/music/2020/dec/08/harold-budd-death-age-84-brian-eno-cocteau-twins?utm_term=Autofeed&CMP=twt_gu&utm_medium&utm_source=Twitter#Echobox=1607469108\">theguardian.com/music/2020/dec\u2026</a>"
},
"author": {
"type": "card",
"name": "The Guardian",
"url": "https://twitter.com/guardian",
"photo": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla.png"
},
"post-type": "note"
}
},
"_id": "16951473",
"_source": "2773"
}
What is the best hosting service to store and share media files? I use @webflow for my site, but there's no FTP access. :( I want to be able to host images + videos and have full access to folders.
{
"type": "entry",
"published": "2020-12-09T01:39:03+00:00",
"url": "https://twitter.com/andigalpern/status/1336485479965847552",
"content": {
"text": "What is the best hosting service to store and share media files? I use @webflow for my site, but there's no FTP access. :( I want to be able to host images + videos and have full access to folders.",
"html": "What is the best hosting service to store and share media files? I use <a href=\"https://twitter.com/webflow\">@webflow</a> for my site, but there's no FTP access. :( I want to be able to host images + videos and have full access to folders."
},
"author": {
"type": "card",
"name": "Andi Galpern",
"url": "https://twitter.com/andigalpern",
"photo": "https://pbs.twimg.com/profile_images/1162560868543893504/uo_XA_EA.jpg"
},
"post-type": "note",
"_id": "16951303",
"_source": "2773"
}
Complications killed my brother-in-law. Take this seriously.
Both my sister and my best friend have survived COVID now. Listen the fuck up.
twitter.com/lindsaydemeola…
{
"type": "entry",
"published": "2020-12-08T23:50:49+00:00",
"url": "https://twitter.com/karabaic/status/1336458240545050627",
"quotation-of": "https://twitter.com/S_P_Burke/status/1336457780148879360",
"content": {
"text": "Complications killed my brother-in-law. Take this seriously."
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/S_P_Burke/status/1336457780148879360": {
"type": "entry",
"published": "2020-12-08T23:48:59+00:00",
"url": "https://twitter.com/S_P_Burke/status/1336457780148879360",
"content": {
"text": "Both my sister and my best friend have survived COVID now. Listen the fuck up.\ntwitter.com/lindsaydemeola\u2026",
"html": "Both my sister and my best friend have survived COVID now. Listen the fuck up.\n<a href=\"https://twitter.com/lindsaydemeola/status/1336141154258018305\">twitter.com/lindsaydemeola\u2026</a>"
},
"author": {
"type": "card",
"name": "SPUBLAND Mayor",
"url": "https://twitter.com/S_P_Burke",
"photo": "https://pbs.twimg.com/profile_images/1274502409859919873/JyQLKUn8.png"
},
"post-type": "note"
}
},
"_id": "16949492",
"_source": "2773"
}
I’ve been a staunch advocate of the “iPad lifestyle” as a content creator ever since iPad Pro was a thing. But I’m getting pretty tired of the constant bugs related to file management. Even in the latest iPadOS, it’s an *ordeal* just to copy a video off a card.
Back to the Mac?
{
"type": "entry",
"published": "2020-12-08T23:35:42+00:00",
"url": "https://twitter.com/jaredcwhite/status/1336454438790164480",
"content": {
"text": "I\u2019ve been a staunch advocate of the \u201ciPad lifestyle\u201d as a content creator ever since iPad Pro was a thing. But I\u2019m getting pretty tired of the constant bugs related to file management. Even in the latest iPadOS, it\u2019s an *ordeal* just to copy a video off a card.\n\nBack to the Mac?"
},
"author": {
"type": "card",
"name": "Jared White",
"url": "https://twitter.com/jaredcwhite",
"photo": "https://pbs.twimg.com/profile_images/1300145786466959360/mfgpyZb8.jpg"
},
"post-type": "note",
"_id": "16949140",
"_source": "2773"
}
*sirens blazing down my street*
Me thinking momentarily “Oh no are the procrastination police coming to get me?!”
{
"type": "entry",
"published": "2020-12-08T23:16:19+00:00",
"url": "https://twitter.com/anomalily/status/1336449557706600448",
"content": {
"text": "*sirens blazing down my street* \n\nMe thinking momentarily \u201cOh no are the procrastination police coming to get me?!\u201d"
},
"author": {
"type": "card",
"name": "Lillian Karabaic \ud83e\udd44\ud83c\udff3\ufe0f\u200d\ud83c\udf08 BLM",
"url": "https://twitter.com/anomalily",
"photo": "https://pbs.twimg.com/profile_images/1123802400731664385/dsHQG1nZ.jpg"
},
"post-type": "note",
"_id": "16948902",
"_source": "2773"
}
I am seeking someone who is on an expensive medication and receives pharma co-pay assistance for a super short email/DM interview about the cost of your drug. This will not be published, it is for a sample article. #journorequest #spoonie
{
"type": "entry",
"published": "2020-12-08T22:44:39+00:00",
"url": "https://twitter.com/anomalily/status/1336441590148026370",
"content": {
"text": "I am seeking someone who is on an expensive medication and receives pharma co-pay assistance for a super short email/DM interview about the cost of your drug. This will not be published, it is for a sample article. #journorequest #spoonie",
"html": "I am seeking someone who is on an expensive medication and receives pharma co-pay assistance for a super short email/DM interview about the cost of your drug. This will not be published, it is for a sample article. <a href=\"https://twitter.com/search?q=%23journorequest\">#journorequest</a> <a href=\"https://twitter.com/search?q=%23spoonie\">#spoonie</a>"
},
"author": {
"type": "card",
"name": "Lillian Karabaic \ud83e\udd44\ud83c\udff3\ufe0f\u200d\ud83c\udf08 BLM",
"url": "https://twitter.com/anomalily",
"photo": "https://pbs.twimg.com/profile_images/1123802400731664385/dsHQG1nZ.jpg"
},
"post-type": "note",
"_id": "16948274",
"_source": "2773"
}
You👏Can👏Always👏Grift👏A👏Grifter
👏👏👏👏👏👏👏👏
Remember when Trump fell for a fake account posing as his sister? (If not: He did.)
Well, I figured out who was behind it: a 21-year-old DoorDash driver and Trump suppor...
{
"type": "entry",
"published": "2020-12-08T22:26:09+00:00",
"url": "https://twitter.com/karabaic/status/1336436933308739584",
"quotation-of": "https://twitter.com/jacknicas/status/1336374894393700362",
"content": {
"text": "You\ud83d\udc4fCan\ud83d\udc4fAlways\ud83d\udc4fGrift\ud83d\udc4fA\ud83d\udc4fGrifter\n\n\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/jacknicas/status/1336374894393700362": {
"type": "entry",
"published": "2020-12-08T18:19:38+00:00",
"url": "https://twitter.com/jacknicas/status/1336374894393700362",
"content": {
"text": "Remember when Trump fell for a fake account posing as his sister? (If not: He did.)\n\nWell, I figured out who was behind it: a 21-year-old DoorDash driver and Trump supporter in Mechanicsburg, Penn.\n\nAnd hoo boy, it's quite a tale.\nnytimes.com/2020/12/08/tec\u2026",
"html": "Remember when Trump fell for a fake account posing as his sister? (If not: He did.)\n\nWell, I figured out who was behind it: a 21-year-old DoorDash driver and Trump supporter in Mechanicsburg, Penn.\n\nAnd hoo boy, it's quite a tale.\n<a href=\"https://www.nytimes.com/2020/12/08/technology/trump-family-impersonator.html\">nytimes.com/2020/12/08/tec\u2026</a>"
},
"author": {
"type": "card",
"name": "Jack Nicas",
"url": "https://twitter.com/jacknicas",
"photo": "https://pbs.twimg.com/profile_images/1181375989068091392/AnLjBAhW.jpg"
},
"post-type": "note"
}
},
"_id": "16948096",
"_source": "2773"
}
Kevin "Wacko" Paxton, Esq. I really wish he was from Waco, because then he could be the Waco Wacko.
(I'll decline to call him "The Honorable", because, well, isn't that obvious?)
cnbc.com/2020/12/08/tex…
{
"type": "entry",
"published": "2020-12-08T22:01:16+00:00",
"url": "https://twitter.com/karabaic/status/1336430672592871425",
"photo": [
"https://pbs.twimg.com/media/EovwBHFU8AA5lEV.png"
],
"content": {
"text": "Kevin \"Wacko\" Paxton, Esq. I really wish he was from Waco, because then he could be the Waco Wacko. \n\n(I'll decline to call him \"The Honorable\", because, well, isn't that obvious?)\n\ncnbc.com/2020/12/08/tex\u2026",
"html": "Kevin \"Wacko\" Paxton, Esq. I really wish he was from Waco, because then he could be the Waco Wacko. \n\n(I'll decline to call him \"The Honorable\", because, well, isn't that obvious?)\n\n<a href=\"https://www.cnbc.com/2020/12/08/texas-sues-four-battleground-states-in-supreme-court-over-unlawful-election-results.html\">cnbc.com/2020/12/08/tex\u2026</a>"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "photo",
"_id": "16947585",
"_source": "2773"
}
I am this, and this is me.
actually I’m more like this
{
"type": "entry",
"published": "2020-12-08T21:46:10+00:00",
"url": "https://twitter.com/slsoftworks/status/1336426869743349761",
"quotation-of": "https://twitter.com/chipzel/status/1336337190977118210",
"content": {
"text": "I am this, and this is me."
},
"author": {
"type": "card",
"name": "flaki",
"url": "https://twitter.com/slsoftworks",
"photo": "https://pbs.twimg.com/profile_images/749678683514896385/7gxIRnoC.jpg"
},
"post-type": "note",
"refs": {
"https://twitter.com/chipzel/status/1336337190977118210": {
"type": "entry",
"published": "2020-12-08T15:49:48+00:00",
"url": "https://twitter.com/chipzel/status/1336337190977118210",
"photo": [
"https://pbs.twimg.com/media/EouflyDUUAE0VkH.jpg"
],
"in-reply-to": [
"https://twitter.com/chipzel/status/1336335326613139456"
],
"content": {
"text": "actually I\u2019m more like this"
},
"author": {
"type": "card",
"name": "\ud83c\udf08chipzel \ud83c\udff3\ufe0f\u200d\ud83c\udf08\u26a1\ufe0f",
"url": "https://twitter.com/chipzel",
"photo": "https://pbs.twimg.com/profile_images/1322023693644713984/e23U3BUH.jpg"
},
"post-type": "reply"
}
},
"_id": "16947305",
"_source": "2773"
}
Save The Kinney Family Home gofundme.com/f/save-the-kin…
{
"type": "entry",
"published": "2020-12-08T21:30:12+00:00",
"url": "https://twitter.com/karabaic/status/1336422852296208384",
"content": {
"text": "Save The Kinney Family Home gofundme.com/f/save-the-kin\u2026",
"html": "Save The Kinney Family Home <a href=\"https://www.gofundme.com/f/save-the-kinney-family-home?utm_source=twitter&utm_medium=social&utm_campaign=m_pd+share-sheet\">gofundme.com/f/save-the-kin\u2026</a>"
},
"author": {
"type": "card",
"name": "jk",
"url": "https://twitter.com/karabaic",
"photo": "https://pbs.twimg.com/profile_images/1256785873384861696/QfRzUvne.jpg"
},
"post-type": "note",
"_id": "16946912",
"_source": "2773"
}
ruby-3.0.0-preview2 - #configuring - please wait…
🤓
{
"type": "entry",
"published": "2020-12-08T20:43:16+00:00",
"url": "https://twitter.com/jaredcwhite/status/1336411040997785600",
"content": {
"text": "ruby-3.0.0-preview2 - #configuring - please wait\u2026\n\n\ud83e\udd13",
"html": "ruby-3.0.0-preview2 - <a href=\"https://twitter.com/search?q=%23configuring\">#configuring</a> - please wait\u2026\n\n\ud83e\udd13"
},
"author": {
"type": "card",
"name": "Jared White",
"url": "https://twitter.com/jaredcwhite",
"photo": "https://pbs.twimg.com/profile_images/1300145786466959360/mfgpyZb8.jpg"
},
"post-type": "note",
"_id": "16945976",
"_source": "2773"
}
But my biggest objection? Noise canceling headphones are for travel. That case is an absolute abomination. They’re almost certainly going to announce a hard shell case, but I’d bet it costs an absurd amount of money. Should be bundled.
{
"type": "entry",
"published": "2020-12-08T20:21:30+00:00",
"url": "https://twitter.com/cleverdevil/status/1336405562947334144",
"content": {
"text": "But my biggest objection? Noise canceling headphones are for travel. That case is an absolute abomination. They\u2019re almost certainly going to announce a hard shell case, but I\u2019d bet it costs an absurd amount of money. Should be bundled."
},
"author": {
"type": "card",
"name": "Jonathan LaCour",
"url": "https://twitter.com/cleverdevil",
"photo": "https://pbs.twimg.com/profile_images/744804831064317952/W-gMo7AO.jpg"
},
"post-type": "note",
"_id": "16945694",
"_source": "2773"
}
I think AirPods Max at $299 would absolutely fly off the shelves, becoming the new Beats, only bigger. Good enough sound, stylish, convenient, software, UX. That’s a winner!
At $550, you’ve gotta lean into “sounds better than anything else.” We shall see.
{
"type": "entry",
"published": "2020-12-08T20:20:23+00:00",
"url": "https://twitter.com/cleverdevil/status/1336405285540388871",
"content": {
"text": "I think AirPods Max at $299 would absolutely fly off the shelves, becoming the new Beats, only bigger. Good enough sound, stylish, convenient, software, UX. That\u2019s a winner!\n\nAt $550, you\u2019ve gotta lean into \u201csounds better than anything else.\u201d We shall see."
},
"author": {
"type": "card",
"name": "Jonathan LaCour",
"url": "https://twitter.com/cleverdevil",
"photo": "https://pbs.twimg.com/profile_images/744804831064317952/W-gMo7AO.jpg"
},
"post-type": "note",
"_id": "16945695",
"_source": "2773"
}
Look, the high end headphone market has plenty of contenders that are far more expensive than $550. That said, like they did with the first gen Apple Watch, I think they’ve misjudged what that market wants.
Sound quality. Comfort. That’s it. That’s all that matters.
{
"type": "entry",
"published": "2020-12-08T20:18:42+00:00",
"url": "https://twitter.com/cleverdevil/status/1336404859810009088",
"content": {
"text": "Look, the high end headphone market has plenty of contenders that are far more expensive than $550. That said, like they did with the first gen Apple Watch, I think they\u2019ve misjudged what that market wants.\n\nSound quality. Comfort. That\u2019s it. That\u2019s all that matters."
},
"author": {
"type": "card",
"name": "Jonathan LaCour",
"url": "https://twitter.com/cleverdevil",
"photo": "https://pbs.twimg.com/profile_images/744804831064317952/W-gMo7AO.jpg"
},
"post-type": "note",
"_id": "16945696",
"_source": "2773"
}