Skip Navigation
giddy giddy @beehaw.org

My son is trans which makes me transparent

Posts 0
Comments 29
*Permanently Deleted*
  • Looking good. Pls add ipad support to your roadmap

  • Use Docker and Nicotine+ to build a righteous music archive
  • i'm getting kazaa flashbacks

  • AEW RAMPAGE LIVE/POST DISCUSSION THREAD 23/07/23
  • Toni Storm with the Iron Sheik reference. Nice

  • wisdom rule
  • because what?

  • Donde estan?
  • La bibliotecha

  • Super Mario RPG - Nintendo Direct 6.21.2023
  • I was getting super excited until I saw the turn based combat

  • Goodbye, everyone
  • So sorry to hear that. Thankyou for your hard work

  • What are some must have web extensions or TamperMonkey scripts for Fediverse social medias (like Mastodon, Lemmy, Kbin ect ect).
  • I'm working on a user script to mark posts as read when I scroll past but I haven't got it working yet

  • What are some must have web extensions or TamperMonkey scripts for Fediverse social medias (like Mastodon, Lemmy, Kbin ect ect).
  • I use a custom script to open all post and external links on the front page in a new tab. Based on a script I found online but customised to beehaw specifically.

    // ==UserScript==
    // @name         beehaw - Open links in new tab
    // @description  Open links in new tab. Ctrl-click or Middle-click loads it in background
    // @match      http*://*beehaw.org/home*
    // @match      http*://*beehaw.org
    // @version      0.0.1
    // @grant        GM_openInTab
    // @run-at       document-start
    // ==/UserScript==
    
    var suppressing, clickedElement;
    
    window.addEventListener('mousedown', function (e) {
      clickedElement = e.target;
    }, true);
    
    window.addEventListener('mouseup', function (e) {
      if (e.button > 1 || e.altKey || e.target != clickedElement) {
        return;
      }
      var link = e.target.closest('a');
    
      if (!link || !link.href) {
          return;
      }
    
      if (link.getAttributeNode('aria-label') && link.getAttributeNode('aria-label').value == 'Expand here') {
          return;
      }
    
      if (link.href.startsWith('https://beehaw.org') && !link.href.startsWith('https://beehaw.org/post/')) {
        return;
      }
    
      GM_openInTab(link.href, {
        active: !e.button && !e.ctrlKey,
        setParent: true,
        insert: true,
      });
      suppressing = true;
      setTimeout(function () {
        window.dispatchEvent(new MouseEvent('mouseup', {bubbles: true}));
      });
      prevent(e);
    }, true);
    
    window.addEventListener('click', prevent, true);
    window.addEventListener('auxclick', prevent, true);
    
    function prevent(e) {
      if (!suppressing) {
        return;
      }
      e.preventDefault();
      e.stopPropagation();
      e.stopImmediatePropagation();
      setTimeout(function () {
        suppressing = false;
      }, 100);
    }
    
    
  • Are we 'Shadowbanned' from beehaw?
  • I can see you

  • How would you make Lemmy nicer for yourself?
    1. stop refreshing the front page/inserting new posts automatically
    2. mark as read on scroll past
    3. multireddit
    4. decent ipad app - mlem is a rgeat start on iphone but no ipad support
    5. consistent 'go back' experience - I have on a number of occasions gone into a post then clicked browser back button only to be presented with a completely different list of posts on my front page
  • How would you make Lemmy nicer for yourself?
  • Absolutely agree. THis is a big one for me

  • Australians saved $10,000 a year on average as a result of working from home, according to Cisco
  • I can believe that. Not to mention the time saving as well. My commute to the office is 90 minutes round trip minimum and I don't get paid for that time

  • Really hoping this place turns out to be better than r/australia
  • Agreed. The mods on r/Australia are nuts. I wear my ban from there with pride

  • Imgur app alternatives?
  • ditto

  • *Permanently Deleted*
  • I have an archive folder fool of services I have tried and either failed at or decided I didn't need it -

    backup beets bitcoin bitwarden clamav cockpit crypto cryptpad ctop deluge diskover dlna dockly dokuwiki emby firefox guacamole heimdall i2p jellyfin mail mailu minecraft minidlna mylar3 navidrome portainer pxe setiathome smtp ssl-proxy sync todotxt traefik ubooquity vpn wallabag watchtower

  • YouTube tests blocking videos unless you disable ad blockers
  • But if Invidious is just scraping the youtube site then it may get caught in this?