#dev 2016-08-05

2016-08-05 UTC
KevinMarks, tantek, gRegorLove, KevinMarks_, KevinMarks__ and cweiske joined the channel
#
cweiske.de
edited /User:Cweiske.de (+59) "link commentpara.de"
(view diff)
#
cweiske.de
edited /IndieAuth (-232) "/* Supporting Sites */ remove aaronparecki and monocle"
(view diff)
#
cweiske.de
edited /IndieAuth (+73) "/* Details */ mention commentpara.de"
(view diff)
KevinMarks joined the channel
#
cweiske.de
created /Category:Software (+31) "Created page with "Software used in the indie web.""
(view diff)
#
cweiske.de
created /commentpara.de (+470) "Created page with "[[Category:Software]] https://commentpara.de/ is an anonymous commenting system for the indieweb. It allows login with a free-to-type name and avatar image, and comments under t...""
(view diff)
loicm joined the channel
#
kodfabrik.se
edited /static-site (+13) "Adding link to Jekyll page"
(view diff)
tantek and loicm joined the channel
tantek and loicm joined the channel
#
GWG
I feel a slow down in my Indieweb work this week. I may need to put it aside and work on something else for a bit.
#
GWG
I was hoping to have something to show at NYC 2
#
tantek
GWG, you can help with outreach for IWC NYC2!
#
tantek
now is the critical time for that - the 2-3 weeks out time period
#
tantek
where especially people in NYC tend to stabilize their plans
#
GWG
tantek, I don't know anyone
#
tantek
GWG, that's not true
#
tantek
you know all previous participants in IWC NYC
#
tantek
from 2014
#
GWG
I reached out to Zach Donovan and Jeremy Zilar.
#
tantek
reach out to them not only directly, but also for recommendations of who else you should contact
#
tantek
chat with bear and get his recommendations too
#
GWG
Considering neither of them wrote back, I think I should follow up again
#
tantek
GWG - there's also the outreach section on the planning page of people to reach out to
#
tantek
GWG, yes, keep following up with them every other day at this point until you get a response
#
GWG
I still need to know how many rooms we will have.
#
tantek
GWG - also reach out to Emma via email and enlist her help in outreach
#
GWG
I don't have it
#
tantek
will pm you
#
GWG
Thanks
#
tantek
hey GWG I couldn't find an email so using FB chat for now
#
tantek.com
edited /2016/NYC2/Planning (+86) "reached out to Micah"
(view diff)
#
tantek
GWG, also reach out to KevinMarks to help with outreach
#
tantek
he knows enough people on Twitter that a personal invitation goes a long way
#
tantek.com
edited /indiewebcamp.com (+33) "note domain change too"
(view diff)
#
petermolnar
GWG re: yesterday's WP HTML output question; you could trigger a wp cron call that calls the url and captures the output, which circumvents the output buffering, but it's even more ugly :D
KevinMarks joined the channel
#
KevinMarks
Can you hook the various callbacks and build your own state stack?
#
KevinMarks
So you can know when you're in entry, comment etc?
#
petermolnar
that, you can; the problem is that apart from actually visiting the URL you can't get the HTML output
#
KevinMarks
Ah, you can't know what other plugins have done to it?
KevinMarks joined the channel
#
loqi.me
created /hello.com (+83) "prompted by petermolnar and dfn added by petermolnar"
(view diff)
#
petermolnar
KevinMarks the content if fine; the trouble is with the header and the footer. You can do a full page export from the theme rather easily, but to trigger the save you need to visit the URL; I haven't found any other way (yet)
#
aaronparecki.com
edited /site-deaths (+311) "/* 2009 */ hello.com"
(view diff)
tantek joined the channel
#
tantek
interesting about that site-death quote - it could link to the site-deaths for Picasa and OpenSocial
#
tantek
aaronpk:
#
tantek.com
edited /OpenSocial (+23) "see also site-deaths"
(view diff)
#
tantek.com
edited /site-deaths (+342) "/* 2014 */ OpenSocial"
(view diff)
#
tantek.com
edited /site-deaths (+28) "/* 2009 */ typo, link Hello's shutdown message refs to Picasa and OpenSocial to their own site-death entries"
(view diff)
#
tantek
Remember all those dead silos? IndieWeb remembers indieweb.org/site-deaths
#
tantek
aww no meme Loqi?
KevinMarks_, gRegorLove and cweiske joined the channel
#
cweiske
is a micropub server hard linked with a token server? I don't see a way to determine which token server to validate the bearer token at when a micropub request comes in
#
aaronpk
yeah it's up to the micropub server to decide what token server it wants to use
#
cweiske
but the token that the MP server gets is issued by the token server the user chose
#
aaronpk
the user also chose the micropub endpoint
#
cweiske
but the user is not free to choose his token server when the MP server dictates which to use
#
cweiske
so what's the reason for splitting those two links on the user's home page at all?
#
aaronpk
it means a client uses the same discovery mechanism for all 3
#
aaronpk
otherwise the client would have to do something different to ask the micropub endpoint which token endpoint to use
#
aaronpk
tho i am curious if there's a demonstrated need for that
#
aaronpk
there's one potential use case, trying to find it on the wiki
#
cweiske
and those different MP endpoints will probably require different token servers
#
cweiske
why should a MP server dictate which token endpoint to use?
#
aaronpk
they feel tightly coupled to me, mostly from a security standpoint
#
aaronpk
if i'm writing a micropub endpoint, i wouldn't be comfortable trusting token verification to an unknown service
#
cweiske
this means that I cannot post anything anymore when my MP endpoint provider switches token servers
#
cweiske
and there is no official way to find out which token server the MP endpoint wants
KevinMarks joined the channel
#
aaronpk
Correct. Changing token servers is like changing what method you use to create and verify tokens
#
aaronpk
i changed mine in the rewrite of my site, had to log in to all the apps again, but not a big deal
#
aaronpk
later i changed the method my server uses to create tokens but I made it validate the previous tokens too
#
cweiske
aaronpk, it's not necessarily I who decides to change the token server, but some MP service provider that I happen to use
#
cweiske
and which provides a MP-to-git service or so
#
cweiske
so if my MP service provider decides to change token servers, I have to change the link on my homepage, too
#
aaronpk
Yeah it would be irresponsible of them to change it without warning you ahead of time
#
aaronpk
they could also change it as long as they know how to verify already existing tokens at the old token endpoint
#
cweiske
but it gets clear that *I* am not free to choose the token server, so I don't see that I should have to publish the token server link on my homepage
#
aaronpk
also the MP server might not use the token verification API at all and just have a previous arrangement with the token endpoint like a shared encryption secret
#
aaronpk
yeah it's part of the MP endpoint really. Part of choosing a MP endpoint is putting two tags on your home page
#
aaronpk
I get what you're saying, I just don't see it as a problem especially since it makes it easier for the client to only have one method to discover all three endpoints
#
cweiske
on the indieauth wiki page one of the advantages against openid was that you only have to add *one* tag to your homepage, not two like for openid
#
aaronpk
heh true
#
aaronpk
except that one tag was just for the ID part, not for posting to your site
KevinMarks and tantek joined the channel
#
gregorlove.com
edited /hello.com (+104) "improve dfn, link with Orkut"
(view diff)
#
gRegorLove
what is hello.com?
#
Loqi
hello.com is an app-based social silo founded by Orkut Buyukkokten (Orkut) and a small group of ex-Google engineers https://indieweb.org/hello.com
#
@jy
. @jy will probably couple this with Webmention for notification https://webmention.rocks
(twitter.com/_/status/761662502358945793)
tantek, pfefferle and KevinMarks joined the channel
#
gregorlove.com
edited /hello.com (+849) "History"
(view diff)
#
gRegorLove
Probably not that important since it's always been about downloadable software / p2p sharing, but there's some history ^
#
gRegorLove
My curiosity is satisfied for now. :)
#
gregorlove.com
edited /hello.com (+176) "/* History */ current"
(view diff)
#
gregorlove.com
edited /Picasa (+1) "past tense"
(view diff)
tantek and KevinMarks joined the channel