

In fact they should try. Due to dual/quad mode the only thing testing multiple sticks at once will tell you is if any of the sticks have failed. Only going one by one will tell you which ones or how many, otherwise you’ll have red herrings
Little bit of everything!
Avid Swiftie (come join us at !taylorswift@poptalk.scrubbles.tech )
Gaming (Mass Effect, Witcher, and too much Satisfactory)
Sci-fi
I live for 90s TV sitcoms


In fact they should try. Due to dual/quad mode the only thing testing multiple sticks at once will tell you is if any of the sticks have failed. Only going one by one will tell you which ones or how many, otherwise you’ll have red herrings


Yeah two sticks at once to me says mobo issue, IF you tested each stick individually and they both failed separately. Maybe not fried, I’d be hesitant to try them in a better mobo to not fry a slot too, but they might still be fine.
Did you test each stick individually to confirm both are dead? If two sticks are in there and it fails all that means is “at least one failed”. That’s just an indicator to go one stick at a time to determine which one.


Unless it’s ddr5 check your local ewaste recyclers, most have shops where you can buy used parts.


Exactly my use case, I’m on a couple communities that I’m sure there are people out there don’t like, but for the few of us who do really like the community we enjoy it. Those who don’t enjoy it are welcome to block us or not subscribe to us, but they insist instead on downvoting every single post because they personally don’t like it, ruining the experience for the actual people who do care about the community. You’re also right that it’s a small community, we’re not talking about Ask Lemmy, we’re talking about a small community with less than 100 people. Where a post may get a few up votes


That’s not at all what I’m talking about. Random downvotes are a constant, those don’t matter to me. However if you really hit 80% downvotes in my community alone, then to me I’m doing you a favor. You should have just blocked my community, so I’ll do it for you. It is honestly difficult to get that high or a downvote rate.


Personally I factor this in with bans on my communities. I very rarely ban, but I do if I notice people like this, who I dub “downvote trolls”. They don’t participate (or when they do it’s negatively), the just downvote constantly.
Now I’m fine with downvotes, I downvote, I think it’s healthy to say “I don’t like this content”. However if all you do is downvote (especially in a specific community) then I view a ban as a win win. We don’t have to deal with your negativity and obviously you don’t enjoy being here anyway from your voting patterns, so everyone wins.
For my communities I have a pretty healthy ratio. If you downvote 80% of the content, you’re on my radar. I won’t ban you on that data alone, but seriously 4 out of 5 votes on the community are on average down then why are you there?


Even those are being locked down behind DRM now


As long as they offer DRM free games I’ll buy. No sense worrying now about something that may not come to pass. They’re still a massive underdog who have seen epic and ea fail at stores, and they know their edge is DRM free
As soon as they give up DRM free I’ll stop giving them money


For everyone here, this is true, and I’d recommend buying a couple drives for quick replacements. If you don’t you’re gambling that 1) a replacement drive will be available and 2) that it will be affordable.
Keep a few spares lying around while we get through the ebbs and flows of the market. As K said, a person is smart, people are dumb and panicky. If ssd and storage prices rise, people panic and our hdds will rise too.
Prep now and thank yourself later.


Origins is awesome, but does it have controller support for the deck?


Hello fellow midwesterner!


Exactly this. People here mass downvote but I personally find AI to be extremely useful… To do things I already know how to do but don’t have the time for. I don’t trust it to do things I can’t spot the errors in


I’ve literally gotten jobs because of my homelabbing. Being able to talk about how I run services and why I enjoy them has helped more than most of my professional work


actually… probably true


Two things pop into mind


They killed off openvpn support a few years ago and am glad I did. They don’t care about power users, so they don’t care about my money either. Good riddance


Of course! Let me know how you run your containers and I may be able to help on that side too


Sure! I use Kaniko (Although I see now that it’s not maintained anymore). I’ll probably pull the image in locally to protect it…
Kaniko does the Docker in Docker, and I found an action that I use, but it looks like that was taken down… Luckily I archived it! Make an action in Forgejo (I have an infrastructure group that I add public repos to for actions. So this one is called action-koniko-build and all it has is this action.yml file in it:
name: Kaniko
description: Build a container image using Kaniko
inputs:
Dockerfile:
description: The Dockerfile to pass to Kaniko
required: true
image:
description: Name and tag under which to upload the image
required: true
registry:
description: Domain of the registry. Should be the same as the first path component of the tag.
required: true
username:
description: Username for the container registry
required: true
password:
description: Password for the container registry
required: true
context:
description: Workspace for the build
required: true
runs:
using: docker
image: docker://gcr.io/kaniko-project/executor:debug
entrypoint: /bin/sh
args:
- -c
- |
mkdir -p /kaniko/.docker
echo '{"auths":{"${{ inputs.registry }}":{"auth":"'$(printf "%s:%s" "${{ inputs.username }}" "${{ inputs.password }}" | base64 | tr -d '\n')'"}}}' > /kaniko/.docker/config.json
echo Config file follows!
cat /kaniko/.docker/config.json
/kaniko/executor --insecure --dockerfile ${{ inputs.Dockerfile }} --destination ${{ inputs.image }} --context dir://${{ inputs.context }}
Then, you can use it directly like:
name: Build and Deploy Docker Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: docker
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
- name: Get current date # This is just how I label my containers, do whatever you prefer
id: date
run: echo "::set-output name=date::$(date '+%Y%m%d-%H%M')"
- uses: path.to.your.forgejo.instance:port/infrastructure/action-koniko-build@main # This is what I said above, it references your infrastructure action, on the main branch
with:
Dockerfile: cluster/charts/auth/operator/Dockerfile
image: path.to.your.forgejo.instance:port/group/repo:${{ steps.date.outputs.date }}
registry: path.to.your.forgejo.instance:port/v1
username: ${{ env.GITHUB_ACTOR }}
password: ${{ secrets.RUNNER_TOKEN }} # I haven't found a good secret option that works well, I should see if they have fixed the built-in token
context: ${{ env.GITHUB_WORKSPACE }}
I run my runners in Kubernetes in the same cluster as my forgejo instance, so this all hooks up pretty easy. Lmk if you want to see that at all if it’s relevant. The big thing is that you’ll need to have them be Privileged, and there’s some complicated stuff where you need to run both the runner and the “dind” container together.


some dude (or dudette) is living rent free in this guy’s mind
Agreed. Luckily with RAM, you know pretty quickly if a stick is dead. Yeah the test can run for hours, but in my experience if a stick is dead, memtest will go red almost immediately, most of the time not even making it 2 minutes.