YearOfTheCommieDesktop [they/them]

  • 0 Posts
  • 69 Comments
Joined 1 year ago
cake
Cake day: July 12th, 2023

help-circle

  • the part where it’s running windows not so much but it’s a better kb layout for sure

    The ppp is growing on me, especially since suspend and camera and shit work now but it is still janky (mine tried to melt a pogo pin sadness ) and the battery life is atrocious yeah (though not bad with the keyboard’s 6000mAh!!). It may end up being a bridge for me that leads to not having a smartphone at all though lol.

    Honestly I don’t mind the boot-up, tow-boot with built in jump drive is nice, and once its in linux I don’t have to care.

    There’s an aftermarket battery claiming 3500mAh that does anecdotally feel like it’s actually a bit better than stock (and a lot better than the shitty offbrands I’ve bought before)

    For me it’s just a matter of something that actually works tho, I don’t have nearly the time to build my own shit with custom chips on an architecture with even less support than aarch64. I’m already putting a lot into getting shit to work on mobile linux ARM












  • 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/waitForKeyElements.js@v1.2/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.