9

I wrote a quick script that opens links to external sites in a new tab. It works everywhere, not just on lemmy.world. You need a browser extension to embed custom javascript to use it.

document.addEventListener('click', evt => {
	const href = (evt.target?.tagName === 'A' ? evt.target : evt.target?.closest('a'))?.getAttribute('href');
	if (href && !href.startsWith(location.origin) && href.match(/^(?:https?:)?\/\//)) {
		window.open(href, '_blank');
		evt.preventDefault();
	}
});
[-] subzero12479@lemmy.world 4 points 1 year ago

https://www.reddit.com/r/BotDefense/comments/14riw76/botdefense_is_wrapping_up_operations/

Like many anti-abuse projects on Reddit, we've done all of this for free while putting up with Reddit's penchant for springing detrimental changes on developers and moderators (e.g., adding API limits without advance notice and blocking Pushshift) and figuring out workarounds for numerous scalability issues that Reddit never seems to fix. Without Pushshift, the number of malicious bots we were able to ban dropped to 5,517 in May.

The "blocking Pushift" part is what actively makes their work harder by a lot.

[-] subzero12479@lemmy.world 11 points 1 year ago

Bots on Reddit for example did farm karma to later sell those accounts (more karma makes accounts look more legit) or circumnavigate karma thresholds to spam. There is no karma here so that's (hopefully) not going to become a thing.

[-] subzero12479@lemmy.world 8 points 1 year ago

Greetings, fellow humans. Do you enjoy building and living in structures, farming, cooking, transportation, and participating in leisure activities such as sports and entertainment as much as I do?

subzero12479

joined 1 year ago