#indiewebcamp 2015-11-06

2015-11-06 UTC
tantek, kerozene, snarfed1, snarfed and Calli joined the channel
#
aliasd
kevinmarks, it was from the IRC page on the wiki
#
kevinmarks
ah thanks, we should fix that link
#
gRegorLove
Tantek fixed it
[shaners] joined the channel
#
[shaners]
what is h-event
#
Loqi
h-event is the microformats2 vocabulary for marking up an event post on web sites https://indiewebcamp.com/h-event
#
[shaners]
what is event?
#
Loqi
An event is a type of post that in addition to a post name (event title) has a start datetime (likely end datetime), and a location https://indiewebcamp.com/event
#
[shaners]
Should an event post in a feed be marked up as both an `.h-entry` and an `.h-event` or just as an `.h-event` ?
#
[shaners]
tantek: remember way back when we talked about the use of `-as-` prefixes to indicated post type (strictly for styling)? Which did we end up liking better?
#
[shaners]
`h-as-photo` or `as-photo` or `p-as-photo`?
#
tantek
we ditched it all
#
tantek
explicitly typed posts tend to be a side-effect of plumbing-centric design, because modern UIs ditch explicit post typing in general
#
tantek
the "what should an event be in an h-feed" question is still open
#
tantek
I'm leaning towards an h-feed has a children[] collection of all its h-* direct descendants in the order they are in, and thus an h-feed can be composite of any h-* objects
#
tantek
thus to answer your specific question, just an h-event inside your h-feed
#
tantek
now we'll have to see how current /reader implementations handle that :)
#
tantek
the interesting thing is that an h-feed can have some items that have a dt-published and others that are just "exist" like an h-event, and that have other datetime relevance
#
tantek
hmm - perhaps I should nest my events box on my home page *inside* my h-feed
mlncn joined the channel
#
tantek
just to follow-through on this (selfdogfood)
#
[shaners]
kylewm: where is the `type` attr coming from?
#
kylewm
good q, I think right now it's just hard-coded to "event" or "entry", but I should make it use post type discovery
#
gRegorLove
I have h-feeds of h-events here: http://gregorlove.com/events/
#
[shaners]
is that the `h-*` with `h-` trimmed off?
#
kylewm
[shaners]: no, it's worse than that :( but i can make it better with https://github.com/kylewm/mf2util/blob/master/mf2util.py#L287
#
[shaners]
So from a CSS perspective, yall that have both `h-entry` and `h-event` posts in one feed, what are you using for your selector to style both types?
#
[shaners]
.h-entry, .h-event { }
#
gRegorLove
I also have dt-published even though that's not listed as a property of h-event. I've thought about hiding it if it's published after the event, since I will be backfilling many events.
#
[shaners]
what is title?
#
Loqi
It looks like we don't have a page for "title" yet. Would you like to create it? https://indiewebcamp.com/s/106B
#
[shaners]
what is subtitle?
#
tantek
all my h-events are direct children of my h-feed :D
#
gRegorLove
[shaners]: I don't style them differently currently, but I have .note on the same element as the .h-entry and .h-event.
#
kylewm
isn't there a wiki page about the evils of styling based on mf2 classes?
#
gRegorLove
I'm avoiding styling any mf2 properties
#
[shaners]
wait what? really?
#
gRegorLove
What are the evils of styling based on mf2 classes?
#
Loqi
It looks like we don't have a page for "evils of styling based on mf2 classes" yet. Would you like to create it? https://indiewebcamp.com/s/106C
#
gRegorLove
Guess not kylewm :)
#
[shaners]
hahaha.
#
tantek
title is a horribly overloaded term that nearly always means something more presentational than semantic (which is why you should use name instead), except in vCard where it means job-title, which is what h-card uses instead.
#
loqi.me
created /title (+252) "prompted by [shaners] https://indiewebcamp.com/irc/2015-11-05/line/1446771549562 and dfn added by tantek"
(view diff)
#
kylewm
http://indiewebcamp.com/irc/2015-01-10#t1420909434152 "I made a point of never adding css rules to microformat classes"
#
gRegorLove
I haven't through through it a lot, it just kind of felt better to use more specific, semantic class names for styling
#
gRegorLove
And to avoid complicated cascading
#
tantek.com
edited /description (+28) "dfns, period"
(view diff)
#
tantek
I have some experience with doing both
#
[shaners]
both what, t?
#
[shaners]
the two things gregorlove said?
#
tantek
both styling mf2 classes and not
#
tantek
short answer: for a one-off site you don't expect to update much, go ahead an style the mf2 classes instead of complicating your code with more classes. for a site you expect to be "living", figure out the site-specific semantics of your blocks of content, create class names accordingly, and style those *instead of* styling mf2 classes.
#
tantek
s/an style/and style
#
Loqi
tantek meant to say: short answer: for a one-off site you don't expect to update much, go ahead and style the mf2 classes instead of complicating your code with more classes. for a site you expect to be "living", figure out the site-specific semantics of your blocks of content, create class names accordingly, and style those *instead of* styling mf2 classes.
#
[shaners]
interesting
#
tantek
that is what experience has shown to work better
#
[shaners]
re: title/subtitle, here’s a random Medium post.
#
tantek
but of course you're welcome to try styling mf2 classes directly on a "living" site and see if you run into the same issues that others of us have - you might not - and you might figure out a way to do it sensibly / maintainable
#
tantek
s/maintainable/maintainably
#
Loqi
tantek meant to say: but of course you're welcome to try styling mf2 classes directly on a "living" site and see if you run into the same issues that others of us have - you might not - and you might figure out a way to do it sensibly / maintainably
#
[shaners]
Would you say that that:
#
[shaners]
p-name: Millennials Got A Raw Deal With Social Media
#
[shaners]
p-description: Essena O’Neill quitting social media is making a splash. And why wouldn’t it? It speaks to something we inherently knows is true. Social Media is mediated. It is a farce.
#
tantek
nah that's a summary.
#
tantek
as a first paragraph should be, per journalistic / good writing practices
#
tantek
this is why "title" and "subtitle" are nearly useless
#
tantek
actual meaning is rarely either of them
#
tantek
they're essentially presentational terms
#
[shaners]
Is "Taste the splendor of the Bobby Jindal” a summary?
#
tantek
more like an h2
#
[shaners]
Would p-name include it?
#
tantek
it could
#
tantek
up to you
#
tantek
as publisher
#
[shaners]
I *am* wrapping both “title” and “subtitle” in a .p-name.
#
tantek
yep - only matters what you're calling a name. the title/subtitle distinction is mostly presentational, just current styling
#
[shaners]
But it feels like they should be separateable
#
tantek
aside that medium article on millenials is meh. and underestimates millenials adapting to social media.
#
tantek
shaners - not for any real world use-case
#
tantek
other than presentation
#
tantek
hence, presentational, separate them in your CSS, done.
#
kylewm
how would you mark up "Bad Lieutenant: Port of Call New Orleans"?
#
tantek
what is that? ;)
#
Loqi
That! (or "that ^" or "that ^^^") is a rarely seen reply often emphasizing agreement with a This post, but sometimes[1] merely emphasizing agreement with a previous reply https://indiewebcamp.com/that
#
kylewm
title + subtitle
#
kylewm
I was thinking what's the difference between a subtitle and a tag line, and that's the first subtitle movie that popped into my head :)
#
[shaners]
To me: this is:
#
[shaners]
p-name: "Rorschach and Roomba: The Great Drowning”
#
[shaners]
p-x-title: "Rorschach and Roomba”
#
[shaners]
p-x-subtitle: "The Great Drowning”
#
tantek
nah - not x- because not worth experimenting with - it's already a bad idea to standardize something mostly presentational
#
tantek
p-shaners-* if you like ;)
#
tantek
or just shaners-title, shaners-subtitle for styling purposes
#
[shaners]
p-hs-* then
#
tantek
because no reason to pollute the parsed data with them
#
[shaners]
the presentation is part of the user experience though, imo. for example,
#
tantek
basically I'm at the point where don't bother to spend time figuring out markup for something unless you have a real world consuming code use-case
#
tantek
and so far, that doesn't exist for title subtitle etc.
#
[shaners]
it’s chicken and egg (that i’m about to explain)
#
tantek
except for styling with CSS - so for that just add "normal" class names
#
[shaners]
aaronpk: publishes a post
#
tantek
yeah no - there's enough experience in this space that I don't believe that
#
tantek
blogs have been around a while - long enough
#
tantek
also - it goes in the OPPOSITE direction of trends
#
tantek
blog posts with names/title -> tweets/notes/status WITHOUT names/titles
#
tantek
1 -> 0
#
tantek
not 1 -> 2
#
tantek
also - note that Atom *had* a subtitle element, and how many Feed Readers did anything with it? ZERO. ergo, failure, ignorable.
snarfed1 joined the channel
#
[shaners]
i post a reply to it a reply to apk’s post. my post has (what i present as) a title and subtitle. if subtitle isn’t marked up in a parseable way, when apk shows my post as a reply it won’t contain the subtitle. Or it’ll have the subtitle mushed into the name with its styling. (that could make for a looooong name).
#
[shaners]
If no one is publishing subtitles, no one can do anything with them. and vice versa.
#
gRegorLove
Or subtitle could just be part of the *-content
#
tantek
shaners - I'm sure there were huge hypothetical arguments for putting "subtitle" into Atom, so they put it in.
#
[shaners]
tantek: re atom subtitle, was anyone publishing subtitle from their CMSes? or did the spec just provide the properiy?
#
tantek
In practice, no one cared.
#
tantek
I have no desire to rehash that theory -> dead feature discussion / outcome.
#
[shaners]
s/properiy/property/
#
Loqi
[shaners] meant to say: tantek: re atom subtitle, was anyone publishing subtitle from their CMSes? or did the spec just provide the property?
#
gRegorLove
Breakin' 2: Electric Boogaloo is a better movie with subtitle example :)
#
tantek
in practice the whole thing is just the name
#
tantek
shaners - doesn't matter - essentially you're following the same path as those that wanted "subtitle" in the spec.
#
tantek
you're arguing for just provide the property
#
kylewm
electricboogaloo--
#
Loqi
electricboogaloo has -1 karma
#
tantek
wat the wat
#
[shaners]
tantek: did anyone ever publish subtitles? did any CMSes provide a subtitle field? (that you remember?)
snarfed joined the channel
#
tantek
shaners - it was such a big hypothetical that HTML5 originally had an <hgroup> element (that even I thought was a good idea!)
#
tantek
for grouping h1/h2 that were title/subtitle
#
tantek
in practice - no one cared
#
[shaners]
I LOVED HGROUP!
#
[shaners]
:disappointed:
#
[shaners]
I used the heck out of it. Until it was ripped from my hands...
#
tantek
I used it a few times. Then realized I didn't use it very often. Then realized I was an exception in using it at all. Then I learned to stop worrying and love minimal markup.
#
tantek
less is more
#
acegiak
anyone else attach a url to their twitter posse posts? I occasionally get annoyed at having 22 characters I can't use because of it but it feels weird not to
#
[shaners]
¯\_(ツ)_/¯
snarfed1 joined the channel
#
snarfed1
acegiak: many of us have dropped links in posse posts/tweets in favor of syndication urls in the original posts
#
acegiak
snarfed, still link back if the content is >140 chars?
#
snarfed1
sorry? i don't follow
#
snarfed1
personally i haven't include backlinks in posse posts in a long time, mainly for aesthetic reasons/personal preference
#
snarfed1
we should add some balance to https://indiewebcamp.com/posse-post-discovery#Tradeoffs . i don't think it reflects actual behavior in the community. we're pretty split on this in general right now
#
Loqi
definitely
#
acegiak
snarfed: if you have to truncate a post for twitter's character limit do you link back to the original then?
#
snarfed
i never truncate tweets
#
kylewm
i link back if the text is truncated, no link if it's not
#
kylewm
(which supports all three behaviors actually)
#
snarfed.org
edited /posse-post-discovery (+584) "/* Tradeoffs */ more balance"
(view diff)
#
snarfed
everyone who does or doesn't include backlinks in tweets and other POSSE posts, please review and add yourself? ^^
#
tantek
lol feels strongly
#
snarfed
sorry, i should have asked before using that wording
#
tantek
snarfed++ for adding examples of multiple approaches!
#
snarfed
i can remove or revise if you want?
#
Loqi
snarfed has 164 karma
#
tantek
just thought it was funny because it was such an obviously true historical characterization ;)
#
snarfed
heh ok
#
snarfed
i thought so too, but still i shouldn't put words in your mouth :P
#
kylewm
actually I've started including (permalink) on all Facebook POSSE copies
#
kylewm
because I don't trust posse post discovery to work on them :p
#
tantek.com
edited /posse-post-discovery (+118) "document my split behavior so far"
(view diff)
#
tantek
I want FB viewers to know that there is a world outside FB
#
tantek
every single time they read a post
#
tantek
^^^ hmm maybe that qualifies as "feels strongly" ;)
#
kylewm
lol I was going to say something similar
#
kylewm
or how about: Facebook posts are already ugly and buried in a sea of noise, so a little more noise doesn't hurt
warden joined the channel
#
aaronparecki.com
edited /posse-post-discovery (+34) "explicit headers"
(view diff)
#
snarfed.org
edited /posse-post-discovery (+32) "/* Tradeoffs */"
(view diff)
#
kylewm.com
edited /posse-post-discovery (+38) "/* Tradeoffs */ FB/Twitter behavioral split"
(view diff)
tantek joined the channel
#
tantek
anyone see this talk? or know of video of it? https://twitter.com/calum_ryan/status/649861847907176448
ttepasse, danlyke_ and [kevinmarks] joined the channel
#
[kevinmarks]
The atom subtitle was used for the blog/feed not the posts
#
[kevinmarks]
I think summary is a decent use for the extra line under the name, yes.
warden, shiflett and KartikPrabhu1 joined the channel
#
[kevinmarks]
Feed has subtitle, entry has summary in atom https://tools.ietf.org/html/rfc4287#section-4.1.1
#
[kevinmarks]
For me it makes sense for h-feed to have summary for consistency
#
[kevinmarks]
The name/summary/content split is a good pattern to use in general
paroneayea and yakker joined the channel
#
rhiaro.co.uk
edited /2015/MIT/Schedule (+10) "sunday lunch"
(view diff)
warden, snarfed, wolftune and arlen joined the channel
#
@rhiaro
@natematias hey! You/people you know (eg @medialab) interested in decentralised social web hackathon this wkend? https://indiewebcamp.com/2015/MIT
(twitter.com/_/status/662519492707160064)
lukebrooker, warden, e-lima, loic_m, friedcell, Jihaisse, cweiske, fkooman and Lancey_ joined the channel
#
@grthomas2014
updated version of Awaken now live on kindle.Angels&daimons &everything in between http://www.amazon.com/dp/B016ZK8SZC #bookrelease #YA #indieauth
(twitter.com/_/status/662556167722266624)
petermolnar joined the channel
#
@webrocker
@bastianallgeier next step: kriminalisierung von trackmenot, proxy, ownyourdata initiativen. resultat: mehr leute wandern ins darknet etc1/2
(twitter.com/_/status/662559618397261824)
ttepasse, tvn, M-kegan, lukebrooker, j4y_funabashi, Lancey__, Lancey_, sparverius, friedcell, hs0ucy, KartikPrabhu, mlncn and nitot joined the channel
#
Loqi
[bridgy] J. Nathan Matias replied '@rhiaro I'll circulate info. Thanks!' to a tweet that linked to https://indiewebcamp.com/2015/MIT (https://twitter.com/natematias/status/662629681863245824)
KartikPrabhu, snarfed, e-lima, shiflett and hs0ucy joined the channel
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+172) "/* Participants */ new rsvp from eventbright"
(view diff)
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+9) "/* Participants */ new rsvp was for 2 tickets"
(view diff)
mlncn joined the channel
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+515) "/* Participants */ add sandro from 2014 entry"
(view diff)
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+0) "/* Participants */ update quant"
(view diff)
hs0ucy joined the channel
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+167) "/* Possibly Attending (from Facebook) */"
(view diff)
danlyke_ and mlncn joined the channel
KartikPrabhu and hs0ucy joined the channel
#
@chim0
Cool, the Linkback #GS plugin now sends webmentions. Thanks, https://singpolyma.net/
(twitter.com/_/status/662669842953199616)
#
@chels_bar
o hai @aaronpk, how do i sign up for This Week in the IndieWeb? thnx!
(twitter.com/_/status/662670165914615809)
#
KartikPrabhu
aaronpk ^
#
aaronpk
KartikPrabhu: lol thanks, as if i needed another notification of that ;)
#
aaronpk
2 IRC channels, phone, and watch all buzzed
#
KartikPrabhu
oh! ha. my bad then
#
KartikPrabhu
i forget that you get more notifications than I do
#
ben_thatmustbeme
one of my goals for IWC this weekend, get mobilepub working again
#
ben_thatmustbeme
since i cannot log in to it on my new phone
#
@aaronpk
@chels_bar hai! Send me your email address to aaron at parecki .com! btw will you be able to make it to IndieWebCamp MIT this weekend?
(twitter.com/_/status/662672425155342337)
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+169) "/* Participants */ up to 12"
(view diff)
gRegorLove joined the channel
#
gRegorLove
Re: http://indiewebcamp.com/irc/2015-11-05#t1446774456601 I also include the permalink on FB. And it has to appear in the text, not the link preview FB auto attaches. Otherwise I don't get any FB backfeed.
[snarfed] joined the channel
#
[snarfed]
gRegorLove: huh. that sounds like a bridgy bug/feature request. mind fillng it if it's not there already?
#
[snarfed]
and you're sure it doesn't work?
#
gRegorLove
We discussed it on there. Not sure which issue it was :)
snarfed joined the channel
#
[snarfed]
thanks!
#
[snarfed]
so, looks like it's fixed now. is it still broken for you?
#
gRegorLove
Yeah, this post didn't get FB backfeed, only Twitter. https://gregorlove.com/2015/10/yes-america-its-time-we/
#
snarfed
thanks! i'll look
#
gRegorLove
Did FB change post permalinks? On my site I have my user ID in the URL, but FB shows my username now.
#
gRegorLove
Hm. I used Bridgy Publish for that post, so maybe that's what Bridgy returned.
#
snarfed
gRegorLove: FB has like 10 different permalink formats
#
snarfed
we try to handle them all
#
gRegorLove
Wait, I think it's a privacy thing. Bridgy Publish did "Friends Only", so it wouldn't backfeed, right?
#
snarfed
ahhhhhh then yes
#
gRegorLove
Is there a way to specify "public" when I use Bridgy Publish?
#
aaronpk
i'm guessing that's coming from when you authorized bridgy publish in the first place
#
snarfed
i think you set that in FB, not in bridgy
#
aaronpk
should be able to change it in facebook conenected app settings
#
snarfed
:) for a solution, :( for complicated non obvious UX
#
aaronpk
i do that all the time, authorizing apps to post content visible to me only
#
aaronpk
i am very glad facebook has that option
#
snarfed
app platform + multiple publics + privacy controls == no easy UX
#
gRegorLove
Aha! Thanks, snarfed
#
snarfed
gRegorLove: hmm the fb post is public. did you change it just now?
#
gRegorLove
I only figured that out since I tried opening it when I wasn't logged into FB
#
aaronpk
there's also a setting for "who can see your future posts" https://www.facebook.com/settings?tab=privacy&view
#
gRegorLove
My next Bridgy Publish should work out of the box
#
aaronpk
here's where you can change it per app https://www.facebook.com/settings?tab=applications
#
snarfed
waits for FB to break bridgy publish again
#
gRegorLove
Yeah, that's been public for a while. I didn't even think about Bridgy App settings.
#
aaronpk
when a random app requires FB login, I always set it to "only me" in case it decides it's going to post something
#
gRegorLove
Very good idea.
#
snarfed
scopes++
#
Loqi
scopes has 2 karma
#
gRegorLove
I hadn't thought of that and pretty much "never install FB apps" :)
#
snarfed
user-configurable FB permissions are (fairly) new
#
snarfed
those and especially JIT permissions, ie only ask for each perm when the app is actually about to use it, are great advances in app platform UX
#
aaronpk
totally
#
aaronpk
just-in-time
#
snarfed
there's some other more common term for that permissions technique that i've forgotten
#
voxpelli
snarfed: ACL?
#
snarfed
voxpelli: no
#
voxpelli
just jumps right into something
#
snarfed
yay, backfeeding
#
Loqi
woot
funwhilelost joined the channel
#
@jgmac1106
2 hashtags that are bringing community together to support the #OpenWeb. Proud to have #indieweb #mozfest together https://twitter.com/jgmac1106/status/662695122992279552/photo/1
(twitter.com/_/status/662695122992279552)
wolftune joined the channel
Calli joined the channel
#
gRegorLove
Oh hai backfeed.
#
gRegorLove
snarfed++
#
Loqi
snarfed has 165 karma
snarfed, hs0ucy and nitot joined the channel
#
Calli
what is h-review?
#
Loqi
It looks like we don't have a page for "h-review" yet. Would you like to create it? https://indiewebcamp.com/s/106D
#
aaronpk
Calli: you'll find more on the microformats wiki http://microformats.org/wiki/h-review
#
veganstraightedge.com
created /h-review (+155) "h-review"
(view diff)
[shaners] joined the channel
#
[shaners]
what is h-review
#
Loqi
h-review is the microformats2 vocabulary for marking up [review] posts on web sites https://indiewebcamp.com/h-review
#
[shaners]
what is h-entry
#
Loqi
h-entry is the microformats2 vocabulary for marking up blog posts on web sites https://indiewebcamp.com/h-entry
#
veganstraightedge.com
edited /h-review (+2) "Oops. Internal links need double brackets!"
(view diff)
#
aaronpk
need an indieweb examples section on h-entry
#
aaronpk
s/entry/review
#
Loqi
aaronpk meant to say: need an indieweb examples section on h-review
#
aaronpk
is anyone publishing reviews on their site yet?
#
[shaners]
I’m not yet.
#
[shaners]
I have some old articles that are reviews that I need to markup as such.
#
aaronpk
i think i have one review on my site, not marked up yet
#
gRegorLove
Yes, though it's not set up with h-review markup, just h-entry.
#
kevinmarks
I did aeons ago when we first did hreview
#
gRegorLove
Heh. not-marked-up-yet seems to be the common response :)
#
aaronpk
i even posse'd mine to amazon
#
[shaners]
Back in 2006!
#
aaronpk
go forth and add yourselves
shiflett joined the channel
#
veganstraightedge.com
edited /h-review (+362) "/* IndieWeb Examples */"
(view diff)
#
[shaners]
aaronpk: where on the wiki do we edit the little template thingy? {{aaronpk}}
#
aaronpk
you have to make one for yourself
#
veganstraightedge.com
created /Template:veganstraightedge (+149) "Created page with "<span class="h-card">{{sparkline|http://veganstraightedge.com/apple-touch-icon-57-precomposed.png}}[[User:veganstraightedge.com|Shane Becker" target="_blank">User:veganstraightedge.com|Shane" target="_blank">http://veganstraightedge.com/apple-touch-icon-57-precomposed.png}}[[User:veganstraightedge.com|Shane Becker]]</span>""
(view diff)
#
[shaners]
ben_thatmustbeme: Looks pretty grood. Is `data` not required?
#
[shaners]
in the jsonapi example, `data` is the parent of `id`, `type` and `attributes` which are siblings.
#
gregorlove.com
edited /h-review (+142) "/* IndieWeb Examples */"
(view diff)
mlncn joined the channel
#
ben_thatmustbeme
oh, huh, i probably just missed that
snarfed1 joined the channel
#
kevinmarks
why did I get into this maths in svg nightmare?
#
ben_thatmustbeme
[shaners]: fixed
kmahan and nitot joined the channel
#
voxpelli
both h-review and h-entry needs to have their relationship to h-entry and h-feed clarified better – if one published reviews amongst other entries in a feed, then how should one publish or consume it?
snarfed and [shaners] joined the channel
#
[shaners]
ben_thatmustbeme: and looks like your `id` is still a child of `attributes`, but should be a sibling
snarfed1 joined the channel
#
kevinmarks
I have put h-review inside h-entry; I suspect that is common
#
voxpelli
kevinmarks: what data do you put in the h-entry and what do you put in the h-review and how would you want a reader to present your review? as an attachment to an entry or as the top level item in the feed?
shiflett, funwhilelost and ttepasse joined the channel
#
gRegorLove
I think a /reader can safely display an h-review the same as an h-entry. The properties of h-review could be used to enhance the display in a reader, but it's not required. No fidelity should be lost (or very little?)
#
gRegorLove
My review has dt-published instead of dt-reviewed; that's the only difference so far. I didn't publish a rating or a p-item, etc.
wolftune joined the channel
#
gRegorLove
But agreed, /h-review could probably use a "Why", "How to publish" and "How to consume" sections.
#
voxpelli
and probably also a "Relates to h-entry" / "Compares to h-entry" / "Compares to other formats"
#
voxpelli
and /h-feed needs to maybe be updated to say that an h-feed can contain more than just h-entry:s as it specifically says that now
#
gregorlove.com
edited /h-review (+157) "+sections to be filled out"
(view diff)
#
ben_thatmustbeme
[shaners] fixed that too
shiflett and [shaners] joined the channel
#
[shaners]
Nah, I’m here. I use the channel via Slack.
#
[shaners]
ben_thatmustbeme: Looks pretty grood to me.
#
[shaners]
Would you mind writing up the jf2 version of this same note so we can compare the two?
nitot joined the channel
#
[shaners]
Oh! Would you look at that!
#
[shaners]
what is pronoun?
#
Loqi
It looks like we don't have a page for "pronoun" yet. Would you like to create it? https://indiewebcamp.com/s/106E
#
[shaners]
Prounoun is a word that can refer to another noun or noun phrase. English examples include she/her/hers, he/him/his, they/them/theirs.
#
[shaners]
Pronoun is a word that can refer to another noun or noun phrase. English examples include she/her/hers, he/him/his, they/them/theirs.
#
loqi.me
created /Pronoun (+160) "prompted by [shaners] https://indiewebcamp.com/irc/2015-11-06/line/1446843441613 and dfn added by [shaners]"
(view diff)
tantek and warden joined the channel
#
kevinmarks
'preferred' is a bit problmematic
#
aaronpk
well it's existing terminology, it's not like we made it up
#
aaronpk
makes sense
#
tantek
greetings #indiewebcamp!
#
tantek
ben_thatmustbeme++ for updating /2015/MIT/Guest_List with registrations on Eventbrite, FB, Lanyrd!
#
Loqi
ben_thatmustbeme has 117 karma
#
tantek
ben_thatmustbeme: could you also hotlink the profile images for the people who RSVPd via FB? (since they have FB image URLs for the profile images) ?
mlncn joined the channel
#
ben_thatmustbeme
oh, good point
#
tantek
also, to all, especially IndieWebCamp co-organizers aaronpk ben_thatmustbeme rhiaro sandro adactio kylewm - I did a BUNCH of copy-editing/rewriting of the have/want a personal site text - please review (and hopefully it's an improvement over what you remember) https://indiewebcamp.com/2015/MIT/Guest_List#Official_Guest_List
#
tantek
Tried to make it more readable, friendlier, more approachable in general
#
tantek
ben_thatmustbeme: similarly for Lanyrd (though do we have any unique Lanyrd signups yet?)
#
kevinmarks
wow, svg fonts are fiddly
#
ben_thatmustbeme
tantek, not that i know of but "Your claim is currently being reviewed. If you need to, you can update your information below."
#
ben_thatmustbeme
come on Lanyrd!
#
tantek
hmm - are you in the list of organizers?
#
tantek.com
edited /2015/MIT/Guest_List (+170) "/* RSVPs from other sites (Eventbrite, Facebook, Lanyrd) */ link other sites, move to subtext rather than heading"
(view diff)
#
ben.thatmustbe.me
edited /2015/MIT/Guest_List (+525) "/* RSVPs from other sites */ add images for FB responses"
(view diff)
#
ben_thatmustbeme
i don't have time now, but when i get home i can update the 'interested' list with photos too
warden and funwhilelost joined the channel
#
gRegorLove
tantek: "and together you'll get your site setup with sign-in here and edit your entry!" The 'here' seems awkward/not sure what it means. Think it can be removed? https://indiewebcamp.com/2015/MIT/Guest_List#Official_Guest_List
#
tantek
good point
#
gRegorLove
Looks good otherwise. I like it.
j12t joined the channel
#
tantek
j12t did you go to IIW this year?
#
tantek.com
edited /2015/MIT/Guest_List (-46) "/* Official Guest List */ grammar fix, shorten"
(view diff)
#
j12t
Nope
#
j12t
benwerd did, didn't he?
#
tantek
maybe one day? haven't heard back from anyone who actually went
#
GWG
Guest list is looking good
#
kevinmarks
ben and erin went for the first day
#
kevinmarks
said lots of bitcoin flummery
#
tantek
GWG, except we need your profile image :)
#
GWG
Why does that keep happening?
#
tantek
what site are you using for your profile images?
nitot joined the channel
#
GWG
I am using mine. I need to write my own plugin for avatar generation
#
kevinmarks
I give up on bloody math fonts
#
tantek
GWG why not just host a static image at yourdomain / photo.jpg ? you don't need a plugin for that right? just SFTP?
#
GWG
It has been an idea of mine for a while to do a drop in hcard cache avatar system for WordPress
#
tantek
GWG, sure, start small, with a static image URL. Then later build an hcard cache avatar system that makes use of that static image URL
#
GWG
Tantek, I just have WordPress doing the sizes.
#
tantek
512x512 is sufficient for a photo icon/avatar for high res displays
#
GWG
I also rarely take pictures of myself
#
tantek
that's what my photo.jpg is. I also have a logo.jpg that is 128x128 which is good enough for small icons
#
tantek
GWG, get aaronpk to take a nice portrait shot of you with his camera at IWC :)
#
GWG
My first aaronpk goal is to be there for a usage of Teacup
#
@NothingAgency
Thanks to @ownCloud we gained ownership of our data back! Better than ever with version 8.2! #ownyourdata
(twitter.com/_/status/662750869042008064)
#
GWG
How good a photographer is aaronpk?
#
@ownCloud
RT @NothingAgency: Thanks to @ownCloud we gained ownership of our data back! Better than ever with version 8.2! #ownyourdata
(twitter.com/_/status/662751279517712384)
#
tantek
quite good
#
kmahan
indiewebcat.com ssl certificate expired! for some reason this is hilarious to me
#
kmahan
ssl is too hard for cats
#
GWG
I am just excited about tomorrow
#
snarfed1
"why so insecure?" "meow."
#
kmahan
we need http://jsforcats.com/ for TLS
#
gRegorLove
confused-cat-at-keyboard.gif
#
tantek
what is kmahan?
#
Loqi
It looks like we don't have a page for "kmahan" yet. Would you like to create it? https://indiewebcamp.com/s/106F
#
@GnuFreedom
RT @NothingAgency: Thanks to @ownCloud we gained ownership of our data back! Better than ever with version 8.2! #ownyourdata
(twitter.com/_/status/662752311383564288)
#
kmahan
heh
#
@fkarlitschek
RT @NothingAgency: Thanks to @ownCloud we gained ownership of our data back! Better than ever with version 8.2! #ownyourdata
(twitter.com/_/status/662752447803351044)
#
@aeroweb340
RT @NothingAgency: Thanks to @ownCloud we gained ownership of our data back! Better than ever with version 8.2! #ownyourdata
(twitter.com/_/status/662752540417769473)
#
aaronpk
aww kitty!
#
aaronpk
ooh glad I checked, indiewebcamp.com cert expires on tuesday
#
aaronpk
i need this as an h-feed that I can subscribe to https://indieweb.org/certs.php
#
kylewm
Dora is the SSL canary
#
veganstraightedge.com
edited /Pronoun (+842) "Add silo examples"
(view diff)
#
tantek
guessing that should be lowercase
#
aaronparecki.com
moved /Pronoun to /pronoun "lowercase because not a proper noun"
#
veganstraightedge.com
edited /preferred_gender_pronoun () "(-644) Redirect to pronoun"
(view diff)
#
veganstraightedge.com
edited /preferred_gender_pronoun (+0) "Capitalization matters"
(view diff)
#
tantek.com
edited /pronoun (+160) "make definition actually meaningful, and why it relates to indieweb. indieweb examples before silo examples (always), move why not preferred to a FAQ"
(view diff)
#
tantek
what is a pronoun?
#
Loqi
A pronoun is a word that people often use to refer to other people or objects instead of their names; on the indieweb you can express which pronouns should be used to refer to you https://indiewebcamp.com/Pronoun
[shaners] joined the channel
#
[shaners]
Thanks t!
#
tantek
thanks for starting the page!
#
[shaners]
:the_horns:
#
kevinmarks
that's an improvemnt
KartikPrabhu and snarfed1 joined the channel
nitot joined the channel
#
aaronpk
okay really, if your product hasn't launched yet, you really don't need to tweet "coming soon" every single day
shiflett joined the channel
#
snarfed1
they're not a spammer, but they're also not indieweb. want to mark them spammer? or something similar?
#
aaronpk
i can just discreetly add them to the blacklist :)
lukebrooker joined the channel
#
tantek
or we just document them as vaporware
#
tantek
a logical outcome of excessive "coming soon" tweeting
#
tantek
and add them to a growing vaporware list
#
tantek
then when other people search for the product/company they see the vaporware summary and move along
#
sparverius
tantek: everyone said that about Glyvsh
Geng joined the channel
#
kylewm
what's Glyvsh?
#
kevinmarks
how do you even say that?
#
gRegorLove
What is vaporware?
#
Loqi
It looks like we don't have a page for "vaporware" yet. Would you like to create it? https://indiewebcamp.com/s/106G
#
tantek
vaporware is a product that is announced before its release, often with no particular expected release date, or perhaps nothing even partially developed, and is an [[anti-pattern]].
#
loqi.me
created /vaporware (+208) "prompted by gRegorLove https://indiewebcamp.com/irc/2015-11-06/line/1446852429550 and dfn added by tantek"
(view diff)
#
tantek.com
edited /vaporware (+77) "see also, wp"
(view diff)
ventilateur joined the channel
#
tantek.com
edited /vaporware (+369) "examples Femometer added discovered via #ownyourdata Tweets"
(view diff)
#
sparverius
kylewm: glyvsh is the app that all residents of san francisco use
#
tantek
wat - never heard of it before
nitot and warden joined the channel