otl

joined 7 months ago
[–] otl@apubtest2.srcbeat.com 2 points 7 months ago

When I drop off my electronics at "recycling" facilities, I always wonder if they don't just end up at a place like this. It's hard to tell if sending them to a local landfill wouldn't be less impactful on the environment.

Same. I'm in Australia so there is a lot of space. At the supermarket near me they have a dedicated battery recyclin g bin, so I guess I trust this a little more than those general recycling bins. That trust is even involved is not ideal though.

For now I just try hard to keep old stuff going for my friends and family. Software-wise they all use native apps for personal and work, so I see about 7-8 years of life for each laptop/desktop.

[–] otl@apubtest2.srcbeat.com 26 points 7 months ago (4 children)

Closer look at human story: Ghana: A Week in a Toxic Waste Dump

One of the problems with using older devices for a long time, even if they are repaired, is that common ways people use their computers (I'm including smartphones, tablets, laptops etc. here) gets slower over time. See How web bloat impacts users with slow connections by danluu@mastodon.social

[–] otl@apubtest2.srcbeat.com 9 points 7 months ago

Over the past approx. 100 days, dw_innovation@mastodon.social has made 2 or 3 public replies. The idea of using any of these social networks over RSS/Atom feeds and plain old websites is that they're social, not a place you upload text.

As a freedom loving hippie, I'd rather see broadcasters posting to the fediverse instead of whatever awful mish mash of Instagram, Facebook, Twitter et al. it is right now! That would be fantastic!

But as a technical purist, the way DW is using their account right now, they're arguably no worse off getting links/content from their RSS feeds available to the fediverse somehow (e.g. RSS Parrot). Sometimes I feel like we've had walled gardens for so long that we've forgotten about interoperability. Lots of platform thinking! Broadcasters don't need to be on the fediverse, just a way that their stuff can be shared to the fediverse.

I'm excited to see things changing that makes thinking like this even possible!

[–] otl@apubtest2.srcbeat.com 15 points 7 months ago (1 children)

I'll upload a video in a bit!

As promised: https://www.olowe.co/tmp/apsubmit.mp4

[–] otl@apubtest2.srcbeat.com 20 points 7 months ago (2 children)

I'm developing some software to connect ActivityPub and email. It's been fun and I've learned a lot!

I'll upload a video in a bit!

[–] otl@apubtest2.srcbeat.com 4 points 7 months ago

None that I'm aware of, hoping others can chime in. There's an open ticket on this in the Mastodon tracker: https://github.com/mastodon/mastodon/issues/18601 Guess that's something to check every once in a while..

Keep us updated on any findings :)

[–] otl@apubtest2.srcbeat.com 2 points 7 months ago

I've updated the docs with new sections Receiving and Reading. See 2.3.1 etc. https://apubtest2.srcbeat.com/apas.html

Thanks for your comment as it helped me write down thoughts :)

[–] otl@apubtest2.srcbeat.com 3 points 7 months ago

Right now I follow a few Mastodon users via an RSS-to-Email service, but the problem with that is that you can't follow private accounts/see followers-only toots. It would be great to have a full email bridge.

Ah yes know exactly what you mean. I follow Mastodon, PieFed, Lemmy stuff via RSS too.

I have a little program which follows/unfollows:

apfollow kevincox@lemmy.ml
apfollow -u kevincox@lemmy.ml

Then things get delivered to my inbox. That's been working ok. I'm adding a "Following" section to the docs soon.

But I think the main idea is getting Activity into a RFC5322 message in a filesystem. The system doesn't really care how that file is written. It could be from an ActivityPub server sending stuff to you. But it could also be from reading a RSS feed and fetching the items. My first stab at this was actually a couple of scripts which dumped my Mastodon timeline and some Lemmy stuff to message files.

So if my ActivityPub-email bridge was running you wouldn't also be able to access a Mastodon UI and for example browse other posts.

What I do now is clunky. First, I've written a couple of very basic frontends using both the Lemmmy & Mastodon API. These expose the unique ID of each post, which I copy/paste around...

(like commenting on a random post I was linked to).

I run this command:

apubget -m https://lemmy.ml/comment/9266238 > comment.eml

Then open the file in a mail client, and reply to it. Like I said: pretty clunky! :D

One thing I've thought about is hijacking the header's Subject field to hint to apas that we're replying to something. Modifying Subject is exposed in more mail clients than being able to modify arbitrary fields in the header (ideally we set In-Reply-To). For example for this message I'm writing now:

To: kevincox@lemmy.ml
Subject: https://lemmy.ml/comment/9266238

Ah yes know exactly what you mean bla bla bla...

Taking it further, frontends could render mailto: links. Here's one to reply to your message: mailto:kevincox@lemmy.ml?cc=fediverse@lemmy.world&subject=https%3A%2F%2Flemmy.ml%2Fcomment%2F9266238

Using Subject as both the name or inReplyTo properties of an Activity depending on its value feels unclear.

Reading RFC 6068, it's theoretically possible that we could inject a In-Reply-To in a mailto URL. It's up to the mail application to interpret it. mailto:kevincox@lemmy.ml?cc=fediverse@lemmy.world&in-reply-to=%3Chttps%3A%2F%2Flemmy.ml%2Fcomment%2F9266238%3E This encodes the message:

To: kevincox@lemmy.ml
CC: fediverse@lemmy.world
In-Reply-To: <https://lemmy.ml/comment/9266238>

bla bla bla

Just tested and found that MailMate actually handles this. Still feels unclear... I dunno. What do you think?

[–] otl@apubtest2.srcbeat.com 9 points 7 months ago

Lemmy's maintainers seem overworked. As is the case with so much of software dev, (open source or otherwise!) non-programmers are unaware of or underestimate maintenance burden. From the outside, it looks like it's just about "adding a feature". But in reality, it's less about "adding" and more about "growing". Feature requests generally need to be evaluated with this in mind; whether future development is sustainable with some new feature(s).

I see opportunities here for some software dealing with either ActivityPub directly or with Lemmy's HTTP API.

Anyone used lemmy-modder? Thoughts?

[–] otl@apubtest2.srcbeat.com 2 points 7 months ago (1 children)

Oh huh. Good spotting.

After some quick digging... seems like a bug in the Lemmy web UI. I think= it's assuming the timestamp is always UTC. Are you using the UI at https= ://lemmy.blahaj.zone ?

The timestamp of the source message is has the UTC+11 timezone (where I a= m): https://apubtest2.srcbeat.com/otl/outbox/1709878623152651007 And I no= tice that in the old-Reddit-like interface at https://old.lemmy.world/com= ment/8236475 it renders as a time in the past.

[–] otl@apubtest2.srcbeat.com 1 points 7 months ago (3 children)

So this comment I am writing is going to appear as an email in a chain? Neat!

Yep, that's what it looks like at my end!

view more: ‹ prev next ›