2021-04-28 UTC
[KevinMarks], [tw2113_Slack_], [mapkyca] and jeremy joined the channel
loicm, Seirdy, [Rose], Paul[m]2, smacko[m], reed, Caleb[m]1, jamietanna[m], edsu, Salt[m], astrojl_matrix, forest[m], JackyAlcin[m], fredcy_, batkin[m], Ethan[m] and [Murray] joined the channel
# 09:24 [Murray] @petermolnar it's a bit cursed, but I've seen fallbacks that use `background-image` to place the png, which is then covered up by the SVG for browsers that support it. There may be a way to combo that with CSS `@supports` so that it is removed for more modern browsers, or you could always use JS to remove that style.
[KevinMarks] joined the channel
[grantcodes] and minoru_shiraeesh joined the channel
barnabywalters, shoesNsocks1 and [schmarty] joined the channel
# 13:18 [schmarty] snarfed++ for the excellent glitch.com custom domain sleuthing
# 13:18 Loqi snarfed has 29 karma in this channel over the last year (60 in all channels)
# 13:18 [schmarty] i got a big hint visiting the http:// version of the site which showed not `found: kapowski.schmarty.net`
# 13:19 [schmarty] so i went to my project and removed the custom domain, then added it back, and 🎉 it works again. 🤷♂️
[snarfed] joined the channel
# 14:08 Loqi schmarty has 8 karma in this channel over the last year (56 in all channels)
[aciccarello], [tantek] and [calumryan] joined the channel
# 15:23 [tantek] [schmarty]++ nice. removing/re-adding sounds like a version of turn it off and on again 😂
# 15:23 Loqi [schmarty] has 9 karma in this channel over the last year (57 in all channels)
[schmarty] joined the channel
[KevinMarks], [grantcodes], shoesNsocks, shoesNsocks1, tomlarkworthy, jamietanna, alex11, Poorchop and [chrisaldrich] joined the channel
# 17:17 Poorchop I could use some tips regarding an implementation for sending webmentions - I was thinking of aggregating all of my posts in an xml file that gets autoupdated with every new post, then writing a script to parse that file depending on the depth/number of items that I specify which I call after pushing changes to my site
# 17:17 Poorchop I'm not really sure how to implement sending webmentions for updated posts though
# 17:18 Poorchop do I need to create a database of all sent webmentions with associated URLs and then regularly check if the URL has changed in order to decide whether to re-send webmentions?
# 17:19 Poorchop a lot of this sounds prohibitively confusing for the average layman
# 17:22 aaronpk generally yes, the idea is if you update a post, you'd send webmentions again from that post
# 17:22 aaronpk but the idea is you'd know if your own posts are updated
# 17:23 Poorchop oh I thought that was referring to updates on the receiving end
# 17:23 Poorchop as in a post that I mentioned in the past was updated or moved to a new location
# 17:23 aaronpk you should also be prepared to receive webmentions *from* posts that have been updated, but you don't need to do anything proactively for those
# 17:24 Poorchop I don't know if I'm going to implement receiving webmentions, it's incredibly tough for someone like me to write an implementation
# 17:24 Poorchop I figured that it would just be easier to send them once I work out the logic for updating my posts
# 17:25 Poorchop I just don't want to rely on a third party service, that's a major reason why I host my own site in the first plac
# 17:25 Poorchop yeah but I was approaching this from the perspective as being something that the average person on geocities could've implemented back in the day
# 17:26 Poorchop that's definitely not the case
# 17:26 aaronpk from scratch? no, but integrating with third party tools definitely
# 17:26 barnabywalters well, if you don’t want to implement your own incoming webmention handling, then relying on webmention.io is a reasonable compromise for still being able to show reactions to your posts
# 17:26 aaronpk there was lots of stuff on geocities that was embedded from third party services too
# 17:27 [tantek] I like that summary though: "something that the average person on geocities could've implemented back in the day"
# 17:27 Poorchop I'm not too concerned with receiving webmentions anyway, I don't want to know who is reading my site - I just want to let other people know that I'm reading their stuff so that they don't disappear
# 17:32 [KevinMarks] What is your site coded in? There may be an existing webmention receiving library you can use
# 17:33 Poorchop it's just html and css with some python scripts handling some automation
# 17:34 Poorchop I saw mf2util and I think that I'll need to use it for sending mentions
# 17:34 Poorchop in order to parse for the endpoint or whatever
# 17:35 Poorchop it's a weird process because I make changes locally and then upload via ftp, so I gotta remember to run the webmention script on the server when everything is in finally in the right place
Seirdy, tomlarkworthy1 and [Ana_Rodrigues] joined the channel
[tw2113_Slack_] joined the channel
# 18:16 Loqi [Aaron Parecki] Sending your First Webmention from Scratch
# 18:18 barnabywalters you can delete webmentions by sending a webmention again, but having the source URL return a 410 Gone response
alex11 joined the channel
# 18:27 Loqi [eentzel] htmltruncate.py: Python module for truncating text that contains markup
# 18:32 [KevinMarks] poorchop: we have a couple of webmention receiving implementations in python
minoru_shiraeesh, [calumryan], __minoru__shirae, Seirdy and [snarfed] joined the channel
# 19:42 Loqi [Ryuno-Ki] webmention-tools: Tools for webmention.org
shoesNsocks and shoesNsocks1 joined the channel
# 20:20 Poorchop I'm getting "HTTP/1.1 405 Method Not Allowed" when sending a webmention via curl as described in the your-first-webmention post
# 20:20 Poorchop trying to send it to webmention.rocks/test/4
# 20:22 aaronpk double check you've typed it right, i'm guessing it's trying to send a GET request if you type the curl command wrong
# 20:22 aaronpk (also side note, wtf did i do to my website to make the scrolling so choppy?)
# 20:24 Poorchop it definitely looks like I typed everything correct - could the problem be using the in-reply-to class?
# 20:24 Poorchop u-in-reply-to*
# 20:25 aaronpk no, that error would be returned way before getting to any webmention processing stuff
# 20:25 aaronpk are you sending it to the webmention endpoint of that test or that test URL itself?
# 20:26 Poorchop sending it to the URL with the webmention endpoint as the target
# 20:26 aaronpk send to the webmention endpoint with the post's URL as the target
# 20:28 Poorchop awesome, it mostly worked thanks
# 20:28 Poorchop "The post did not provide a URL, using source instead" not sure what I missed
# 20:28 Poorchop but it showed up at least
# 20:29 Poorchop I'm guessing because I didn't add a timestamp
# 20:29 aaronpk that means there's no u-url property in the microformats of the post. that's where the post links to itself, usually on the timestamp
# 20:31 barnabywalters come to test webmentions, leave with valid h-entry markup because your test report looked so much prettier that way
# 20:31 Poorchop can I provide a u-url without wrapping it around a time tag?
# 20:31 Poorchop or is that a webmention violation or something
# 20:31 barnabywalters just add class="u-url" to an <a> element on the page which contains the canonical URL of the post
# 20:32 Poorchop even though I do this in the RSS feed, it's kind of funny referencing the URL of a post that doesn't exist yet before pushing to the server
# 20:33 Loqi [Poorchop] Testing out sending my first Webmention. Sent using curl on the command line.
# 20:34 aaronpk if you want to be real sneaky, and if you're only doing this on permalinks not on feed pages, you can use `<a href="" class="u-url"></a>` since a blank string will resolve as a relative URL to the page itself
# 20:34 aaronpk but that doesn't work if you insert that same markup into a list of posts
# 20:35 aaronpk oh i wasn't suggesting making it hidden even. could put "permalink" as the text in the link
# 20:36 sknebel ah, sorry, "sneaky" kinda suggested that to me :D
# 20:36 Poorchop yeah I was just about to add it as "permalink" text
[chrisaldrich] joined the channel
# 20:50 Poorchop I've spent hours trying to get the layout right versus minutes on trying to actually send a mention
# 20:50 Poorchop CSS is once again the final boss
tomlarkworthy and [aciccarello] joined the channel