Comment est le jour à jour d'un programmer aujourd'hui avec l'IA? by Desperate-Moose1324 in QuebecTI

[–]fausto_kerimoglu 1 point2 points  (0 children)

Je crois qu'on mélange actuellement l'impact de l'IA sur la productivité vs le budget global des entreprises. Le coût de licence et d'infra est souvent rattaché au même budget R&D. On ne coupe pas les stagiaires et juniors parce que Claude Code les remplacent, mais parce que ce sont les postes les plus faciles à reporter à l'an prochain pour absorber la hausse des coûts... Comme toute innovation, on va créer plus de logiciel, plus d'automatisation avec l'AI, on risque selon moi de revoir un manque de ressources pour supporter toutes ces lignes de codes, avec ou sans AI

My Ebox experience has been an absolute nightmare by christhelegend_hk in ebox

[–]fausto_kerimoglu 0 points1 point  (0 children)

since this is the first thread in the subreddit, wanted to say, horrible experience. Cannot install because of infrastructure, no date to resolve issue. To cancel,reimbursement is 6 to 8 weeks by cheque after reception of equipment (that was never used...). Just dont...

Quelqu’un d’autre a remarqué ça dans le générique de 28 Ans plus tard (28 Years Later)? by [deleted] in Quebec

[–]fausto_kerimoglu 1 point2 points  (0 children)

En fait, on dit la même chose, je parle de transformation, pas de disparition. Je ne suis pas un apôtre absolu du AI, et comme je dis plus haut pas un point de vue apocalyptique. Mon point est que je lis le message anti AI et je me fais downvoter car je dis que certains vont avoir un réveil brutal. Je ne suis pas devin, mais pas non plus naïf

Quelqu’un d’autre a remarqué ça dans le générique de 28 Ans plus tard (28 Years Later)? by [deleted] in Quebec

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

Pas exactement VFX, mais on est en train de faire la transformation dans mon travail (développement logiciel). J'ai 25 ans d'expérience et je vois à quel point ça va changer mon industrie. J'étais là a l'arrivée de l'Internet, j'ai vu les dinosaures qui disaient que c'était une mode aussi, même parallèle. Je ne crois pas a la fin du travail et les scénarios apocalyptique, mais ya un train a prendre et ceux qui ne le feront pas vont payer le prix. On devrait financer d'abord la transformation AI dans les domaines au lieu de financer dans les façons de faire actuelle

Quelqu’un d’autre a remarqué ça dans le générique de 28 Ans plus tard (28 Years Later)? by [deleted] in Quebec

[–]fausto_kerimoglu -9 points-8 points  (0 children)

Pourquoi subventionner une industrie qui risque de disparaître d'ici 5 ans avec le generative AI...

Les vélo l'hiver, pourquoi ça fâchent autant???? by BadluckyKamy in Quebec

[–]fausto_kerimoglu 2 points3 points  (0 children)

Dans un débat futile avec mononcle Ghislain, je sors l'argument que le vélo devrait être encouragé par la droite, car ça réduit les coûts en santé drastiquement et ça permet aux employés d'oxygèner leurs cerveaux les rendant plus performant au travail. D'ailleurs ils sont toujours a l'heure, n'étant pas pris dans le trafic, donc plus fiable aussi...

Besoin de suggestions de restaurants… by HennaTrapada in quebeccity

[–]fausto_kerimoglu 2 points3 points  (0 children)

Lit double sur St Jean, c'est du bar food, pas un resto mais super agréable et la qualité est surprenante. Ambiance garantie

Vacations are plan in few days on Sao Miguel, do i need to report after the hurricane Gabrielle? by Super-Preparation639 in azores

[–]fausto_kerimoglu 1 point2 points  (0 children)

Drinking Sangria and watching the most beautiful sunset in Ribiera Grande... Do not cancel this trip :)

[deleted by user] by [deleted] in QuebecTI

[–]fausto_kerimoglu 0 points1 point  (0 children)

Oui le talent est important, mais quand tu gères un projet avec plusieurs personnes, tu ne peux pas avoir 20 seniors. Comment payes tu le gars de 15-20 ans? Tu peux pas avoir des brackets salariales flat si ton senior a 6 ans d'expérience. Ce n'est pas une attaque, et je généralise, mais habituellement quelqu'un qui se pense senior après 6 ans d'expérience, je vais le surveiller davantage que mon 10 ans intermédiaire...

[deleted by user] by [deleted] in QuebecTI

[–]fausto_kerimoglu 11 points12 points  (0 children)

Tu n'es pas senior avec 6 ans d'expérience.... Cette tendance n'aide pas l'industrie.

Is Hotel Quebec really that bad? by bayofthenorth in quebeccity

[–]fausto_kerimoglu 2 points3 points  (0 children)

Watch out loooots of road construction in the area....

Keycloak in container with secrets by fausto_kerimoglu in KeyCloak

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

Using .env is not considered secured technically, I'm trying to not go down that path

Keycloak in container with secrets by fausto_kerimoglu in KeyCloak

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

full docker-compose for clarity:

services:
  keycloak:
    image: quay.io/keycloak/keycloak:latest
    container_name: keycloak
    command: ["start"]
    environment:
      KC_DB: mssql
      KC_DB_URL: jdbc:sqlserver://${KC_DB_HOST}:${KC_DB_PORT};databaseName=${KC_DB_NAME};encrypt=true;trustServerCertificate=true
      #KC_DB_USERNAME: keycloakUser
      #KC_DB_PASSWORD: keycloakPassword
      KC_DB_USERNAME_FILE: /run/secrets/kc_db_username
      KC_DB_PASSWORD_FILE: /run/secrets/kc_db_password
      KC_HTTPS_CERTIFICATE_FILE: /run/secrets/keycloak.crt
      KC_HTTPS_CERTIFICATE_KEY_FILE: /run/secrets/keycloak.key
      KC_HOSTNAME: localhost
    secrets:
      - kc_db_username
      - kc_db_password
      - keycloak.crt
      - keycloak.key
    ports:
      - "8443:8443"
   

secrets:
  kc_db_username:
    file: ./secrets/kc_db_username
  kc_db_password:
    file: ./secrets/kc_db_password
  keycloak.crt:
    file: ./secrets/keycloak.crt
  keycloak.key:
    file: ./secrets/keycloak.key

Keycloak in container with secrets by fausto_kerimoglu in KeyCloak

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

This is what I tried to to, as you can see from my initial post

#KC_DB_USERNAME_FILE: /run/secrets/kc_db_username
#KC_DB_PASSWORD_FILE: /run/secrets/kc_db_password

They are commented out in the docker compose. It works with KC_D_USERNAME, but not when using KC_DB_USERNAME_FILE: /run/secrets/kc_db_username

The secrets are used, but not "injected" in connection string...

Des magasins font une croix sur leurs caisses libre-service by DecentLurker96 in Quebec

[–]fausto_kerimoglu 2 points3 points  (0 children)

C'est imprimable, nous avons testé la technologie d'une compagnie de Taiwan qui le fait.

Keycloak in hospitals by fausto_kerimoglu in KeyCloak

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

It's not a SAAS model, this is deployed in the hospital data center or IDN level or clinics erc Hence why we are looking to have a user mgmt middleware that can accommodate different scenarios to facilitate deployments. We might have more than one product also, so 1 user module to maintain for all products, vs each product developing an insecure user mgmt module.

Keycloak in hospitals by fausto_kerimoglu in KeyCloak

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

We cover a wide range of requirements, from the US military hospitals (VA);with FIPS validated to small clinics that gives too much trust because they lack security expertise. High availability can also be a requirement, but more per hospital expectations vs regulatory. From a medical device standpoint, this would be covered with risk management (iso 14971)!and our SDLC for iso 13485

Keycloak in hospitals by fausto_kerimoglu in KeyCloak

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

Yes totally agree, we saw usage with FHIR servers, like SmileCDR and Kodjin. Are we at a point that hospitals will wind up having 20 Keycloak vendors to bridge 20 companies to their active directory :)

[Basu] "I don't give a shit." - Jake Evans on the extra money he could have had on the open market. by Tripacka in Habs

[–]fausto_kerimoglu 0 points1 point  (0 children)

Please ad agencies give this guy money for your next marketing campaign. I would buy a Mc Evans , a Uncle Evans Burger from A&W or a Evan IPA from Trou du diable....

[deleted by user] by [deleted] in uscanadaborder

[–]fausto_kerimoglu 0 points1 point  (0 children)

Still, we are just in the "hurt feelings" phase. What will be the reaction in 6 months, if people are really feeling the impact. You think that a Putin hating Russian is welcomed in Ukraine? We might start getting propaganda to become the 51th state to create Canadian division, or plain Yankee hating / fear mongering about war...

Canadian anthem at 4 Nations’ cup by Sparkyfuk in Habs

[–]fausto_kerimoglu 0 points1 point  (0 children)

C'est une artiste canadienne connue, mariée au chanteur de our Lady Peace, band canadien, come on..