#indieweb 2020-01-24

2020-01-24 UTC
drankorgel joined the channel
#
drankorgel
hi
opal, turona_, turona, jjuran, lalilulelo, kensp, jeremycherfas and sivy joined the channel
#
sivy
heyo
#
sivy
good evening
#
sivy
I’m working on webmention support in my blog app, and I’m a bit confused about the logic in test #23 on webmentions.rocks
#
sivy
heh. Got it.
#
sivy
all 23 tests pass, for fetch at least
wolftune, lalilulelo, hold_on_fixing_l, kensp, jjuran, gRegorLove, delli3_, KartikPrabhu and [snarfed] joined the channel
#
Loqi
sivy has 1 karma over the last year
[tantek], [Michael_Beckwit, KartikPrabhu, wolftune, cweiske, gRegorLove, wiedi, [Marlin_Forbes], krychu, gxt, anotheryou and simons joined the channel; dee`1 left the channel
#
[tantek]
sivy++ welcome and congrats! aaronpk get this man a Webmention Rocks sticker!
#
Loqi
sivy has 2 karma over the last year
[calumryan], mattl, [Rose], simons, [LewisCowles], [jgmac1106], emceeaich, sukil, MarkAtwood and KempfCreative joined the channel
#
@TimLiljefors
im gonna lose my fucking mind if i see another "x social media site owns all the art you upload its in their TOS!!!!" they need your permission to upload your content to their site and display it.. literally every social media has it in their TOS... i beg you... stop...
(twitter.com/_/status/1125548071419564035)
swentel joined the channel
#
[jgmac1106]
yeah just because sites aren't doing it doesn't mean they can't/won't, it is a bit misleading...all TOS have this bad boilerplate language so you don't need to worry about it...
krychu, emilbayes, [schmarty] and superkuh joined the channel
#
[jgmac1106]
and those ToS provide universal license for sale....ask every Tumblr, DeviantArt, user if ToS don't matter with acquisition
[Marlin_Forbes], [Rose] and KartikPrabhu joined the channel
#
sivy
good morning
#
sivy
and thank you @[tantek] :)
sukil joined the channel
#
jeremycherfas
Good morning IndieWeb
KempfCreative1 joined the channel
#
sivy
hm, apparently to test actual webmentions, you have to have an actual server
#
sivy
blurgh
#
[Rose]
Sending or receiving?
#
[Rose]
Sending can be done if someone else has a server, and many people do, there's also a service to help you set it up I think
likus joined the channel
#
sivy
sending
#
sivy
guess I could set up a seperate instance of my site
#
sivy
or perhaps just upload a static file?
#
sivy
oooh, that might work
jimpick, TorpedoSkyline, likus and [KevinMarks] joined the channel
#
[KevinMarks]
I think webmention.rocks has both kinds of test
#
sivy
yeah, I got it to work:
#
Loqi
[Webmention Rocks!] Discovery Test #1
#
sivy
I din’t have any actual post-type markup so it didn’t pickup useful info, but it’s working
[schmarty], TorpedoSkyline, wolftune, sukil, KapiX and [LewisCowles] joined the channel
#
sivy
btw I’m working on webmentions in Go, for https://github.com/sivy/goldfrog
#
Loqi
[sivy] goldfrog: Goldfrog, a shiny blog
myfreeweb and [snarfed] joined the channel
#
[snarfed]
sivy you can send webmentions from your site to your site
#
[snarfed]
no separate server needed
rawkode joined the channel
#
jamietanna[m]
Sivy if you've not already seen it https://github.com/willnorris/webmention may be worth a look for a Go webmention library
#
Loqi
[willnorris] webmention: Go library and CLI for assisting in sending webmentions.
#
sivy
wow, I completely forgot I had found that before.
#
sivy
:facepalm:
#
sivy
oh well, it’s been fun writing my own implementation
#
sivy
and I’ll have a server too
#
sivy
but I will probably steal some of Will’s techniques, which are more idiomatic Go than mine
#
sivy
seeing as I’m still a noob
vivus joined the channel
#
willnorris
just got pinged on the name mention... don't have much context, but happy to advise on Go stuff :)
#
Loqi
willnorris: [tantek] left you a message on 2018-12-10 at 10:04pm UTC: are you still POSSEing to Google+? And if not, when was your last G+ POSSE post? (date, permalink)
#
[tantek]
lol G+. Sorry about that willnorris
#
willnorris
hah. Guess I haven't been around in a while :)
kensp and [jgmac1106] joined the channel
#
[jgmac1106]
willnorris meet [dmitshur] who has built amazing building blocks using GO, taught me my first Go "hello world" app
wolftune joined the channel
#
sivy
hi willnorris !
#
sivy
willnorris: i looked at your Go webmention client a couple weeks ago, then forgot about it an implemented my own :)
#
sivy
funny how similar some of the API is
#
sivy
your’s definitely has some cleaner idioms
#
willnorris
Hey dmitshur :) Hey sivy... been a really long time!
#
sivy
yeah!
#
willnorris
Hey, I'm certainly happy to have some other folks helping build some of the indieweb building blocks in Go. I was kind of doing it alone for a little while there, but clearly haven't been too active myself or some time
TorpedoSkyline joined the channel
#
sivy
I’m going to be building the server side as well… *hopefully* as http.HandlerFuncs so that they can be plugged into your mux of choice
gRegorLove joined the channel
#
willnorris
nice. The server/receiver side was one thing I never got to, so it's good to see you doing that.
#
willnorris
I had two different plans of where to store received webmentions... one was going to proxy them to a GitHub repo as pull requests, then my webmention moderation flow was simply using GitHub's UI. The other idea was to use Perkeep, but that project is not near as active as it once was
#
willnorris
I think the main blocker on the GitHub approach was trying to figure out how to store them. One file per webmention, one file per target URL, etc. I use hugo to build my site, so hugo would just read out of wherever they're stored, and render them
#
[jgmac1106]
Glad folks connected but mind moving to #indieweb-dev?
lalilulelo, [AlisonW], strugee, TorpedoSkyline, [manton], kensp, wiedi and parataxis joined the channel; PhilRW[m] left the channel
#
sivy
willnorris: yeah, i haven’t decide on storage yet either. Goldfrog (my new Go-powered blog app) stores posts in the FS in jekyll-compatible markdown, but also reads them into a sqlite db for fast search/listings
#
sivy
I do not have a model for comments/webmentions yet
#
[schmarty]
sivy & willnorris: excited for new collaborations on IndieWeb projects in Go! Would y'all mind moving this particular discusison to #indieweb-dev as it's getting into development specifics?
#
sivy
okee
TorpedoSkyline joined the channel
#
@sazzy
Do people even read blogs anymore?
(twitter.com/_/status/1220707626692071425)
[LewisCowles] joined the channel
#
superkuh
Do people even have twitter accounts anymore?
#
aaronpk
Do people even facebook anymore?
#
skalnik
Do people even anymore?
TorpedoSkyline and chrisaldrich joined the channel
#
chrisaldrich
I'm waiting for someone to have blacked out photos for three websites and their personal h-card avatar with the subtitle "My Own Website"...
#
chrisaldrich
What is identity?
#
Loqi
A personal domain is a domain name that you personally own, control, and use to represent yourself on the internet https://indieweb.org/identity
#
Loqi
ok, I added "https://www.facebook.com/DollyParton/photos/a.10150216209199755/10157178777019755/?type=3&theater" to the "See Also" section of /personal-domain https://indieweb.org/wiki/index.php?diff=68035&oldid=68009
[KevinMarks] and wolftune joined the channel