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
}
Good morning #Austin!
Doors open @IndieWebCamp Austin @CapitalFactory!
@aaronpk is setting up the video, folks are grabbing breakfast tacos, coffee, etc.
Tickets sold out but we made room for 10 more!
Grab one and come by! https://2020.indieweb.org/austin
{
"type": "entry",
"published": "2020-02-22 07:21-0800",
"url": "http://tantek.com/2020/053/t1/doors-open-indiewebcamp-austin",
"category": [
"Austin"
],
"content": {
"text": "Good morning #Austin! \n\nDoors open @IndieWebCamp Austin @CapitalFactory!\n\n@aaronpk is setting up the video, folks are grabbing breakfast tacos, coffee, etc.\n\nTickets sold out but we made room for 10 more!\n\nGrab one and come by! https://2020.indieweb.org/austin",
"html": "Good morning #<span class=\"p-category\">Austin</span>! <br /><br />Doors open <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 /><a class=\"h-cassis-username\" href=\"https://twitter.com/aaronpk\">@aaronpk</a> is setting up the video, folks are grabbing breakfast tacos, coffee, etc.<br /><br />Tickets sold out but we made room for 10 more!<br /><br />Grab one and come by! <a href=\"https://2020.indieweb.org/austin\">https://2020.indieweb.org/austin</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": "9168189",
"_source": "1",
"_is_read": true
}
What a small indieweb. I'm in Austin for IndieWebCamp and another attendee, Brian, is from San Diego and lives in my neighborhood. Another person for the SD meetups!
Edit: fixed name and URL, oops!
{
"type": "entry",
"published": "2020-02-21 19:07-0800",
"url": "https://gregorlove.com/2020/02/what-a-small-indieweb-im/",
"syndication": [
"https://twitter.com/gRegorLove/status/1231053042595717121"
],
"content": {
"text": "What a small indieweb. I'm in Austin for IndieWebCamp and another attendee, Brian, is from San Diego and lives in my neighborhood. Another person for the SD meetups!\n\nEdit: fixed name and URL, oops!",
"html": "<p>What a small indieweb. I'm in Austin for IndieWebCamp and another attendee, <a class=\"h-card\" href=\"https://brianschrader.com/\">Brian</a>, is from San Diego and lives in my neighborhood. Another person for the SD meetups!</p>\n\n<p>Edit: fixed name and URL, oops!</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": "note",
"_id": "9159409",
"_source": "95",
"_is_read": true
}
At the Micro Meetup at Easy Tiger on 6th. 🍻 We did a final walk-through of the IndieWebCamp venue this afternoon. Looking good, excited for tomorrow!
{
"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/21/at-the-micro.html",
"content": {
"html": "<p>At the Micro Meetup at Easy Tiger on 6th. \ud83c\udf7b We did a final walk-through of the IndieWebCamp venue this afternoon. Looking good, excited for tomorrow!</p>",
"text": "At the Micro Meetup at Easy Tiger on 6th. \ud83c\udf7b We did a final walk-through of the IndieWebCamp venue this afternoon. Looking good, excited for tomorrow!"
},
"published": "2020-02-21T17:27:16-06:00",
"post-type": "note",
"_id": "9154453",
"_source": "12",
"_is_read": true
}
Steve Ivy
I added an edit button for Notes on this site and it’s like #twitter only awesome #indieweb
{
"type": "entry",
"published": "2020-02-21 06:58:58",
"url": "http://monkinetic.blog/2020/02/21/#txt-dea0ed8",
"content": {
"text": "I added an edit button for Notes on this site and it\u2019s like #twitter only awesome #indieweb",
"html": "<p>I added an edit button for Notes on this site and it\u2019s like <a href=\"http://monkinetic.blog/tag/twitter\">#twitter</a> only awesome <a href=\"http://monkinetic.blog/tag/indieweb\">#indieweb</a></p>"
},
"author": {
"type": "card",
"name": "Steve Ivy",
"url": false,
"photo": "http://monkinetic.blog/static/images/sivy_avatar_256.png"
},
"post-type": "note",
"_id": "9148323",
"_source": "4486",
"_is_read": true
}
{
"type": "entry",
"published": "2020-02-20T18:02:59-0500",
"url": "https://martymcgui.re/2020/02/20/indieweb-nyc-meetup-2020-02-19-wrap-up/",
"category": [
"IndieWeb",
"meetup",
"HWC",
"NYC",
"wrap-up"
],
"name": "IndieWeb NYC Meetup 2020-02-19 Wrap-Up",
"content": {
"text": "IndieWeb NYC's meetup for February 2020 met at Think Coffee on Mercer St on January 25th around 2pm.\n Here are some notes from the meeting!\n\n jmac.org \u2014 Is now in NYC for the foreseeable! Looking forward to more IndieWeb events in NYC. Put up a \"Now\" page in December, and ended up chatting with the person who recently started the trend of making Now pages. Has been dusting off his Perl modules like Web::Mention and Web::Microformats. Also has some publisher interest and a draft outline for an introductory book on Webmention!\n\ndmitri.shuralyov.com \u2014 Has wrapped up his work on building IndieAuth into his site so that other folks can log in using their own domain as their identity. He's now getting back to making improvements to his Go projects issue tracker. The first step there is to pull his projects off the\npublic version of his issue tracker into a new private one so he can iterate on it quickly without affecting other users. He's also been playing with various databases available to Go and is leaning towards not worrying about selecting one now. Instead: keep content in memory and don't let your server process die. \ud83d\ude02\n\n filippo.io \u2014 First time at an IndieWeb event! His day job is security for the Go language project. At the meetup tonight he added links to his site to enable RelMeAuth, which let him log into Dmitri's website using his own website as his identity!\n\n\n aaronparecki.com \u2014 Spent lots of time getting his new open source events service Meetable in shape to be as easy as possible to install. He built configuration wizards to help walk through the setup process on shared hosting, and automated away even more of the work when you launch it on Heroku! Aaron also recently updated his /photos to include captions when you hover over them. This helps them show up correctly on micro.blog so he can be part of the February photo challenge. Aaron also showed off SIMTRACKER \u2014 a WiFi e-Ink badge he's been working on that pulls an automatically-generated image off his website to summarize his recent activity, including food, drink, sleep, time away from home, phone battery, and more. Oh, and he published a new book \ud83d\ude0f.\n\n\n martymcgui.re \u2014 Not a lot of work on his own site, but recently built a single-use \"random job placement\" website for a friend who is launching a book about an absurd journey through temporary work. Marty complained that the work he did on indieweb.nyc was largely made obsolete by Aaron's excellent Meetable project \u2014 folks can follow IndieWeb Events in NYC on events.indieweb.org/tag/nyc/. He has hopes to continue working on the project site, eventually getting live updates from Meetable. At the meeting Marty set up a copy of Meetable with Aaron's help, largely to test out the setup workflow, but maybe to post improv shows... Marty also wants to improve, document, and encourage folks to build on the Microsub-powered photo frame he built on an Adafruit PyPortal so long ago, particularly how he got the low-powered touchscreen device to work with IndieAuth through an IndieAuth Device Flow Proxy.\n\nOther topics of discussion:\n\n!!con (Bang Bang Con) is happening May 9th-10th in NYC. The call for proposals for 10 minute lightning talks is open! Proposing a talk means you're guaranteed a ticket to the event!\n We may try new venues for IndieWeb NYC meetups, including Columbia University (near Broadway and 125th St) and the Ability Project at NYU (Brooklyn near MetroTech).\n Filippo doesn't like JSON Web Tokens, publicly, because they are too easy to configure insecurely. Aaron warns that they are getting baked deep into a new draft of some OAuth spec. \ud83d\ude2c\n Some discussion was had about verifying two-way links between your homepage and your silo account for RelMeAuth. When making indielogin.com, Aaron decided to verify that the silo account links back after the user has logged in to their account \u2014 primarily because using the silo's API is so much more reliable than trying to scrape their silo profile information.\n Is This Week in the IndieWeb Audio Edition coming back? Not right now, but Marty reminds everyone that he documented in detail how he summarized the newsletter content into a podcast script each week. Reading all the updates and making the summaries is the most time-consuming part of making the podcast. Perhaps some tooling and collaborators could make this process more incremental as new articles, events, and wiki content appear?\n Aaron walked Marty through the process of setting up a new instance of Meetable on Heroku and it went pretty dang smoothly, though there was one server error speedbump. There's already a GitHub issue for it.\n Maybe Aaron will work on making IndieLogin easy to self-host, soon??\n Aaron recently experienced a weird bug with yellow streaking in low-light photos on his iPhone. Searching around indicated that other people had experienced the same thing ... and that it went away with the latest software update. Strange errors in HDR processing? It's weird that cameras are computers.\n Everybody loves WireGuard as a magic-feeling VPN tunnel thing. Aaron recently got it working on his home network without running the WireGuard software on his router(s). He plans to write this up soon!\nLeft-to-right: filippo.io, dmitri.shuralyov.com, jmac.org, martymcgui.re, aaronparecki.com\n Thanks to all who came out! We will see you all again in March! Keep an eye on indieweb.nyc for the exact date, time, and location! You can subscribe to the calendar there to receive automatic updates!",
"html": "<p><a href=\"https://events.indieweb.org/2020/02/indieweb-meetup-nyc-GSlzpBwleWLT\">IndieWeb NYC's meetup for February 2020</a> met at Think Coffee on Mercer St on January 25th around 2pm.</p>\n<p> Here are some notes from the meeting!</p>\n<p>\n jmac.org \u2014 Is now in NYC for the foreseeable! Looking forward to more IndieWeb events in NYC. Put up a \"<a href=\"https://indieweb.org/Now\">Now</a>\" page in December, and ended up chatting with the person who recently started the trend of <a href=\"https://nownownow.com/\">making Now pages</a>. Has been dusting off his <a href=\"https://metacpan.org/author/JMAC\">Perl modules</a> like Web::Mention and Web::Microformats. Also has some publisher interest and a draft outline for an introductory book on <a href=\"https://indieweb.org/Webmention\">Webmention</a>!\n</p>\n<p>dmitri.shuralyov.com \u2014 Has wrapped up his work on building IndieAuth into his site so that other folks can log in using their own domain as their identity. He's now getting back to making improvements to his Go projects issue tracker. The first step there is to pull his projects off the\npublic version of his issue tracker into a new private one so he can iterate on it quickly without affecting other users. He's also been playing with various databases available to Go and is leaning towards not worrying about selecting one now. Instead: keep content in memory and don't let your server process die. \ud83d\ude02</p>\n<p>\n filippo.io \u2014 First time at an IndieWeb event! His day job is security for the Go language project. At the meetup tonight he added links to his site to enable <a href=\"https://indieweb.org/RelMeAuth\">RelMeAuth</a>, which let him log into Dmitri's website using his own website as his identity!\n</p>\n<p>\n aaronparecki.com \u2014 Spent lots of time getting his new open source events service <a href=\"https://meetable.org/\">Meetable</a> in shape to be as easy as possible to install. He built configuration wizards to help walk through the setup process on shared hosting, and automated away even more of the work when you launch it on <a href=\"https://heroku.com/home\">Heroku</a>! Aaron also recently updated his <a href=\"https://aaronparecki.com/photos\">/photos</a> to include captions when you hover over them. This helps them show up correctly on micro.blog so he can be part of the <a href=\"https://micro.welltempered.net/2020/01/31/february-photoblogging-challenge.html\">February photo challenge</a>. Aaron also showed off SIMTRACKER \u2014 a WiFi e-Ink badge he's been working on that pulls an automatically-generated image off his website to summarize his recent activity, including food, drink, sleep, time away from home, phone battery, and more. Oh, and he <a href=\"https://www.goodreads.com/book/show/51083745-the-little-book-of-oauth-2-0-rfcs\">published a new book</a> \ud83d\ude0f.\n</p>\n<p>\n martymcgui.re \u2014 Not a lot of work on his own site, but recently built a <a href=\"https://temporary-jobs.hilaryleichter.com/\">single-use \"random job placement\" website</a> for a friend who is <a href=\"https://www.hilaryleichter.com/book\">launching a book</a> about an absurd journey through temporary work. Marty complained that the work he did on <a href=\"https://indieweb.nyc/\">indieweb.nyc</a> was largely made obsolete by Aaron's excellent Meetable project \u2014 folks can follow <a href=\"https://events.indieweb.org/tag/nyc\">IndieWeb Events in NYC on events.indieweb.org/tag/nyc/</a>. He has hopes to continue working on the project site, <a href=\"https://github.com/aaronpk/Meetable/issues/80\">eventually getting live updates from Meetable</a>. At the meeting Marty set up a copy of Meetable with Aaron's help, largely to test out the setup workflow, but maybe to post improv shows... Marty also wants to improve, document, and encourage folks to build on the <a href=\"https://martymcgui.re/2019/03/29/153239/\">Microsub-powered photo frame</a> he built on an Adafruit PyPortal so long ago, particularly how he got the low-powered touchscreen device to work with IndieAuth through an <a href=\"https://glitch.com/~veil-mirror\">IndieAuth Device Flow Proxy</a>.\n</p>\n<p>Other topics of discussion:</p>\n<ul><li>\n<a href=\"http://bangbangcon.com/\">!!con (Bang Bang Con)</a> is happening May 9th-10th in NYC. The call for proposals for 10 minute lightning talks is open! Proposing a talk means you're guaranteed a ticket to the event!</li>\n <li>We may try new venues for IndieWeb NYC meetups, including Columbia University (near Broadway and 125th St) and the Ability Project at NYU (Brooklyn near MetroTech).</li>\n <li>Filippo doesn't like <a href=\"https://indieweb.org/JWT\">JSON Web Tokens</a>, publicly, because they are too easy to configure insecurely. Aaron warns that they are getting baked deep into a new draft of some OAuth spec. \ud83d\ude2c</li>\n <li>Some discussion was had about verifying two-way links between your homepage and your silo account for RelMeAuth. When making <a href=\"https://indielogin.com/\">indielogin.com</a>, Aaron decided to verify that the silo account links back <i>after</i> the user has logged in to their account \u2014 primarily because using the silo's API is so much more reliable than trying to scrape their silo profile information.</li>\n <li>Is <a href=\"https://indieweb.org/TWITIWAE\">This Week in the IndieWeb Audio Edition</a> coming back? Not right now, but Marty reminds everyone that he documented in detail how he <a href=\"https://indieweb.org/User:Martymcgui.re/this-week-indieweb-podcast\">summarized the newsletter content into a podcast script</a> each week. Reading all the updates and making the summaries is the most time-consuming part of making the podcast. Perhaps some tooling and collaborators could make this process more incremental as new articles, events, and wiki content appear?</li>\n <li>Aaron walked Marty through the process of setting up a new instance of Meetable on Heroku and it went pretty dang smoothly, though there was one server error speedbump. There's already a <a href=\"https://github.com/aaronpk/Meetable/issues/76\">GitHub issue for it</a>.</li>\n <li>Maybe Aaron will work on making <a href=\"https://github.com/aaronpk/indielogin.com\">IndieLogin</a> easy to self-host, soon??</li>\n <li>Aaron recently experienced a weird bug with yellow streaking in low-light photos on his iPhone. Searching around indicated that other people had experienced the same thing ... and that it went away with the latest software update. Strange errors in HDR processing? It's weird that cameras are computers.</li>\n <li>Everybody loves <a href=\"https://www.wireguard.com/\">WireGuard</a> as a magic-feeling VPN tunnel thing. Aaron recently got it working on his home network <em>without</em> running the WireGuard software on his router(s). He plans to write this up soon!</li>\n</ul><img src=\"https://media.martymcgui.re/d7/e3/5e/25/5b969d44c2ff193f83f8482358e4727c62f8ff50fb83f39b2ac0a103.jpg\" alt=\"5 attendees smile at the camera, huddled around a small table with laptops on it in a busy coffee shop\" />Left-to-right: filippo.io, dmitri.shuralyov.com, jmac.org, martymcgui.re, aaronparecki.com<p>\n Thanks to all who came out! We will see you all again in March! Keep an eye on <a href=\"https://indieweb.nyc/\">indieweb.nyc</a> for the exact date, time, and location! You can subscribe to the calendar there to receive automatic updates!\n</p>"
},
"author": {
"type": "card",
"name": "Marty McGuire",
"url": "https://martymcgui.re/",
"photo": "https://martymcgui.re/images/logo.jpg"
},
"post-type": "article",
"_id": "9127680",
"_source": "175",
"_is_read": true
}