archlinux Arch Linux Not correct suspension.
Jump
  • memchr memchr 1 year ago 0%

    does systemctl suspend work?

    0
  • archlinux Arch Linux Not correct suspension.
    Jump
  • memchr memchr 1 year ago 0%

    How did you suspend the system?

    0
  • archlinux Arch Linux Would the Arch Linux forums ever switch to Discourse?
    Jump
  • memchr memchr 1 year ago 100%

    What advantage does Discourse have over FluxBB?

    8
  • youshouldknow You Should Know YSK about corporations' strategies to kill open source protocols
    Jump
  • memchr memchr 1 year ago 100%

    It would be nice to have some sort of mutually assured destruction with these mega corps.

    1
  • fediverse Fediverse Lemmy's total users exceeds 740k today, up from 540k yesterday
    Jump
  • memchr memchr 1 year ago 100%

    The situation has worsened. I counted about 2 million new "users" in 3 days.

    1
  • fediverse Fediverse Lemmy's total users exceeds 740k today, up from 540k yesterday
    Jump
  • memchr memchr 1 year ago 100%

    yes, it's called defederation.

    3
  • memes Memes Thanks to Mr CEO of reddit, lemmy be like
    Jump
  • memchr memchr 1 year ago 100%

    spez is fediverse salesman of the year

    17
  • mindustry
    Mindustry memchr 1 year ago 100%
    [schematic] Compact Plastanium Compressor

    ![](https://lemmy.world/pictrs/image/4ff442c0-391e-47cd-a014-beaac37b3dd6.png) ``` bXNjaAF4nE1QPU/DMBC9JM5HU6FObAyZEFQEJJAY+gOY2asObnIUI8eObIfCDweGAuHsVkAcR/feu/fOMRQwSYAp3iHM7up7ya0TXImhq65h2qJtjOid0ArmQi2q28qJg35R3VSWq7bUg1tQ3f9ZIZN8jdJCvFxN4DgoQagb3fUGrdUGjrSQNb44wxtHcLblDs0/IqMmYmC2NqLdIFnVM76SUDwNqglHKnu9JY/SLcLUaslN3XOFEvKOZvANAsAJbYgBIlppqCAHSHxBsARGVUQMfFDPnLjYS55NPAvjOH5DRjAvUojGT2CEGfHf447qHaXFUPjEJCQyWsk+0T+MuDDs0OHF1IvvNO7UT6Fwykj2GSxkZCHlNyMKMPbwjdA5tfhYcjHvSsOh95NyOu7XwZT5noI+OYvgbLmWA66qy6sOu+bRlEuD7aqyuOlQOe6vs3rgg3SUmvpUCD9Nb+bv6wfR4G9j ```

    4
    0
    fediverse Fediverse Lemmy's total users exceeds 740k today, up from 540k yesterday
    Jump
  • memchr memchr 1 year ago 87%

    There are many more bad instances like this in the statistics. I think it will become a problem for Lemmy sooner or later.

    6
  • fediverse Fediverse Lemmy's total users exceeds 740k today, up from 540k yesterday
    Jump
  • memchr memchr 1 year ago 100%

    I think it's either bots or some spooky spammers that are falsely reporting the number of users. e.g. lemmy.k6qw.com currently claims to have 44k users with no posts...

    14
  • archlinux Arch Linux Reflector choosing the worst possible mirrors
    Jump
  • memchr memchr 1 year ago 100%

    A bit off topic:

    Normally the mirrors behind the CDN would have decent speeds everywhere, e.g.

    These are the top tree mirrors currently on the mirror status and they are all behind cloudflare.

    4
  • memchr memchr 1 year ago 100%

    user script manager like this one

    5
  • memchr memchr 1 year ago 100%
    // ==UserScript==
    // @name        archive.org link
    // @include     *://*.google*/search*
    // @include     *://*
    // @exclude     *://*.archive.org*
    // @exclude     *://archive.org*
    // @grant       none
    // @version     1.0
    // @author      memchr
    // @description 6/15/2023, 6:57:32 AM
    // ==/UserScript==
    function get_archive_href(href) {
      return "https://web.archive.org/web/" + href.replace(/^https?:\/\/www\.reddit\.com/, "https://old.reddit.com")
    }
    
    if (window.location.hostname.match(/^(\w*\.)?google.*$/)) { // google
      const results = document.querySelectorAll('div.yuRUbf > a');
      results.forEach(e => {
        let href = e.getAttribute('href');
        href = get_archive_href(href);
        let archive_link = document.createElement('a');
        archive_link.href = href;
        archive_link.textContent = "archive";
        archive_link.style.marginLeft = "10px";
        e.insertAdjacentElement("afterend", archive_link);
      })
    } else if (!window.location.hostname.match(/(localhost$|^(127|192|10)\.)/)) {
      const href = get_archive_href(location.href);
      document.addEventListener('keydown', function(event) {
        if (event.ctrlKey && event.altKey && event.key === 'a') {
          window.location.href = href;
        }
      });
    }
    

    press shift+ctrl+A or click on archive if you use google.

    10
  • technology Technology Google is getting a lot worse because of the Reddit blackouts
    Jump
  • memchr memchr 1 year ago 100%

    You can use appending https://web.archive.org/web/ to the said reddit URL (use old.reddit.com) as a workaround. The archive team has been archiving a lot of reddit content lately.

    2
  • lemmy
    Lemmy memchr 1 year ago 91%
    .ml TLD en.wikipedia.org

    Isn't the .ml TLD administered by freenom? How can we be sure that lemmy.ml is safe from a hostile takeover by this shady company with a history of hijacking high-traffic domains and demanding more money?

    10
    1
    archlinux Arch Linux Arch Linux system won't connect to the network/internet
    Jump
  • memchr memchr 1 year ago 100%

    You are welcome.

    However, I suspect it's possibly a system corruption. So check your memory and hard drive to make sure they are OK before using your PC again.

    And consider using btrfs, you can take snapshots before updating packages and restore them in case of package corruption.

    1
  • archlinux Arch Linux Arch Linux system won't connect to the network/internet
    Jump
  • memchr memchr 1 year ago 0%

    ip a shows no interface except lo.

    what is the output of lspci -v -s 05:00.0 and lspci -v -s 06:00.0?

    0
  • archlinux Arch Linux Arch Linux system won't connect to the network/internet
    Jump
  • memchr memchr 1 year ago 100%

    Sure thing, mind you post some specs like output of ip a, and ip route show? And what network manager do you use?

    1
  • lemmyworld Lemmy.World Announcements Welcome reddit refugees!
    Jump
  • memchr memchr 1 year ago 100%

    digg déjà vu

    6