Comment on Is there a self-hosted project that does base64 url decoding in a privacy respecting fashion?
SnotFlickerman@lemmy.blahaj.zone 20 hours agoThis is the internet, maybe build it yourself instead of demanding others do the work for you?
You could also just as easily only paste in the encoded part and put it back into the link yourself.
ReedReads@lemmy.zip 20 hours ago
No one is demanding anything. I’m simply stating my preferred solution, which would work on both mobile and desktop, and asking if anyone knows if that solution or something similar already exists.
Nothing suggested so far will properly decode the link that I’ve included above.
But there is no reason to build something duplicative if a solution is already out there. Hence, the post.
GreenKnight23@lemmy.world 18 hours ago
you strike me as a competent developer but you lack the experience with Linux.
install xclip, then copy your URL and use the following command.
base64 -d "$(xclip -o)"
there’s probably a better way but I’m just remembering off the top of my head.
could probably pipe it into something that would spit it out with each param on new lines but you’ll need to google that.