The Daily Psyop

Where Skepticism Meets Insight

News

A Private, Open-Source, Self-Hosted App for Streaming Videos, Audio Files, Photos, and More to any Device

If you’re tired of censorship and dystopian threats against civil liberties, subscribe to Reclaim The Net.

Sign Up To Keep Reading

This post is for Reclaim The Net supporters.

Gain access to the entire archive of features and supporters-only content.

Help protect free speech, freedom from surveillance, and digital civil liberties.

Join

Already a supporter? Login here

If you’re tired of censorship and dystopian threats against civil liberties, subscribe to Reclaim The Net.

The post A Private, Open-Source, Self-Hosted App for Streaming Videos, Audio Files, Photos, and More to any Device appeared first on Reclaim The Net.

Leave a Reply

Your email address will not be published. Required fields are marked *

document.addEventListener("DOMContentLoaded", function () { // Get all category links const categoryLinks = document.querySelectorAll(".tg-post-categories > a"); const categoriesToHide = new Set(); // Iterate through all categories and identify parents categoryLinks.forEach((link) => { const href = link.getAttribute("href"); // Extract category hierarchy after "/category/" const categoryPath = href.split("/category/")[1]?.split("/"); if (categoryPath && categoryPath.length > 1) { // Mark parent categories for hiding for (let i = 0; i < categoryPath.length - 1; i++) { const parentCategoryPath = `/category/${categoryPath.slice(0, i + 1).join("/")}/`; categoriesToHide.add(parentCategoryPath); } } }); // Hide parent categories if their children are displayed categoryLinks.forEach((link) => { const href = link.getAttribute("href"); if (categoriesToHide.has(href)) { link.style.display = "none"; } }); });