Skip Navigation

Posts
20
Comments
2,052
Joined
2 yr. ago

  • wtf I never heard of this game before. How come a game that cost ~$140 million had virtually no marketing except for Will Smith posting it on his youtube channel?

  • Could be postgres-related. Federation is only "jammed" if the source instance thinks your instance is having an issue because it takes too long to respond. Maybe enabling slow query log on postgres and then reviewing that log could point you in the right direction.

  • If AI cameras are that smart and can identify who takes what from such shitty resolution and terrible angle, we should have lost our jobs a long time ago to AIs.

  • It's easier to start with docker first simply because of the sheer amount of learning resources available on the internet. If you're having issues, you can usually find a solution quickly with a search engine.

    That's being said, there's not much differences on how to use them these days. You can even run docker compose on podman.

  • Checking lemmy.world federation status at: https://phiresky.github.io/lemmy-federation-state/site?domain=lemmy.world . There, you can see that social.packetloss.gg is listed among the "407 failing instances".

    You'll need to check if your server actually configured to receive federation traffics. If you're using cloudflare or some other web application firewall, make sure they're not doing any anti bots measures on the /inbox endpoint. For example, in Cloudflare, create a new WAF rule (Security -> WAF) for /inbox and set it to skip all security.

    If you don't use any web application firewall at all, did you just upgraded your instance from v18.x to v19.x recently right before experiencing federation issue? v19.x has increased resource consumption and will have problem running on small server after running for a while. For small VPS (~4GB of RAM), you might want to adjust database pool_size to <30 on lemmy.hjson file. Restarting lemmy AND postgres every once in a while also helps if you're on a small VPS.

  • I see. I always put them on a separate bag so they're always dead last. If they're on the same bag, then it makes sense to be at the bottom.

  • US: "You should watch your border, Russia is about to invade"

    Ukraine: "Pfft, yeah, riight..."

    Later...

    US: "You should be careful, ISIS is about to let loose in Moscow"

    Russia: "Pfft, yeah, riight..."

  • Basically this, but with cleaning products/ chemicals last.

  • What's the point of planning to integrate with activitypub if they do shit like this?

  • Creators must disclose content that:

    Makes a real person appear to say or do something they didn’t do

    Alters footage of a real event or place

    Generates a realistic-looking scene that didn’t actually occur

    So, they want deepfakes to be clearly labeled, but if the entire video was scripted by chatgpt, the AI label is not required?

  • Because there is no demand, display manufacturers don't produce small phone displays anymore. And because there's no small display in stock, phone manufacturers have given up on producing small smartphones. Technically, you can contract the display manufacturers to restart production of small phone displays, but no one seems to be interested in taking the upfront risk.

  • But there is law governing how you store your firearms and ammunition, so kids can't access them, right? It's not true freedom then /s

  • I'm often blinded by flickering due to the recent Nvidia issue on Wayland so it's still accurate.

  • I think that's the icon for archived posts, not ads marking.

  • Mostly for convenience and standardizing your security procedure. Most apps popular for self hosting now supports OIDC, so it's no brainer to setup. On the other hand, most apps don't support 2fa, or support it in a weird way (e.g. no recovery code). By using an identity service, you can be sure all your apps follow the same login standard you setup.

    For those apps that don't support OIDC, you can simply slap oauth2proxy in front of it and it's done.

  • If you have some error message, it would be easier to identify the issue. Typical problems:

    • incorrect redirect url
    • incorrect endpoints on gitea. I haven't used gitea yet, but keycloak changes their openid configuration endpoint from [your host]/realms/[your realm]/.well-known/openid-configuration/ to [your host]/auth/realms/[your realm]/.well-known/openid-configuration/, and some apps still use the old one. You might be able to correct this by manually entering keycloak endpoint in your oidc settings.
  • Currently it's using ~511MB of memory, which is comparable to typical web apps. CPU usage is almost zero because it's idle most of the time (you're practically only using it on login only).

    I'm still on keycloak v19 and haven't had a change to upgrade to the latest version yet and have no idea how much memory the latest version will use, but I remember testing keycloak before they migrated to quarkus and it was sitting at ~2GB memory and was immediately turned off by it. I gave it a try again after I heard the memory usage got better and stick around since then.