this post was submitted on 10 Aug 2023
75 points (100.0% liked)

videos

2 readers
1 users here now

Breadtube if it didn't suck.

Post videos you genuinely enjoy and want to share, duh. Celebrate the diversity of interests shared by chapochatters by posting a deep dive into Venetian kelp farming, I dunno. Also media criticism, bite-sized versions of left-wing theory, all the stuff you expected. But I am curious about that kelp farming thing now that you mentioned it.

Low effort / spam videos might be removed, especially weeb content.

There is a cytube that you can paste videos into and watch with whoever happens to be around. It's open submission unless there's something important to commandeer it with at the time.

A weekly watch party happens every Saturday (Sunday down under), with video nominations Saturday-Monday, voting Monday-Thursday. See the pin for whatever stage it's currently in.

founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 1 year ago* (last edited 1 year ago)

I made a userscript (like a browser extension but less work) to show only content from other instances ("dunk mode"), but it can just as easily be inverted! If you want to give it a try, just install something like TamperMonkey in your browser and then copy/paste and save this script:

// ==UserScript==
// @name         Lib Blocker
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Block federated users on hexbear.net
// @author       YearOfTheCommieDesktop
// @match        https://hexbear.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @require      https://cdn.jsdelivr.net/gh/CoeJoder/[email protected]/waitForKeyElements.js
// @grant        none
// ==/UserScript==

function processComment(comment) {
    var link = comment.querySelectorAll('a[title="link"]');
    if (link.length >= 2 && (!link[1].href.includes("hexbear.net") && !link[1].href.includes("lemmygrad.ml"))) {
        comment.querySelector('button[aria-label="Collapse"]').click();
    }
    return true;
}

waitForKeyElements('.comment-node', processComment);

This will auto collapse all comments not from hexbear.net or lemmygrad. I could make it hide posts too, but browsing by Local I never see lib posts anyhow, so I didn't bother.