DRM-Free OnlyFans Downloads See Widevine Project Nuked From GitHub (torrentfreak.com)
from cantankerous_cashew@lemmy.world to technology@lemmy.world on 29 Apr 04:51
https://lemmy.world/post/28851175

#technology

threaded - newest

Fijxu@programming.dev on 29 Apr 05:20 next collapse

<img alt="" src="https://programming.dev/pictrs/image/59570462-1324-45e1-8c26-4a3624996a14.jpeg">

hehe

victorz@lemmy.world on 29 Apr 07:36 next collapse

Curious to know what this email conversation looks like. 🍿

rustyfemboy@lemmy.blahaj.zone on 29 Apr 10:16 next collapse
rottingleaf@lemmy.world on 29 Apr 13:30 next collapse

I mean, “fuck you OnlyFans” seems correct phrasing

ChickenAndRice@sh.itjust.works on 29 Apr 17:38 collapse

git clone this before it gets taken down

Zwuzelmaus@feddit.org on 29 Apr 05:33 next collapse

sent a complaint

project has been ejected

Bad pattern.

The moment when GitHub was bought by M$, the risk of such behavior started.

ohulancutash@feddit.uk on 29 Apr 09:59 collapse

To GitHub’s credit, when rightsholders allege violations of the DMCA’s anti-circumvention provisions, GitHub conducts its own assessment. If there is no basis for a claim, GitHub sometimes finds other copyright-related grounds, but here there is no pushback. That’s usually a sign of a complaint that stands up under intense scrutiny.

TxzK@lemmy.zip on 29 Apr 06:26 next collapse

Codeberg exists. But no people still have to just flock to corporate bullshit and then be surprised when they pull a corporate bullshit.

cmhe@lemmy.world on 29 Apr 14:08 collapse

Codeberg is great, but it is hosted in Germany, and subject to their laws. AFAIK, Germany has laws against tools for “circumventing copy protection”, or “hacking”.

So I am not sure that they can provide a save haven for tools, where some lawyer could argue these points successfully in front of a court.

Ulrich@feddit.org on 29 Apr 20:19 next collapse

ActivityPub is amazing for censorship because anything that gets posted to one instance gets immediately archived thousands of times over.

zeropublix@lemmy.ml on 29 Apr 20:21 collapse

Also has the highest rate of website take-downs/bans. To be fair: mostly revenge “naked pictures of my ex” websites. But yeah. Piracy + Germany = not good. You’d rather turn to the Netherlands for that.

Whirling_Cloudburst@lemmy.world on 29 Apr 07:42 next collapse

There needs to be a widespread p2p solution for opensource projects before its too late. I have lost count of all the amazing stuff that has been gravity bombed from orbit.

There also needs to be a way for authors to submit things anonymously too and maybe sign their things with cryptographic keys to ID it. How many times has a company had a court order someone to cease and desist or simply acquire somebody’s work?

vividspecter@lemm.ee on 29 Apr 08:10 next collapse

It’s not always takedowns either, just the developer deciding to nuke their own repos. Real annoying, although it’s making me more vigilant about forking/mirroring important repos.

solrize@lemmy.world on 29 Apr 08:14 next collapse

p2p solution for opensource projects

That’s called Git and it’s been around longer than GitHub. There is also Usenet which by now is mostly dead. People fell for centralized alternatives. Oops :)

OsrsNeedsF2P@lemmy.ml on 29 Apr 08:45 next collapse

Right? Git is literally decentralized. If you choose to use GitHub as a centralized Git service, that’s on you.

(I will caveat this by saying we moved 2009scape off GitHub and the number of new contributors probably got cut in half. Mainstream services have a lot more eyes)

Appoxo@lemmy.dbzer0.com on 29 Apr 11:50 next collapse

How come Git is decentralized?
Doesnt it need a central component so I can pull your changes?

Edit: Thanks to all that explained it to me :)

FurryMemesAccount@lemmy.blahaj.zone on 29 Apr 11:54 next collapse

You can have arbitrarily many git “remotes”: GitHub, gitlab, your own custom forge, etc…

Git a cmd tool only. Your can remote wherever you like.

expr@programming.dev on 29 Apr 12:40 next collapse

Changes can come from anywhere. The Linux kernel itself doesn’t use any central repository like Github, it’s instead done via emailing patches that are eventually merged into the mainline kernel repository managed by Linus.

It is 100% decentralized.

lka1988@lemmy.dbzer0.com on 29 Apr 21:22 next collapse

mainline kernel repository managed by Linus.

It is 100% decentralized.

But… How does that work? The code has to be stored somewhere…

who@feddit.org on 30 Apr 00:41 next collapse

How does that work? The code has to be stored somewhere…

The code is replicated by everyone who works on it, and on various public and private servers, so you might say it’s stored everywhere.

lka1988@lemmy.dbzer0.com on 30 Apr 04:33 collapse

…I need to watch a video on this 😂

bollybing@lemmynsfw.com on 30 Apr 06:38 collapse

Linus memorises it.

ExtantHuman@lemm.ee on 30 Apr 02:57 collapse

Sounds like it’s centralized around Linus…

expr@programming.dev on 30 Apr 11:45 collapse

It’s just for the “last mile” where code gets packaged up into releases. There’s still thousands of developers that have all of the code on their machines as well, it’s just that their local repos aren’t the ones that end up in the hands of end users.

kuberoot@discuss.tchncs.de on 29 Apr 17:44 collapse

Fundamentally, the repository you have on GitHub is the same thing as the repository you have on your computer when you clone it. Pulling and pushing are shorthands for synchronizing commits between the two repositories, but you could also synchronize them directly with somebody else who cloned the repository. As somebody mentioned, you can also just host the same repository on two servers, and push to both of them.

The issue is that git doesn’t include convenient features like issues, pull requests, CI, wikis, etc., and by extensions, those aren’t included in your local repository, so if GitHub takes them down, you don’t have a copy.

An extra fun fact is that git can be considered a blockchain. It’s a distributed ledger of immutable commits, each one representing a change in state relative to the previous one. Everybody who clones a repository gets a copy of its entire history and fast forwards through the changes to calculate the current state.

Appoxo@lemmy.dbzer0.com on 29 Apr 19:45 collapse

But to push/pull you’d in theory need to port forward your git server/workstation, right?

thevoidzero@lemmy.world on 29 Apr 21:17 next collapse

Git works through ssh. So you need the same system as sshing into your machine. You just make a user group git and then let git and ssh handle things. And if you don’t need people to push to your repo, then it’s a lot easier as it’s now similar to hosting a website/file server.

kuberoot@discuss.tchncs.de on 30 Apr 07:25 collapse

Git exposes a lot of internals through odd commands, so I suspect you could manage synchronization by sending changes over email or something.

Bonus fun fact: there’s a git bundle command that “dumps” the repository into a single file, that can be interacted with as a remote. So if you’re ever working with a local repository and want to put it on a server over ssh or something like that, you can just create a bundle, scp it over, and clone from that on the server.

LucidNightmare@lemm.ee on 29 Apr 17:03 next collapse

2009scape is wonderful for those like me who need to scratch that RuneScape itch without a subscription. The fact I can play it off of a USB is testament to itself how incredibly awesome you guys are. Thank you for the project, sincerely. :')

melvisntnormal@feddit.uk on 29 Apr 19:55 collapse

I tried to follow that link and it seems Cloudflare blocked me. Don’t suppose you know who I’d need to talk to to resolve that would you?

OsrsNeedsF2P@lemmy.ml on 29 Apr 20:21 collapse

Did Cloudflare not let you pass with a captcha?

melvisntnormal@feddit.uk on 30 Apr 05:49 collapse

Nope, just straight up blocked <img alt="" src="https://feddit.uk/pictrs/image/e726bddf-c0d6-4164-9374-07808bacd439.webp">

OsrsNeedsF2P@lemmy.ml on 30 Apr 22:54 collapse

Oh sorry, totally forgot, we blocked UK users from accessing the website to avoid a Jagex lawsuit. If you’re on Linux you can still play the game via Flatpak

melvisntnormal@feddit.uk on 01 May 05:17 collapse

Oh okay, fair enough. Out of interest, what does Jagex have against the Brits?

OsrsNeedsF2P@lemmy.ml on 01 May 06:52 collapse

They’re based there, and an international lawsuit is magnitudes more expensive so it’s unlikely they’ll do one.

We’ll probably unblock the UK from seeing the website though, our friends (i.e 2004.lostcity.rs) haven’t blocked the UK and are doing great

melvisntnormal@feddit.uk on 01 May 07:54 collapse

Wow, TIL, thanks for the info!

Womble@lemmy.world on 29 Apr 09:10 next collapse

Git is, but it has no process of discovery or hosting by itself. Those are needed to efficiently share open source software to large numbers of people.

Appoxo@lemmy.dbzer0.com on 29 Apr 11:49 next collapse

You’d think Usenet is dead.
It’s not.

Scrollone@feddit.it on 30 Apr 12:04 collapse

Oh boy it’s not! But mainly for binaries

WhyJiffie@sh.itjust.works on 29 Apr 16:18 collapse

git is clearly not p2p in the needed level or else we wouldn’t have faced this problem

MonkderVierte@lemmy.ml on 29 Apr 09:31 next collapse
doodledup@lemmy.world on 29 Apr 09:48 next collapse

Open-source projects are quiet safe on Github. Maybe don’t push illegal code? Seems pretty obvious to me.

lka1988@lemmy.dbzer0.com on 29 Apr 13:10 collapse

Do you forget who determines what is illegal?

[deleted] on 29 Apr 15:07 collapse

.

rottingleaf@lemmy.world on 29 Apr 12:29 next collapse

All you need for this is a global overlay network and a global DNS untied from physical infrastructure. Cryptographic identities (hash of pubkey will do) instead of IP addresses (because NATs are PITA and too many people use mobile devices behind big bad NATs), and finding (in something like Kademlia) records signed by authority you yourself chose to trust instead of asking DNS.

Then come encryption and dynamic routing and synchronization of published states.

One can have some kind of Kademlia for discovery of projects too, but on the next level.

I2P comes close, but it’s more focused on anonymity.

OK, I’m not sure what I wrote makes sense. These things are easy to grasp somehow, but hard to understand well.

WhyJiffie@sh.itjust.works on 29 Apr 16:24 collapse

OK, I’m not sure what I wrote makes sense. These things are easy to grasp somehow, but hard to understand well.

yeah it seems you forgot what you wanted to say midway.

to extend on it, I2P, Tor and other mixnets provide the only safe way currently to host projects that others don’t like, because such sites cannot be taken down. that’s both a blessing and a curse

rottingleaf@lemmy.world on 29 Apr 16:45 collapse

I wanted to say something about easily hosting searchable repositories, and solving a few of the problems because of which the Web as it exists still has users.

ChickenAndRice@sh.itjust.works on 29 Apr 15:42 next collapse

I found radicle.xyz but I’ve never used this technology before. Maybe someone can shed some light?

muusemuuse@lemm.ee on 30 Apr 01:56 collapse

I2p has a git service

MonkderVierte@lemmy.ml on 29 Apr 09:42 next collapse

The project is now being made available via a repo on cdm-project.com but how long that’s likely to last is unclear.

Please streisand it.

NGnius@lemmy.ca on 29 Apr 19:02 collapse

I’ve mirrored it to my own git server too git.ngram.ca/mirrors/cdrm-project I will ignore DCMAs because I (and the server) don’t live in the USA.

jayandp@sh.itjust.works on 30 Apr 02:46 collapse

Canada might start ignoring DMCA as a whole if the idiots in my government keep harassing them. Maybe that’ll piss off Hollywood and friends in a useful way…

<img alt="" src="https://sh.itjust.works/pictrs/image/e30fcb8a-4267-4897-b83f-89674a04478c.gif">

(Just ignore me laugh weeping at the prospect that billionaires stabbing each other in the back is the only thing I can look forward to in my country now)

doodledup@lemmy.world on 29 Apr 09:44 next collapse

The mentioned repositories enable and encourage criminal behavior. And it’s quiet intentional. It’s because of piracy that we have DRM in the first place. The audacity now of pirates to wine about them not getting what they want like the entire world revolves just around them.

drspod@lemmy.ml on 29 Apr 09:57 next collapse

Format-shifting and time-shifting your legally acquired and licensed media is not illegal. If the DRM is preventing someone from doing that then it is within their rights to remove the DRM. Recall that not everyone lives in a country subject to the draconian DMCA law.

ohulancutash@feddit.uk on 29 Apr 10:01 next collapse

Because that was the intended use case for this repository.

Randomgal@lemmy.ca on 29 Apr 12:34 next collapse

Don’t forget to wipe your nose. You got a little shit there stuck there from all the corporate ass licking.

helpImTrappedOnline@lemmy.world on 29 Apr 13:13 next collapse

Don’t people buy stuff on OF, more than just a sub? Is it easily available for download in a common file format or is access stuck on the website even though you bought it?

I agree that straight piracy of content is bad. Piracy is primarily a service problem, TV and movie piracy was down in the mid 2010s until all the streaming services divided. Music piracy is basically gone thanks to early iTunes and even more so with today’s streaming services. OF piracy will always be a thing because people want their free porn and the parasocial relationship they don’t get on the regular free sites.

If corporations refuse to just sell us the file and can randomly revoke access or change the content (like Amazon’s been doing with book), then the community will find ways to strip out the DRM and other protections just to preserve the content they bought.

I don’t have a problem with github removing of projects that aim to circumvent purchasing content, but projects that simply “unlock” purchased content should be allowed to thrive.

Edit: I should add, if corporations can’t be bothered to respect what the word buy means, why I should I bother to provide them money? morality is a two way street, if one side is dishonest and shady, do they really have a right to whine when others steal from them?

Edit 2: in case it wasn’t clear the “dishonest and shady” one is the corporations. Its to the point were I pretty much only pay creators directly (patreon, etc) where I know good chunk of my money goes to the artist not the publisher/middle man. If I’m buying a movie or something its either a DVD or getting screen caped on the first watch for archival purposes.

rottingleaf@lemmy.world on 29 Apr 13:56 collapse

Edit: I should add, if corporations can’t be bothered to respect what the word buy means, why I should I bother to provide them money? morality is a two way street, if one side is dishonest and shady, do they really have a right to whine when others steal from them?

Ah, yes, remember all that tone of honesty and seriousness from companies in the 00s against bad, bad pirates, and also scorn at FOSS, like those amateur toys, we make better things? And now from time to time those “serious professional” programs from then are found to contain GPL violations. Or how Sony put a virus on music CDs.

TBH, there was a time when things were better with actually buying software and music and such. And probably the surge of piracy was first.

But somehow that doesn’t hurt Steam. Quoting GN - because piracy is a service problem. People generally pirate what they can’t comfortably buy. There were games I’ve never seen in stores in my childhood (no official localization, and by the time I got interested in them people selling bootleg discs in subway road crossings were coming out of fashion here). Piracy was the way I got them.

helpImTrappedOnline@lemmy.world on 29 Apr 15:14 collapse

Piracy will always be a problem, someone is always looking for the free route. The paid routes used to be guarantees of availability, malware free, and a quality copy. Now its almost the opposite, a pirated file is always available, usually malware free and higher resolution than whatever the data mining services feel like feeding you.

rottingleaf@lemmy.world on 29 Apr 16:44 next collapse

It’s very simple, one should legally target what’s advertised as selling when it’s not really selling. Heavily. Like fraud. Like obvious crime.

That will improve the situation.

[deleted] on 29 Apr 18:08 collapse

.

TORFdot0@lemmy.world on 29 Apr 13:21 collapse

Pirates breathe air, therefore oxygen is enabling copyright infringement

doodledup@lemmy.world on 29 Apr 15:13 collapse

Right. Let’s legalize nukes and bio-weapons for the average Joe. I’m sure someone is going to find a legitimate use for them that doesn’t involve using them as a weapon. There is always someone who uses them in a fair way. So it’s perfectly justified to allow them as they basically compare to oxygen now.

Logic checks out?

doodledup@lemmy.world on 29 Apr 15:10 collapse

Are you serious right now? You can’t actually believe ordinary people will go out of their way to visit some random Github repository just to remove the DRM for their convenience. I guarantee you that 100% of contributers and users of that repo are doing piracy.

WhyJiffie@sh.itjust.works on 29 Apr 16:44 collapse

oh you’re very confidently wrong, I very much will, you corporate bootlicker

HyperfocusSurfer@lemmy.dbzer0.com on 29 Apr 12:13 next collapse

Baseless (and also wrong) assumption that piracy is responsible for by any means significant monetary losses aside, there are other reasons for bypassing that DRM bullshit. Like, off the top of my head:

  • archiving – when you don’t have a local copy of a piece of content, it can be changed or deleted at any time;
  • ability to access stuff on a wider range of devices – I want to be able watch my favorite coomtent creator in full resolution on my phone that has only L3 and quite outdated version of widevine without installing proprietary crapp, so what;
  • bypassing bullshit restrictions – not sure if onlyfans in particular does that, but we have Netflix, for example, that would tell you to fuck off when you’re not watching from home be it VPN or an actually different location when traveling.
rottingleaf@lemmy.world on 29 Apr 13:48 next collapse

They know all that. They want you to be able to only consume content the exact they they publish it.

That simplifies market analysis, removes the dilemma of supporting or not supporting some other way users want, and ideally selling the same thing a few times.

doodledup@lemmy.world on 29 Apr 15:19 collapse

They want you to be able to only consume content the exact they they publish it.

And they have every right to do so. If you like it or not. You don’t own and have not created the protected content. On what basis are you deciding it should not be DRM protected?

rottingleaf@lemmy.world on 29 Apr 16:38 next collapse

On the basis of having bought it. If they haven’t sold it but made such an impression, then they’ve committed a crime.

When you are buying a cure against all problems with miniscule text saying it’s just a metaphor, the seller is committing a crime. It’s the same here.

Morally. Regardless of how courts interpret this right now. That feature that courts and practice officially do not equal morality and thus we can decide differently this time, if we can provide an explanation, is the main advantage of English legal system and those descended from it over others.

WhyJiffie@sh.itjust.works on 29 Apr 16:43 next collapse

On what basis are you deciding it should not be DRM protected?

they have literally given 3 of such bases

WhyJiffie@sh.itjust.works on 29 Apr 16:45 next collapse

On what basis are you deciding it should not be DRM protected?

they have literally given 3 of such bases

sibachian@lemmy.ml on 29 Apr 20:23 next collapse

And they have every right to do so.

morally, no. cartoon mouse says, yes.

[deleted] on 30 Apr 03:08 collapse

.

doodledup@lemmy.world on 29 Apr 15:14 collapse

Also baseless assumptions.

Btw, you don’t need to use whatever service you don’t own if you disagree with their practices. DRM is shit. But you’re not in any position to elevate yourself above that. You don’t own the services and you have not contributed in creating the protected content. You have no right to decide anything.

HyperfocusSurfer@lemmy.dbzer0.com on 29 Apr 16:51 collapse

Agreed to disagree then. IMO, if a company thinks it’s OK to throw me over the dick hiding behind being afraid of shadows, deny me access to legally obtained content on my devices, walk back on previous deals, and so on, then I have no problem with getting unrestricted access to stuff they decided I don’t technically own. Fuck the fucker, simple as that.

doodledup@lemmy.world on 29 Apr 23:30 collapse

By subscribing you agree to a contract. The company is doing no shitty practice since everything is black and white in the contract. You just don’t like the contract. But the consequence should be to not sign it.

ExtantHuman@lemm.ee on 30 Apr 03:08 next collapse

Even buying physical media, they claim you still don’t own the content, are only leasing it. It’s all bullshit to charge more and give us less. Stop defending this practice of eroding consumer rights

doodledup@lemmy.world on 30 Apr 14:29 collapse

Nobody is eroding consumer rights. The consumer rights haven’t changed. Maybe it’s time to change that. Change legislation and stop pirating like monkeys.

ExtantHuman@lemm.ee on 30 Apr 19:06 collapse

Accessing content I paid for isn’t pirating. And corporations have been working in eroding our ownership of the things we pay for years now. You can stop pretending they haven’t

doodledup@lemmy.world on 01 May 10:56 collapse

You payed for accessing the content the way it’s described in the ToS. I expect you haven’t read the ToS. It’s a contract. Violating that contract is piracy. There is no argueing about that. If you think piracy is morally okey then that’s your thing and your opinion that I respect. But it’s definitely piracy.

ExtantHuman@lemm.ee on 01 May 12:42 collapse

Nah. They changed the game. It didn’t used to be like that. You bought a physical copy, you owned that copy. Now they’ve added some bullshit “it’s actually a lease and we can review access at any time we want, fuck consumer” language. Stop defending this nonsense.

All that anti repair garbage going in, also. And game console Companies suing you for modifying your own machine.

nodiratime@lemmy.world on 30 Apr 06:34 next collapse

The company is doing no shitty practice since everything is black and white in the contract.

Unconscionability says otherwise.

doodledup@lemmy.world on 30 Apr 14:30 collapse

Yea you’re above the law and everyone else. I’ve hear this plenty of times.

nodiratime@lemmy.world on 30 Apr 15:30 collapse

You are the one who elevates random terms of service above the law just because both parties “agreed” to them, not me.

HyperfocusSurfer@lemmy.dbzer0.com on 30 Apr 22:52 collapse

Yeah, right. Because those contracts are set in stone, and our corporate overlords won’t ever take away the advertised ability to download books you’ve paid for, not to mention those very contracts being written in human-readable format and not lawyer speak. \s

doodledup@lemmy.world on 01 May 10:58 collapse

The contract states you don’t own it and they can take it away any time. So why are you stupid to sign it? Buy a physical book if you don’t like it. But there is no justification for piracy like “I don’t get exactly what I want so I now decide that I have the moral right to do whatever I want with indefinitely.”

guyoverthere123@lemmy.dbzer0.com on 30 Apr 04:55 next collapse

Bypassing DRM isn’t criminal behaviour.

andxz@lemmy.world on 30 Apr 08:52 collapse

Your whole series of posts in this thread are seriously unhinged. Are you trying to cosplay a corpo bootlicker or something?

It’s either that or you’ve been born wealthy enough to never have to think about the money you spend.

doodledup@lemmy.world on 30 Apr 14:36 collapse

You’re working for the same corpos and you’re getting payed. You’re part of the system and you’re profiting off it. We get rid of DRM tomorrow but you get a 20% salary reduction. Would you do it? I think you wouldn’t. So why would they? You guys are pretentious and can’t think past the simplest complexities of an economic system.

andxz@lemmy.world on 01 May 03:18 collapse

The only jobs I’ve ever had were teaching and nursing, both paid by the country I live in, not some private entity. I don’t even own a car or a TV, nor do I live in the US for that matter.

Get your head out of your ass and realise there’s more to life than fucking money. I was born poor and will die poor, but I don’t give a shit because I at least know I helped some people along the way.

Jfc, the bubble some live in. You should be ashamed of yourself, but I guess you’re not even capable of that, are ya?

x00z@lemmy.world on 29 Apr 09:58 next collapse

This just implies that the Microsoft employee was an OnlyFans subscriber simp.

KingThrillgore@lemmy.ml on 29 Apr 13:21 next collapse

Widevine, BTW, is a Google product that all the browser vendors agree to use. Its the only reason HTML5 has gotten anywhere.

drmoose@lemmy.world on 30 Apr 05:52 collapse

Its crazy that we can’t agree on any international rules except the ones that protect IP hoarding

ChickenAndRice@sh.itjust.works on 29 Apr 15:40 next collapse

I was wondering why these types of open source projects always push to Github, despite the latter always complying with DMCA. (I get that Github provides discoverabilty features, but it just isn’t worth it to have all your work taken down).

On a similar note, has anyone tried out radicle.xyz? It’s supposed to actually make use of git’s peer to peer nature (and not the client server model that everyone adopts with git) and ideally provide discoverability features.

The said I’ve only read the faq and haven’t actually tried it myself. Basically I’m wondering if it’s worth doing a deep dive on this technology

spicehoarder@lemm.ee on 29 Apr 18:45 next collapse

It doesn’t catch on because entry level devs love committing private keys

SirQuack@feddit.nl on 30 Apr 23:28 collapse

But how else am I to verify my trust? I trust GitHub!

/s

CeeBee_Eh@lemmy.world on 29 Apr 21:53 collapse

Give CodeBerg a look. It’s starting to pick up some steam.

codeberg.org

Eyedust@lemmy.dbzer0.com on 30 Apr 02:08 next collapse

A lot of my favorite open source android apps have been switching to CodeBerg. Some of my less than legal ones have moved to Telegram, unfortunately. That aside, CodeBerg is great and hopefully it will gain even more traction soon.

It’s nice that Obtainium supports CodeBerg, too. I have a few must-have apps that I like to keep up to date straight from their repositories.

Venus_Ziegenfalle@feddit.org on 30 Apr 08:00 collapse

Some of my less than legal ones have moved to Telegram

I’m intrigued

Eyedust@lemmy.dbzer0.com on 30 Apr 08:19 collapse

Lol, its just my manga/anime apps. You can still find some of the repositories on github, but they moved all updates to TG. They also request users to not put the app name on any social media to avoid what happened to Tachiyomi.

There’s a large sweep going on with anime piracy atm, too. Github has been obliterating apps left and right.

Matty_r@programming.dev on 01 May 00:02 collapse

CodeBerg is a public instance of Forgejo. You can run your own local instance of Forgejo.

At some point they’ll have federation working so you’ll be able to use your home instance of Forgejo to interact with other projects/instances.

StarlightDust@lemmy.blahaj.zone on 29 Apr 19:04 collapse

Ngl if you pirate indie porn you are scum. Most people who make it aren’t well off.

Hawk@lemmy.dbzer0.com on 29 Apr 20:11 next collapse

Like Katy Perry???

StarlightDust@lemmy.blahaj.zone on 29 Apr 21:23 collapse

Don’t be a bell end

Duamerthrax@lemmy.world on 30 Apr 00:34 next collapse

Is this a pirating tool or a tool for downloading local copies of what you did pay for? I know Fansly has weird settings where you lose access to stuff you paid for if you change your tier or need to lapse your membership for a bit. I stopped paying anyone when the archiving tool I used stopped working.

pupbiru@aussie.zone on 30 Apr 01:31 collapse

not everyone that downloads content isn’t paying for it… they might just want it in a place or format that isn’t being provided