Since I don't use my Mastodon anymore and knowing that @Alex Gleason is considering methods to work with an exported ActivityPub profile, I just manually picked my 10ish follows, routed them via mostr.pub and have them in #Nostr now.
And, once I have my export archive, I am clearing out the instance. Running `tootctl self-destruct` is gonna feel weird. x)
So! Show me all the neat EXPLOSION! gifs that you got :D
Login to reply
Replies (3)
I need to automate that process.
Mastodon offers a CSV export of just the follows. The header is: "Account address,Show boosts,Notify on new posts,Languages"
So that seems to be the easiest part. Importing old posts however, sounds like it could be very tricky.
`require("fs").readFileSync("./follows.csv").split("\n").forEach((v,i)=> {if(i == 0) return; __nostr_follow_via_nip05(v.replace("@","_at_")+"@mostr.pub")})`
Dirty, yes, but you get the idea. :)
Are the comments and reactions I make to notes from Mastadon users visible to them?