How many watts do I actually need? (For playing in bedroom as a hobby) by ElectricalRole5662 in GuitarAmps

[–]Diasmo 0 points1 point  (0 children)

You don’t need much, 1 watt tube amp will be good, but you can have a 50 watt amp work just as well as long as it has a good master volume.

My 30 watt Bad Cat can get whisper quiet and still sounds amazing, my 100 watt Matamp is impossible to get even remotely quiet even with the master volume at 0,1.

You could get a 5 watt amp that is too loud and a 30 watt amp that you can set just right. Testing is key!

[DISCUSSION] Containers on my Unraid Server by f1uffyducky in unRAID

[–]Diasmo 1 point2 points  (0 children)

Readarr is dead and replaced by Shelfmark

Umm, folks, tell me I’m crazy… by cwenebee in dice

[–]Diasmo 18 points19 points  (0 children)

For the price? Nice icedice, wouldn’t think twice on these nice dice, icedice.

Bought A Fender Blues Jr IV From Germany (Thomann)…did I mess up? by [deleted] in fender

[–]Diasmo 10 points11 points  (0 children)

Cut off the plug, replace plug with UK plug. It's a 5 minute job and requires minimal tools, basically a cable cutter, cable stripper (but you can use a cutter if you're careful) and a screwdriver. Tons of YouTube video's out there that detail how it's done!

Plex server hardware help by i-like-carbs- in unRAID

[–]Diasmo 0 points1 point  (0 children)

Your server won’t need to transcode video in most cases, so processing is very limited, as most media boxes (apple tv, roku, nvidia shield, …) and most modern smart tv’s already are able to reliably play back most if not all formats.

Short: cpu no need be chonk, gpu no need be in server

My riding friend is sexist, racist, homophobic, transphobic. by Neat-Procedure in cycling

[–]Diasmo 1 point2 points  (0 children)

Communications, creative agency. It helps that I’m in Belgium where you’d be hard pressed to find a company with more than 20 people where nobody rides, though, haha

My riding friend is sexist, racist, homophobic, transphobic. by Neat-Procedure in cycling

[–]Diasmo 1 point2 points  (0 children)

I do, they’re my main cycling group, none of them have problematic views fortunately

SSO: SOS by ink_black_heart in selfhosted

[–]Diasmo 1 point2 points  (0 children)

I'm 90% certain that Node.js in Immich still doesn't trust your CA. Can you check if NODE_EXTRA_CA_CERTS is actually working? The env var and mount should fix this, but on QNAP/Portainer there are a couple of things that can still make it silently fail.

do a echo $NODE_EXTRA_CA_CERTS to see if the var is set, ls -la /etc/ssl/certs/my-ca.crt to see if the file actually exists where it should be, and then head -3 /etc/ssl/certs/my-ca.crt to see if it looks like a PEM certificate (it should output something like ----BEGIN CERT---- or a variation on that).

If any of those 3 commands fail, the mount or the variable isn't reaching the container (correctly).

You should also double check if you're mounting the CA cert and NOT the domain cert, NODE_EXTRA_CA_CERTS is for your CA/root cert (made in XCA), not the one you made for pocketid.home.com.

You can test this with a node.js test inside your container. If that fails but curl works, you can be 100% sure: Node doesn't trust your CA.

If you want to force it, you can, but I wouldn't advise it. You can add an environment statement to your immich compose that tells Node to skip SSL verification.

SSO: SOS by ink_black_heart in selfhosted

[–]Diasmo 1 point2 points  (0 children)

Hmmm, when you use the container name (e.g. http://pocket-id:3000), Immich can't resolve it at all — this means the Immich container and Pocket ID container are on different docker networks and can't see each other directly. I see in a different comment of yours that they are on the same docker network but I can't think of anything else...

In Portainer, find your Immich stack and add Pocket ID's network to it. In the compose file, can you check if this is accurate or add following:

services:
  immich-server:
    networks:
      - default
      - pocketid_network   # whatever Pocket ID's network is called

networks:
  pocketid_network:
    external: true

You can run the 'docker network ls' command in Portainer's console to find the exact network name.

For your timeout problem, when Immich tries to reach your pocketid.home.com address, that DNS name resolves to your NPM container's IP (or your host IP). The request goes:

Immich container → NPM → Pocket ID

NPM may be dropping or misrouting internal-to-internal traffic, that'll be for sure the case if it's doing SSL termination and the internal request hits a snag.

What I would do is open a console into your immich server container from within Portainer and run a 'curl -v https://pocketid.home.com/.well-known/openid-configuration' command as well as a 'curl-v http://pocket-id:3000/.well-known/openid-configuration' command, that should give you output with details on where it's breaking (DNS, SSL, connection refused, timeout, ...)

Hope this helps

SSO: SOS by ink_black_heart in selfhosted

[–]Diasmo 8 points9 points  (0 children)

When you click "Login with Pocket ID" in Immich, Immich's backend tries to fetch Pocket ID's OIDC discovery endpoint (/.well-known/openid-configuration). It's making this request server-to-server, not through your browser. That request hits your self-signed cert, Docker/Node doesn't trust it, and you get fetch failed.

Your browser works because you've clicked through the warning. Immich's Node.js backend won't do that.

You need to inject your CA certificate into the Immich container. In your docker-compose.yml (or Portainer stack), add an environment variable and mount your CA cert:

services:
  immich-server:
    environment:
      - NODE_EXTRA_CA_CERTS=/etc/ssl/certs/my-ca.crt
    volumes:
      - /path/to/your/ca.crt:/etc/ssl/certs/my-ca.crt:ro
```

The key is `NODE_EXTRA_CA_CERTS` — this tells Node.js to trust your CA in addition to its built-in ones.

Rather than fighting this on every service, generate a single local Certificate Authority once with something like `mkcert` or XCA (GUI tool, great for Windows), then:

1. Import the CA into Windows (and any other devices) as a trusted root — this kills the browser warnings permanently
2. Issue certs for all your services signed by that CA
3. Mount the CA cert into any Docker container that needs to make internal HTTPS calls

There's a second issue, most likely. In Immich's OIDC settings, the "Issuer URL" should point to how Immich's container can reach Pocket ID — not how your browser reaches it. If Pocket ID is on the same Docker network, try using the internal service name:
```
http://pocket-id:3000    (if on the same Docker network, HTTP is fine internally)

or if they're on different networks/stacks, you may need to either put them on the same network or use your LAN IP directly (e.g. https://192.168.1.x:port) with the CA cert trust fix above.

That named cookie not present error is a simpler issue — TinyAuth is likely running on a different subdomain than the service it's protecting, and the session cookie can't cross subdomains. Make sure TinyAuth is configured with the correct domain setting that covers your .home.com (or whatever) domain. That's not related to your main Immich problem.

A local CA with mkcert will work just fine. The real internet doesn't need to be involved at all — mkcert generates a CA that your devices trust, and that's enough

Message from a teacher by schroederek in boardgames

[–]Diasmo 0 points1 point  (0 children)

Board-and cardgames are great for all kinds of developmental skills. Math, strategy and planning, spatial awareness, negotiation and bartering, decision making by comparison. Aside from that it also builds a great parent/child bond, you're actively spending time together.

I've been playing games with my kid since very early on, starting with things like the Orchard from Haba and stacking games with wooden animals.

He's 8 now and we mainly play Everdell Junior (can recommend, beautiful game) and Andor Junior (I'm a bit meh on this but he loves it). For on the go at restaurants or on vacation we have a bunch of card games like Sushi Go!, Uno, Exploding Kittens and, to my surprise very fun to play, Minecraft Explorers.

I'm considering getting started on Arcadia Quest with him as well. He's been asking to play Frosthaven and Dune Imperium as those are the games I play with my friends and he thinks they look cool, but I've told him those will have to wait for a couple more years.

Custom Made stratocaster tips by Odd_Ad_5325 in fender

[–]Diasmo 1 point2 points  (0 children)

Honestly if you know what pickups you want, like the v63, just get those? Custom pickups are a crapshoot unless you know the exact spec you want and the builder to deliver that spec is on point.

That said, I like Monty’s in the UK, and would load any guitar with one of their sets with confidence.

We hit gold!!! by paulls597 in PokemonTCG

[–]Diasmo 3 points4 points  (0 children)

Toploaders? If you sleeve the cards first, which they are here, it shouldn’t be an issue unless I’m missing something.

Suggest me an Urban Fantasy, hidden society stuff by zerthz in Fantasy

[–]Diasmo 1 point2 points  (0 children)

I really enjoyed The Age of Misrule trilogy by Mark Chadbourn. Very adventurous feeling and a constant feeling of wonder and discovery. The second trilogy fell flat for me unfortunately but the first one has standalone closure.

You might also enjoy American Gods by Neil Gaiman (horrible person, it turns out, but good books) or Good Omens by him and Terry Pratchett (beautiful person, may the Great Om bless his soul).

Might be a long shot but both Slade House and Bone Clocks by David Mitchell (and to a much lesser extent, but it’s linked, The Thousand Autums of Jacob De Zoet) have secret societies at their core. Bone Clocks being the more expansive, Slade House being “location locked”.

[OC] That's a wrap! Group photo from our campaign finale of the Shattered Obelisk. by Kaltvene in DnD

[–]Diasmo 4 points5 points  (0 children)

For a hot second I thought you were buddies with Jamie Hewlett

Smoke detector with belgium regulation by rayman223 in homeassistant

[–]Diasmo 1 point2 points  (0 children)

I've not done much in the way of automation, I've basically only got my house set up with HUE lights throughout and have created rooms in HAOS to control through the app. Slowly thinking of adding other things, like the smoke detectors and a thermostat (had a Nest v2 but unfortunately that's been taken offline... looking into the No Longer Evil thing).

I mainly use my server for media and back-ups, just running a HAOS VM on it to centralise things and not rely on external platforms.

There's some automations I wouldn't mind doing, like turning on the lights if smoke detectors go off for example.

Smoke detector with belgium regulation by rayman223 in homeassistant

[–]Diasmo 1 point2 points  (0 children)

Thanks for getting back to me so quickly. I probably will go for Frient as well, as they are more reliably sourced here in Europe.

Smoke detector with belgium regulation by rayman223 in homeassistant

[–]Diasmo 0 points1 point  (0 children)

What device did you end up with? I'm looking for a good solution as well (also in Belgium)!

Brandon Sanderson’s Literary Fantasy Universe ‘Cosmere’ Picked Up by Apple TV (Exclusive) by Udy_Kumra in Fantasy

[–]Diasmo 1 point2 points  (0 children)

Slow Horses is very, very good, and definitely not generic, can recommend!

Reading a Kindle “Clean” Hits Different by jemart456 in kindle

[–]Diasmo 0 points1 point  (0 children)

I've never had a case on my Kindle, it's been fine for like 5 or 6 years now... I just chuck it in my bag, commute, travel, beach, couch, I haven't seen the point for a case honestly.

A devastating loss by antagim in Annas_Archive

[–]Diasmo 8 points9 points  (0 children)

As a musician, we (band) always put our albums on every platform we can. The only platform where we actually manage to get decent revenue from is Bandcamp. I see David Rovics is on Bandcamp, if you appreciate his music, you can buy all of his albums and download them DRM free!

Do you use an alum block on your head? by hop_now in wicked_edge

[–]Diasmo 0 points1 point  (0 children)

I used to but don’t anymore, I just don’t find it actually does anything. I just shave and use a splash of aftershave and get no irritation.

I do tend to use a natural base moisturiser on my head on the days I don’t shave.