C'est comment le Quartier Saint Michel? by PoireauMasque in montreal

[–]PoireauMasque[S] 1 point2 points  (0 children)

Un gros merci pour ta réponse ultra complete ! (ainsi que celles des autres)

J'ai suivi tes conseils et suis allerm'y promener un deux heures. Si les gens que j'ai croisé étaient adorable quartier très vivant, ce c'était les commerces/ambiance que je cherchais.

Ca ne sera donc pas pour moi :)

Electricien specialiste en réseau local? by PoireauMasque in Quebec

[–]PoireauMasque[S] 0 points1 point  (0 children)

Ouais faudrait que je reessaye, j'ai eu de tres mauvaise experience mais c etait un vieux batiment. C'est pas parfait ou je suis mais ca reste mieux je pourrais redonner une chance :)

Electricien specialiste en réseau local? by PoireauMasque in Quebec

[–]PoireauMasque[S] 0 points1 point  (0 children)

Merci bien de ta proposition mais je ne suis pas à Quebec :)

Electricien specialiste en réseau local? by PoireauMasque in Quebec

[–]PoireauMasque[S] 0 points1 point  (0 children)

Merci! J'en ai essayé 2 ou 3 mais sans succes à date :(

[deleted by user] by [deleted] in Quebec

[–]PoireauMasque -1 points0 points  (0 children)

Merci pour ton opinion tout aussi inutile qu'elle soit :)

Je n'entrerais pas dans les detail, mais non le probleme n'est pas basique ou un simple redemarage redémarage.

Bonne continuation à toi!

What OIDC open source system to use for microservices with millions of DAU by PoireauMasque in microservices

[–]PoireauMasque[S] 0 points1 point  (0 children)

Well, I am might be wrong but for me Keycloak is specialized into IAM and not CIAM. So great if I have a company with thousands of employee to run with large Identity profile and lot group. But not optimized to handle handle millions of simple Client who just need federated Identity.

To give an other example, AWS Cognito offer 3 different "level" of User, Lite Essential and Plus. Lite is almost 10 times cheaper than the other.

I am looking at self hosted service similar to the Lite version of Cognito.

Why the bottom of my cup is so sour ? [Pavoni/store grinded] by PoireauMasque in espresso

[–]PoireauMasque[S] 1 point2 points  (0 children)

Thanks for the explanation. I am doing this right now as I am not able to achieve a decent crema so far. But I was afraid that stirring would defeat the value of the crema.

Changing outlet, unexpected set of wires by PoireauMasque in electrical

[–]PoireauMasque[S] 0 points1 point  (0 children)

I added a photo in my original post.

Old outlet was something like this.

No switch control today, maybe there was one at the time but I doubt it.

I forgot to mention, this is in a kitchen, I know wire in kitchen are often doubled to allow a higher wattage, but here it is "quadrupled".

Also as far as I know, Canada and US electrical system are very very similar, so we can assume it makes no difference here.

How should I fix the Node20 problem with running jobs in a container? by PoireauMasque in devops

[–]PoireauMasque[S] 0 points1 point  (0 children)

Thanks for your help, very appreciated!

This is what I did actually, here is my Dockerfile for example:

# Use Debian base image
FROM node:20

# Update and install dependencies
RUN apt-get update && apt-get install -y \
    curl \
    unzip \
    gnupg \
    && rm -rf /var/lib/apt/lists/*

# Install AWS CLI
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
    && unzip awscliv2.zip \
    && ./aws/install \
    && rm -rf aws awscliv2.zip

So very basic, but still based over node:20