#GWG[jeremycherfas]: As in do something unfortunate
geoffo, jonnybarnes and [fluffy] joined the channel
#[fluffy]Positive frustration leads to things like BLM protests and sweeping social change
swentel, [snarfed], jonnybarnes and [tantek] joined the channel
#[jeremycherfas]We’ll have to agree to disagree. A positive response to frustration is great and can effect huge changes. But it is borne of a desire to remove the frustration, which is not desirable.
#[tantek]discomfort can be useful for remembering and growing empathy, to help motivate advocating and advancing social changes that benefit those less fortunate
#[tantek]oops sorry that's more a #indieweb-chat topic
jamietanna joined the channel
#jamietannaGWG what's the Micropub auth issue? Is it WP specific?
#jamietannaalso GWG I think maybe having the profile image redirecting could be useful, but I wonder if it always redirecting could be a pain for clients who would want to cache
#jamietannaoh that's a shame - guessing we're not sure what's up yet?
#GWGjamietanna: I think it is a weird combination of server configuration and code. That's why some people have no issue
#GWGjamietanna: As for the profile image redirect, I am setting cache control headers which should, on supporting systems, cache the redirect.
#GWGAccording to RFC2616, a 302 response is only cacheable if indicated by a Cache-Control or Expires header field
#[tantek]This feels like a very old discussion, where we discussed automatically giving every heading and paragraph its own fragment permalink that was revealed upon hover
#[fluffy]so like, I have <h2 id=“foo”><a href=“#foo”>Foo Header</a></h2> in the HTML
#aaronpkhm right... i need to change the HTML here
#[fluffy]and then in the CSS I have some ::before and ::after rules, and you can do like h2:hover a::before { content: ‘¶’ }
#aaronpkis there any way to do it *entirely* in css?
#aaronpkyeah there's no way to do it without changing the HTML huh
#[tantek]right that sort of thing, with it being visibility:hidden by default, then a hover rule on the h2 that sets the a href to visibility:visible
#[fluffy]I don’t like having things that appear/disappear only on hover so my specific rules are a bit different than what I said above, I just change the opacity of the `#` mark
#[tantek]presumably your HTML already has the link, that's the assumption
#aaronpkthe problem is i'd have to change my markdown processor to add something into the HTML, which sounds hard
#[fluffy]You could keep the HTML the same and use `text-decoration: none` for h2 a, or something
#[tantek]and that you only need the CSS to hide it normally and show it on hover
#aaronpki could post-process the HTML in javascript, heh
#[fluffy]Publ does let you change the heading templates so that you can format the headings however you want, link-wise
#[tantek]not a bad idea, those links are only for users anyway, not bots
#[schmarty]if you want the github-style "one click to copy to your clipboard" you'll need JS anyway.
#[fluffy]I’m not a fan of javascript post-processing but that’s a fair point
#[tantek]though it sucks to make a markup feature require JS
#aaronpkthe other problem is right now there's not enough space between the left of the header and the edge of the container to insert an icon so i have to move it or show the thing at the end
#[tantek]yeah, right-click to copy link is usually good enough IMO
#[fluffy]yeah position:absolute is your friend for this
#[tantek]only if you set position:relative on the h2 🙂
#[fluffy]GitHub style just seems like it adds some left margin on everything, and then there’s a :hover rule to put the little link icon off to the left, probably using absolute positioning
#[fluffy]and I’m not going to dig into their probably enormous stylesheets but I’m guessing the rules they use are something like: h2:hover a { position: absolute; left: -1em; display: block; content: ‘🔗’; } and h2 a { display: none; }