Steve Ivy
I know I’ve done a good job integrating my social media posting into my site when I want to reply to my own posts. #indieweb #posse
{
"type": "entry",
"published": "2020-02-26 01:02:41",
"url": "http://monkinetic.blog/2020/02/26/#txt-1f24862",
"content": {
"text": "I know I\u2019ve done a good job integrating my social media posting into my site when I want to reply to my own posts. #indieweb #posse",
"html": "<p>I know I\u2019ve done a good job integrating my social media posting into my site when I want to reply to my own posts. <a href=\"http://monkinetic.blog/tag/indieweb\">#indieweb</a> <a href=\"http://monkinetic.blog/tag/posse\">#posse</a></p>"
},
"author": {
"type": "card",
"name": "Steve Ivy",
"url": false,
"photo": "http://monkinetic.blog/static/images/sivy_avatar_256.png"
},
"post-type": "note",
"_id": "9261221",
"_source": "4486",
"_is_read": true
}
{
"type": "entry",
"published": "2020-02-25 14:36-0800",
"url": "https://gregorlove.com/2020/02/hey-brian-hope-you-can/",
"in-reply-to": [
"https://pine.blog/u/sonicrocketman"
],
"content": {
"text": "Hey Brian, hope you can make the next Homebrew Website Club San Diego meetup: https://events.indieweb.org/2020/03/homebrew-website-club-san-diego-bSBT0ZceMIHo",
"html": "<p>Hey Brian, hope you can make the next Homebrew Website Club San Diego meetup: <a href=\"https://events.indieweb.org/2020/03/homebrew-website-club-san-diego-bSBT0ZceMIHo\">https://events.indieweb.org/2020/03/homebrew-website-club-san-diego-bSBT0ZceMIHo</a></p>"
},
"post-type": "reply",
"refs": {
"https://pine.blog/u/sonicrocketman": {
"type": "entry",
"url": "https://pine.blog/u/sonicrocketman",
"name": "https://pine.blog/u/sonicrocketman",
"post-type": "article"
}
},
"_id": "9259079",
"_source": "95",
"_is_read": true
}
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2020/02/25/replies-on-your.html",
"name": "Replies on your blog with Conversation.js",
"content": {
"html": "<p>During the project day at <a href=\"https://2020.indieweb.org/austin\">IndieWebCamp Austin</a> last weekend, I built a new feature for Micro.blog that I\u2019m calling <strong>Conversation.js</strong>. It\u2019s a JavaScript include that lets you take a conversation on Micro.blog and drop it into your blog.</p>\n\n<p>Like a lot of Micro.blog features, it works either as a simple feature you can enable with a click, or as a more advanced API that can be customized however you\u2019d like. If all you want to do is enable the feature, just click on Posts \u2192 Design and look for this checkbox:</p>\n\n<p><img src=\"https://www.manton.org/uploads/2020/55f704654c.png\" alt=\"Conversation checkbox\" border=\"0\" width=\"500\" height=\"119\" style=\"max-width:500px;\" /></p>\n\n<p>Behind the scenes, this checkbox is adding a new Hugo parameter <code>.Params.include_conversation</code> that can be used in a custom theme. All the built-in Micro.blog designs have been updated to check for this parameter and then add the following line of JavaScript:</p>\n\n<pre>\n<script type=\"text/javascript\" src=\"https://micro.blog/conversation.js?url={{ .Permalink }}\"></script>\n</pre>\n\n<p>This JavaScript include gathers the replies to the current blog post and adds them to your web page. The HTML elements all have class names so you can style the replies to match your site.</p>\n\n<p><a href=\"https://www.manton.org/2020/02/24/mimi-uploader-for.html\">See this page on my blog</a> for how the replies look on one of my blog posts.</p>\n\n<p>If you need even more control, you can request the conversation as JSON from apps or scripts by adding <code>format=jsonfeed</code> to the URL. Or you can add <code>format=jf2</code> to produce output that matches Webmention.io, so it\u2019s easier to repurpose tools that already work with Webmention.io.</p>\n\n<p>Speaking of Webmention, this is not just about taking Micro.blog-only replies and putting them on your blog. Because all Micro.blog-hosted blogs support Webmention, and Micro.blog can accept mentions even from blogs that have not yet registered on Micro.blog, with Conversation.js it now becomes much more useful for other blogs to send you replies. Those replies can appear on your blog, with Micro.blog mostly acting as glue so that both blogs can talk to each other.</p>\n\n<p>I\u2019ve been wanting to do something like this for a while. It didn\u2019t take long at IndieWebCamp Austin when I finally sat down to code it, but I think it opens up a lot of options for Micro.blog in the future, including acting as an IndieWeb-friendly replacement for Disqus and other commenting systems.</p>",
"text": "During the project day at IndieWebCamp Austin last weekend, I built a new feature for Micro.blog that I\u2019m calling Conversation.js. It\u2019s a JavaScript include that lets you take a conversation on Micro.blog and drop it into your blog.\n\nLike a lot of Micro.blog features, it works either as a simple feature you can enable with a click, or as a more advanced API that can be customized however you\u2019d like. If all you want to do is enable the feature, just click on Posts \u2192 Design and look for this checkbox:\n\n\n\nBehind the scenes, this checkbox is adding a new Hugo parameter .Params.include_conversation that can be used in a custom theme. All the built-in Micro.blog designs have been updated to check for this parameter and then add the following line of JavaScript:\n\n\n<script type=\"text/javascript\" src=\"https://micro.blog/conversation.js?url={{ .Permalink }}\"></script>\n\n\nThis JavaScript include gathers the replies to the current blog post and adds them to your web page. The HTML elements all have class names so you can style the replies to match your site.\n\nSee this page on my blog for how the replies look on one of my blog posts.\n\nIf you need even more control, you can request the conversation as JSON from apps or scripts by adding format=jsonfeed to the URL. Or you can add format=jf2 to produce output that matches Webmention.io, so it\u2019s easier to repurpose tools that already work with Webmention.io.\n\nSpeaking of Webmention, this is not just about taking Micro.blog-only replies and putting them on your blog. Because all Micro.blog-hosted blogs support Webmention, and Micro.blog can accept mentions even from blogs that have not yet registered on Micro.blog, with Conversation.js it now becomes much more useful for other blogs to send you replies. Those replies can appear on your blog, with Micro.blog mostly acting as glue so that both blogs can talk to each other.\n\nI\u2019ve been wanting to do something like this for a while. It didn\u2019t take long at IndieWebCamp Austin when I finally sat down to code it, but I think it opens up a lot of options for Micro.blog in the future, including acting as an IndieWeb-friendly replacement for Disqus and other commenting systems."
},
"published": "2020-02-25T09:46:04-06:00",
"category": [
"Photos",
"Essays"
],
"post-type": "article",
"_id": "9248893",
"_source": "12",
"_is_read": true
}
Oh my gosh! It’s either https://masilotti.com or https://masilotti.com/webmentions might be the source of truth!
{
"type": "entry",
"published": "2020-02-23T14:45:44.31426-08:00",
"url": "https://v2.jacky.wtf/post/4807d53e-37f2-4203-aab6-2427490bbf17",
"category": [
"test"
],
"content": {
"text": "Oh my gosh! It\u2019s either https://masilotti.com or https://masilotti.com/webmentions might be the source of truth!",
"html": "<p>Oh my gosh! It\u2019s either <a href=\"https://masilotti.com\">https://masilotti.com</a> or <a href=\"https://masilotti.com/webmentions\">https://masilotti.com/webmentions</a> might be the source of truth! </p>\n<p></p>"
},
"author": {
"type": "card",
"name": "",
"url": "https://v2.jacky.wtf",
"photo": null
},
"post-type": "note",
"_id": "9231437",
"_source": "1886",
"_is_read": true
}
{
"type": "entry",
"published": "2020-02-23T14:12:42.69018-08:00",
"url": "https://v2.jacky.wtf/post/90fdbf93-ec2d-452c-9d60-322f3e547060",
"category": [
"indieweb"
],
"content": {
"text": "And we\u2019re live! #indieweb https://indieweb.live/",
"html": "<p>And we\u2019re live! #<a href=\"https://v2.jacky.wtf/tags/75cedb2a-3173-4436-a86a-300f1a8d81b4\" class=\"p-category\">indieweb</a> <a href=\"https://indieweb.live/\">https://indieweb.live/</a></p>"
},
"author": {
"type": "card",
"name": "",
"url": "https://v2.jacky.wtf",
"photo": null
},
"post-type": "note",
"_id": "9231438",
"_source": "1886",
"_is_read": true
}
Thanks everyone who attended IndieWebCamp! This was our best turnout in Austin and I personally got a lot out of the weekend. There are more IndieWeb events this year, including London next month and Portland in June.
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2020/02/24/thanks-everyone-who.html",
"content": {
"html": "<p>Thanks everyone who attended IndieWebCamp! This was our best turnout in Austin and I personally got a lot out of the weekend. There are more IndieWeb events this year, including London next month and Portland in June.</p>",
"text": "Thanks everyone who attended IndieWebCamp! This was our best turnout in Austin and I personally got a lot out of the weekend. There are more IndieWeb events this year, including London next month and Portland in June."
},
"published": "2020-02-24T08:26:15-06:00",
"post-type": "note",
"_id": "9215438",
"_source": "12",
"_is_read": true
}
on iOS Firefox scrolled to show the Recent Photos embed of a 3x4 grid of the twelve most recent photo posts)
Added a Recent Photos embed to my homepage sidebar (or bottom of the mobile view) @IndieWebCamp Austin projects day! Still tweaking, yet quite happy with how it looks, e.g. compared to an @Instagram profile. #indieweb #takebackyourweb #ownyourphotos
{
"type": "entry",
"published": "2020-02-23 21:26-0800",
"url": "http://tantek.com/2020/054/t2/added-recent-photos-embed",
"category": [
"indieweb",
"takebackyourweb",
"ownyourphotos"
],
"photo": [
"https://aperture-media.p3k.io/indieweb.org/aaee5fa88110da7a16f86b10c6fd3e1d921b6d35f9d9510657ab601b2611a867.png"
],
"content": {
"text": "on iOS Firefox scrolled to show the Recent Photos embed of a 3x4 grid of the twelve most recent photo posts)\nAdded a Recent Photos embed to my homepage sidebar (or bottom of the mobile view) @IndieWebCamp Austin projects day! Still tweaking, yet quite happy with how it looks, e.g. compared to an @Instagram profile. #indieweb #takebackyourweb #ownyourphotos",
"html": "<a href=\"http://tantek.com/tantek.com\"></a>on iOS Firefox scrolled to show the Recent Photos embed of a 3x4 grid of the twelve most recent photo posts)<br />Added a Recent Photos embed to my homepage sidebar (or bottom of the mobile view) <a class=\"h-cassis-username\" href=\"https://twitter.com/IndieWebCamp\">@IndieWebCamp</a> Austin projects day! Still tweaking, yet quite happy with how it looks, e.g. compared to an <a class=\"h-cassis-username\" href=\"https://twitter.com/Instagram\">@Instagram</a> profile. #<span class=\"p-category\">indieweb</span> #<span class=\"p-category\">takebackyourweb</span> #<span class=\"p-category\">ownyourphotos</span>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "photo",
"_id": "9206476",
"_source": "1",
"_is_read": true
}
{
"type": "entry",
"published": "2020-02-23 13:59-0800",
"url": "https://gregorlove.com/2020/02/my-indiewebcamp-austin-2020-projects/",
"name": "My IndieWebCamp Austin 2020 Projects",
"content": {
"text": "I often come into an IndieWebCamp without a specific project in mind. Sometimes I will get inspired by the discussions. If not, I always have a list of things to tweak on my site; or improvements to indiebookclub, indiewebify.me, or other indieweb tools.\n\nI have recently been working on updating my page header and the main content area. I launched this on my photos page just before the event and today I applied that to the notes page as well. Some things I am really liking about these updates:\n\nBetter responsive design. The header is wider on desktop, with the navigation beside the logo. There\u2019s a medium-size breakpoint where the navigation slips under the logo so they can all still appear on the page. Then there\u2019s a smaller breakpoint where the navigation is hidden and replaced with an open/close toggle.\n\tThe open/close toggle on the smaller size does not require javascript! It uses the CSS :target pseudo-class selector, so clicking different anchor links shows or hides the navigation. I got that idea from this Shellcreeper tutorial.\n\tThe main content area is still optimized for text lines about 70-characters long, which is good for readability. However, I wanted the option to make photos wider on larger screens. I pieced together something from various sources so the photos can break out of the main content area and be up to 960 pixels wide. This is best seen on the photos page. Notice the caption text is narrower under each photo. I think this will look really cool in blog posts that include a striking image.\n\tOn smaller screens, those images are now full-bleed. No left/right margins.\nIn a session yesterday we were talking about local communities and discovering content by region, e.g. \u201cshow me all the meetups around San Diego.\u201d As a starting point, I was thinking that microsub servers could parse feeds for location information and use that to suggest feeds near your location. I don\u2019t work on a microsub server myself and that\u2019s too big a project for me today, but I was able to easily add location to my homepage if anyone wants to parse it. I used the h-geo microformat.",
"html": "<p>I often come into an IndieWebCamp without a specific project in mind. Sometimes I will get inspired by the discussions. If not, I always have a list of things to tweak on my site; or improvements to <a href=\"https://indiebookclub.biz\">indiebookclub</a>, <a href=\"https://indiewebify.me\">indiewebify.me</a>, or other indieweb tools.</p>\n\n<p>I have recently been working on updating my page header and the main content area. I launched this on my <a href=\"https://gregorlove.com/channels/photos/\">photos</a> page just before the event and today I applied that to the <a href=\"https://gregorlove.com/notes/\">notes</a> page as well. Some things I am really liking about these updates:</p>\n\n<ul><li>Better responsive design. The header is wider on desktop, with the navigation beside the logo. There\u2019s a medium-size breakpoint where the navigation slips under the logo so they can all still appear on the page. Then there\u2019s a smaller breakpoint where the navigation is hidden and replaced with an open/close toggle.</li>\n\t<li>The open/close toggle on the smaller size does <em>not</em> require javascript! It uses the CSS <code><a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/:target\">:target</a></code> pseudo-class selector, so clicking different anchor links shows or hides the navigation. I got that idea from <a href=\"https://shellcreeper.com/full-css-responsive-navigation-toggle-no-javascript/\">this Shellcreeper tutorial</a>.</li>\n\t<li>The main content area is still optimized for text lines about 70-characters long, which is good for readability. However, I wanted the option to make photos wider on larger screens. I pieced together something from various sources so the photos can break out of the main content area and be up to 960 pixels wide. This is best seen on the <a href=\"https://gregorlove.com/channels/photos/\">photos</a> page. Notice the caption text is narrower under each photo. I think this will look really cool in blog posts that include a striking image.</li>\n\t<li>On smaller screens, those images are now full-bleed. No left/right margins.</li>\n</ul><p>In a <a href=\"https://indieweb.org/2020/Austin/newaffordability\">session</a> yesterday we were talking about local communities and discovering content by region, e.g. \u201cshow me all the meetups around San Diego.\u201d As a starting point, I was thinking that <a href=\"https://indieweb.org/microsub\">microsub</a> servers could parse feeds for location information and use that to suggest feeds near your location. I don\u2019t work on a microsub server myself and that\u2019s too big a project for me today, but I was able to easily add location to my homepage if anyone wants to parse it. I used the <a href=\"http://microformats.org/wiki/h-geo\">h-geo microformat</a>.</p>"
},
"author": {
"type": "card",
"name": "gRegor Morrill",
"url": "https://gregorlove.com/",
"photo": "https://gregorlove.com/site/assets/files/3473/profile-2016-med.jpg"
},
"post-type": "article",
"_id": "9204469",
"_source": "179",
"_is_read": true
}
IndieWebCamp Austin day 2 is winding down. I wrapped up my project to show replies on my blog posts and I’ll be demoing it to the group soon, with a blog post to follow later this week. Looking forward to seeing what other folks worked on!
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2020/02/23/indiewebcamp-austin-day.html",
"content": {
"html": "<p>IndieWebCamp Austin day 2 is winding down. I wrapped up my project to show replies on my blog posts and I\u2019ll be demoing it to the group soon, with a blog post to follow later this week. Looking forward to seeing what other folks worked on!</p>",
"text": "IndieWebCamp Austin day 2 is winding down. I wrapped up my project to show replies on my blog posts and I\u2019ll be demoing it to the group soon, with a blog post to follow later this week. Looking forward to seeing what other folks worked on!"
},
"published": "2020-02-23T15:49:01-06:00",
"post-type": "note",
"_id": "9199624",
"_source": "12",
"_is_read": true
}
{
"type": "entry",
"published": "2020-02-23T14:58:00+01:00",
"url": "https://www.jeremycherfas.net/blog/statisfaction",
"name": "Statisfaction",
"content": {
"text": "It is 160 days since I first noted that I would like to make use of Bise, Jason McIntosh's blog-readership reporter, 118 since I automated downloading the access logs. With half an eye on the project day at IndieWebCamp Austin, time to make good on my promise.\nBise expects its log files to be named a certain way, which is not the way mine were named, but that proved relatively easy to overcome with the wonderfully powerful A Better Finder Rename. The latest version has filters that make it possible to rename 1-9 and 10-... , which require slightly different handling, in the same batch, and that makes life super easy.",
"html": "<p>It is 160 days since I first <a href=\"https://www.jeremycherfas.net/blog/seeking-satisfaction-in-statistics\">noted</a> that I would like to make use of Bise, Jason McIntosh's <a href=\"https://fogknife.com/2018-01-03-announcing-bise-a-blog-readership-reporter.html\">blog-readership reporter</a>, 118 since I <a href=\"https://www.jeremycherfas.net/blog/download-and-rename-log-files\">automated downloading</a> the access logs. With half an eye on the project day at <a href=\"https://indieweb.org/2020/Austin\">IndieWebCamp Austin</a>, time to make good on my promise.</p>\n<p>Bise expects its log files to be named a certain way, which is not the way mine were named, but that proved relatively easy to overcome with the wonderfully powerful <a href=\"https://www.publicspace.net/ABetterFinderRename/version11.html\">A Better Finder Rename</a>. The latest version has filters that make it possible to rename 1-9 and 10-... , which require slightly different handling, in the same batch, and that makes life super easy.</p>"
},
"author": {
"type": "card",
"name": "Jeremy Cherfas",
"url": "https://jeremycherfas.net",
"photo": "https://www.jeremycherfas.net/user/themes/tailwind/images/zoot.jpg"
},
"post-type": "article",
"_id": "9190580",
"_source": "202",
"_is_read": true
}
I'd also recommend having a read of https://www.jvt.me/posts/2019/09/28/microformats-licensing/ as there are also legal implications of sharing others' content
{
"type": "entry",
"published": "2020-02-23T10:22:00Z",
"url": "https://www.jvt.me/mf2/2020/02/ofe9z/",
"in-reply-to": [
"https://mblaney.xyz/2020-02-23-fixing_reposts"
],
"content": {
"text": "I'd also recommend having a read of https://www.jvt.me/posts/2019/09/28/microformats-licensing/ as there are also legal implications of sharing others' content",
"html": "<p>I'd also recommend having a read of <a href=\"https://www.jvt.me/posts/2019/09/28/microformats-licensing/\">https://www.jvt.me/posts/2019/09/28/microformats-licensing/</a> as there are also legal implications of sharing others' content</p>"
},
"author": {
"type": "card",
"name": "Jamie Tanna",
"url": "https://www.jvt.me",
"photo": "https://www.jvt.me/img/profile.png"
},
"post-type": "reply",
"_id": "9187369",
"_source": "2169",
"_is_read": true
}
{
"type": "entry",
"published": "2020-02-23T15:13:53+10:00",
"url": "https://mblaney.xyz/2020-02-23-fixing_reposts",
"category": [
"https://news.indieweb.org/en"
],
"name": "fixing reposts",
"content": {
"text": "I received some feedback during the week that creating a full content re-post wasn't ok. I accept that this is a pretty common view, probably the view of the majority of people.\n\n\nBut what to do if you like the idea of full content re-posts? I am more than happy for people to share my writing, but I wouldn't want to re-post content from anyone that would be upset by that happening.\n\n\nI've been thinking about that for the last few days and decided that I would start by checking for a new microformats property called repost-allowed. This is an experimental microformats I've added to Dobrado that can currently have one of three values: full, link or none.\n\n\nIf the property is set to full, the author of the post allows the full content of their post to be reposted. If the property isn't found, or set to link, then a link to the original is shown instead of the content. I also added none in case the author preferred that a re-post wasn't created at all.\n\n\nI'm open to ideas if people think this is useful, or maybe there's a better way? For now I'm going to set repost-allowed to full in my own post templates. I'm ok with just reposting links if no one else adds this markup, though I've made re-posting content from Twitter an exception since that seems to be more acceptable.",
"html": "I received some feedback during the week that creating a full content re-post wasn't ok. I accept that this is a pretty common view, probably the view of the majority of people.<br /><br />\nBut what to do if you like the idea of full content re-posts? I am more than happy for people to share my writing, but I wouldn't want to re-post content from anyone that would be upset by that happening.<br /><br />\nI've been thinking about that for the last few days and decided that I would start by checking for a new microformats property called <strong>repost-allowed</strong>. This is an experimental microformats I've added to <a href=\"https://dobrado.net\">Dobrado</a> that can currently have one of three values: <strong>full</strong>, <strong>link</strong> or <strong>none</strong>.<br /><br />\nIf the property is set to <strong>full</strong>, the author of the post allows the full content of their post to be reposted. If the property isn't found, or set to <strong>link</strong>, then a link to the original is shown instead of the content. I also added <strong>none</strong> in case the author preferred that a re-post wasn't created at all.<br /><br />\nI'm open to ideas if people think this is useful, or maybe there's a better way? For now I'm going to set repost-allowed to full in my own post templates. I'm ok with just reposting links if no one else adds this markup, though I've made re-posting content from Twitter an exception since that seems to be more acceptable."
},
"author": {
"type": "card",
"name": "Malcolm Blaney",
"url": "https://mblaney.xyz",
"photo": "https://mblaney.xyz/public/profile_thumb.png"
},
"post-type": "article",
"_id": "9185532",
"_source": "3708",
"_is_read": true
}
@IndieWebCamp Austin, facilitating a session on All Things Photos.
Everything from taking photos, curating, editing, and posting.
My #indieweb #photo "workflow" involves many incremental steps.
* take photos in the moment, but not post, in order to stay present in whatever I’m actually doing
And then at "in between times" like standing in line, or on transit:
* curate photos, e.g. delete duplicates or non-HDR versions (or keep the non-HDR version if it was sharper, less blurry, or if the HDR versions had weird motion artifacts)
* favorite photos, in the iOS Photos app, that I want to actually consider posting publicly, or perhaps uploading e.g. to a wiki
* edit photos, e.g. rotate & crop, especially favorited photos, to align the horizon, crop out extraneous/distracting things, etc.
* choose a favorited photo from that day as my main photo to post
* write a narrative caption based on that photo
* include more favorited photos if they make sense as part of the narrative
* perhaps seek out more (non-favorited) photos to help illustrate the narrative
* post that photo or multiphoto post (its own process)
* unfavorite the photos I posted, except those I might want to view or show to friends later
I’m looking to simplify my process where I can, as it often takes me up to half an hour to actually get from curating my photos to posting a particular (multi)photo post!
{
"type": "entry",
"published": "2020-02-22 14:30-0800",
"url": "http://tantek.com/2020/053/t7/indiewebcamp-austin-all-things-photos",
"category": [
"indieweb",
"photo"
],
"content": {
"text": "@IndieWebCamp Austin, facilitating a session on All Things Photos. \nEverything from taking photos, curating, editing, and posting.\n\nMy #indieweb #photo \"workflow\" involves many incremental steps.\n* take photos in the moment, but not post, in order to stay present in whatever I\u2019m actually doing\nAnd then at \"in between times\" like standing in line, or on transit:\n* curate photos, e.g. delete duplicates or non-HDR versions (or keep the non-HDR version if it was sharper, less blurry, or if the HDR versions had weird motion artifacts)\n* favorite photos, in the iOS Photos app, that I want to actually consider posting publicly, or perhaps uploading e.g. to a wiki\n* edit photos, e.g. rotate & crop, especially favorited photos, to align the horizon, crop out extraneous/distracting things, etc.\n* choose a favorited photo from that day as my main photo to post\n* write a narrative caption based on that photo\n* include more favorited photos if they make sense as part of the narrative\n* perhaps seek out more (non-favorited) photos to help illustrate the narrative\n* post that photo or multiphoto post (its own process)\n* unfavorite the photos I posted, except those I might want to view or show to friends later\n\nI\u2019m looking to simplify my process where I can, as it often takes me up to half an hour to actually get from curating my photos to posting a particular (multi)photo post!",
"html": "<a class=\"h-cassis-username\" href=\"https://twitter.com/IndieWebCamp\">@IndieWebCamp</a> Austin, facilitating a session on All Things Photos. <br />Everything from taking photos, curating, editing, and posting.<br /><br />My #<span class=\"p-category\">indieweb</span> #<span class=\"p-category\">photo</span> \"workflow\" involves many incremental steps.<br />* take photos in the moment, but not post, in order to stay present in whatever I\u2019m actually doing<br />And then at \"in between times\" like standing in line, or on transit:<br />* curate photos, e.g. delete duplicates or non-HDR versions (or keep the non-HDR version if it was sharper, less blurry, or if the HDR versions had weird motion artifacts)<br />* favorite photos, in the iOS Photos app, that I want to actually consider posting publicly, or perhaps uploading e.g. to a wiki<br />* edit photos, e.g. rotate & crop, especially favorited photos, to align the horizon, crop out extraneous/distracting things, etc.<br />* choose a favorited photo from that day as my main photo to post<br />* write a narrative caption based on that photo<br />* include more favorited photos if they make sense as part of the narrative<br />* perhaps seek out more (non-favorited) photos to help illustrate the narrative<br />* post that photo or multiphoto post (its own process)<br />* unfavorite the photos I posted, except those I might want to view or show to friends later<br /><br />I\u2019m looking to simplify my process where I can, as it often takes me up to half an hour to actually get from curating my photos to posting a particular (multi)photo post!"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "9176734",
"_source": "1",
"_is_read": true
}
Aaron Parecki at IndieWebCamp Austin 2020
{
"type": "entry",
"author": {
"name": null,
"url": "https://herestomwiththeweather.com/",
"photo": null
},
"url": "https://herestomwiththeweather.com/social/2020/02/22/69212/",
"published": "2020-02-22T19:13:32+00:00",
"content": {
"html": "<p>Aaron Parecki at IndieWebCamp Austin 2020</p>",
"text": "Aaron Parecki at IndieWebCamp Austin 2020"
},
"post-type": "note",
"_id": "9175498",
"_source": "246",
"_is_read": true
}
Steve Ivy
Obviously I need to add media uploading to my syndication code #indieweb #goldfrog
http://monkinetic.blog/2020/02/22/txt-fd6090d
{
"type": "entry",
"published": "2020-02-22 08:15:47",
"url": "http://monkinetic.blog/2020/02/22/#txt-3d9af9f",
"content": {
"text": "Obviously I need to add media uploading to my syndication code #indieweb #goldfrog\n\nhttp://monkinetic.blog/2020/02/22/txt-fd6090d",
"html": "<p>Obviously I need to add media uploading to my syndication code <a href=\"http://monkinetic.blog/tag/indieweb\">#indieweb</a> <a href=\"http://monkinetic.blog/tag/goldfrog\">#goldfrog</a></p>\n\n<p><a href=\"http://monkinetic.blog/2020/02/22/txt-fd6090d\">http://monkinetic.blog/2020/02/22/txt-fd6090d</a></p>"
},
"author": {
"type": "card",
"name": "Steve Ivy",
"url": false,
"photo": "http://monkinetic.blog/static/images/sivy_avatar_256.png"
},
"post-type": "note",
"_id": "9174710",
"_source": "4486",
"_is_read": true
}
As of yesterday: https://tantek.com/2020/052/t1/austin-building-pyramid-shape
I’m over halfway thru my 100 days projects:
* take a positive photo
* post something positive
sometimes posted the day after.
More #100days projects: https://indieweb.org/100_days inspired by the100dayproject.com
{
"type": "entry",
"published": "2020-02-22 09:05-0800",
"url": "http://tantek.com/2020/053/t6/over-half-done-100-days-projects",
"category": [
"100days"
],
"content": {
"text": "As of yesterday: https://tantek.com/2020/052/t1/austin-building-pyramid-shape\n\nI\u2019m over halfway thru my 100 days projects: \n* take a positive photo \n* post something positive\nsometimes posted the day after.\n\nMore #100days projects: https://indieweb.org/100_days inspired by the100dayproject.com",
"html": "As of yesterday: <a href=\"https://tantek.com/2020/052/t1/austin-building-pyramid-shape\">https://tantek.com/2020/052/t1/austin-building-pyramid-shape</a><br /><br />I\u2019m over halfway thru my 100 days projects: <br />* take a positive photo <br />* post something positive<br />sometimes posted the day after.<br /><br />More #<span class=\"p-category\">100days</span> projects: <a href=\"https://indieweb.org/100_days\">https://indieweb.org/100_days</a> inspired by <a href=\"http://the100dayproject.com\">the100dayproject.com</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "9173131",
"_source": "1",
"_is_read": true
}
#IndieWebCamp Austin keynote by Pace from the future where:
- We never build the same thing twice
- Nobody gets betrayed
- No more sexual predators
- No more marketing
- No more bad science
- No more capitalism
& it’s all built on #IndieWeb technologies!
{
"type": "entry",
"published": "2020-02-22 08:49-0800",
"url": "http://tantek.com/2020/053/t5/indiewebcamp-austin-keynote-pace",
"category": [
"IndieWebCamp",
"IndieWeb"
],
"content": {
"text": "#IndieWebCamp Austin keynote by Pace from the future where:\n- We never build the same thing twice\n- Nobody gets betrayed\n- No more sexual predators\n- No more marketing\n- No more bad science\n- No more capitalism\n& it\u2019s all built on #IndieWeb technologies!",
"html": "#<span class=\"p-category\">IndieWebCamp</span> Austin keynote by Pace from the future where:<br />- We never build the same thing twice<br />- Nobody gets betrayed<br />- No more sexual predators<br />- No more marketing<br />- No more bad science<br />- No more capitalism<br />& it\u2019s all built on #<span class=\"p-category\">IndieWeb</span> technologies!"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "9173132",
"_source": "1",
"_is_read": true
}
Great first #IndieWebCamp Austin keynote by Natalie on the upsides and downsides of #socialmedia, how she started her #IndieWeb Gratitude Joural @microdotblog, did #DeleteFacebook, yet still posts @Instagram, though with a much more limited circle.
{
"type": "entry",
"published": "2020-02-22 08:47-0800",
"url": "http://tantek.com/2020/053/t4/indiewebcamp-austin-keynote-natalie",
"category": [
"IndieWebCamp",
"socialmedia",
"IndieWeb",
"DeleteFacebook"
],
"content": {
"text": "Great first #IndieWebCamp Austin keynote by Natalie on the upsides and downsides of #socialmedia, how she started her #IndieWeb Gratitude Joural @microdotblog, did #DeleteFacebook, yet still posts @Instagram, though with a much more limited circle.",
"html": "Great first #<span class=\"p-category\">IndieWebCamp</span> Austin keynote by Natalie on the upsides and downsides of #<span class=\"p-category\">socialmedia</span>, how she started her #<span class=\"p-category\">IndieWeb</span> Gratitude Joural <a class=\"h-cassis-username\" href=\"https://twitter.com/microdotblog\">@microdotblog</a>, did #<span class=\"p-category\">DeleteFacebook</span>, yet still posts <a class=\"h-cassis-username\" href=\"https://twitter.com/Instagram\">@Instagram</a>, though with a much more limited circle."
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "9173133",
"_source": "1",
"_is_read": true
}
Live video stream @IndieWebCamp Austin is up!
https://www.twitch.tv/indieweb
Tune in, we’re starting with organizer @manton2, followed by keynotes by Natalie, Pace, and @Aaronpk!
https://www.manton.org/2020/02/10/announcing-the-indiewebcamp.html
#indieweb #openweb #takebackyourweb
{
"type": "entry",
"published": "2020-02-22 07:58-0800",
"url": "http://tantek.com/2020/053/t3/live-video-stream-indiewebcamp-austin",
"category": [
"indieweb",
"openweb",
"takebackyourweb"
],
"content": {
"text": "Live video stream @IndieWebCamp Austin is up!\n\nhttps://www.twitch.tv/indieweb\n\nTune in, we\u2019re starting with organizer @manton2, followed by keynotes by Natalie, Pace, and @Aaronpk!\n\nhttps://www.manton.org/2020/02/10/announcing-the-indiewebcamp.html\n\n#indieweb #openweb #takebackyourweb",
"html": "Live video stream <a class=\"h-cassis-username\" href=\"https://twitter.com/IndieWebCamp\">@IndieWebCamp</a> Austin is up!<br /><br /><a href=\"https://www.twitch.tv/indieweb\">https://www.twitch.tv/indieweb</a><br /><br />Tune in, we\u2019re starting with organizer <a class=\"h-cassis-username\" href=\"https://twitter.com/manton2\">@manton2</a>, followed by keynotes by Natalie, Pace, and <a class=\"h-cassis-username\" href=\"https://twitter.com/Aaronpk\">@Aaronpk</a>!<br /><br /><a href=\"https://www.manton.org/2020/02/10/announcing-the-indiewebcamp.html\">https://www.manton.org/2020/02/10/announcing-the-indiewebcamp.html</a><br /><br />#<span class=\"p-category\">indieweb</span> #<span class=\"p-category\">openweb</span> #<span class=\"p-category\">takebackyourweb</span>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "note",
"_id": "9173134",
"_source": "1",
"_is_read": true
}
@ttrentham here for @IndieWebCamp Austin @CapitalFactory!
Come join us! https://2020.indieweb.org/austin
Kickoff at 10:00, then amazing keynotes, personal site intros, BarCamp sessions!
{
"type": "entry",
"published": "2020-02-22 07:42-0800",
"url": "http://tantek.com/2020/053/t2/",
"in-reply-to": [
"https://twitter.com/ttrentham/status/1231088780544815104"
],
"content": {
"text": "@ttrentham here for @IndieWebCamp Austin @CapitalFactory!\n\nCome join us! https://2020.indieweb.org/austin\n\nKickoff at 10:00, then amazing keynotes, personal site intros, BarCamp sessions!",
"html": "<a class=\"h-cassis-username\" href=\"https://twitter.com/ttrentham\">@ttrentham</a> here for <a class=\"h-cassis-username\" href=\"https://twitter.com/IndieWebCamp\">@IndieWebCamp</a> Austin <a class=\"h-cassis-username\" href=\"https://twitter.com/CapitalFactory\">@CapitalFactory</a>!<br /><br />Come join us! <a href=\"https://2020.indieweb.org/austin\">https://2020.indieweb.org/austin</a><br /><br />Kickoff at 10:00, then amazing keynotes, personal site intros, BarCamp sessions!"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "reply",
"refs": {
"https://twitter.com/ttrentham/status/1231088780544815104": {
"type": "entry",
"url": "https://twitter.com/ttrentham/status/1231088780544815104",
"name": "@ttrentham\u2019s tweet",
"post-type": "article"
}
},
"_id": "9168188",
"_source": "1",
"_is_read": true
}