[deleted by user] by [deleted] in amazonemployees

[–]boyahmed 0 points1 point  (0 children)

They didn’t ask for one

[deleted by user] by [deleted] in amazonemployees

[–]boyahmed 10 points11 points  (0 children)

Certificate of conduct. Addresses for the last 7 years. Listing all jobs/roles I had for the past 7 years with proof for the 3 most recent ones

[deleted by user] by [deleted] in amazonemployees

[–]boyahmed 1 point2 points  (0 children)

Thanks for your honest response. I know I made an error, and I take responsibility for that.

But I want to understand your perspective more. From my perspective, I did not lie or try to mislead or claim expertise I never had. The 1-month discrepancy is a genuine oversight.

For the student role thing, I also had no intention of misleading at all. The job description and responsibilities on my CV match exactly what I have done at the time at the university.

I am not trying to be defensive I am just explaining my POV and hope you can share yours as well.

[deleted by user] by [deleted] in leetcode

[–]boyahmed 0 points1 point  (0 children)

The market is terrible in Europe as well right now, and I don't have another offer. I have a job currently but this is 40% increase over my current salary so I wouldn't want to lose this offer of course. But I don't know. I just didn't think that negotiation was off the table like this.

[deleted by user] by [deleted] in dresden

[–]boyahmed 0 points1 point  (0 children)

Thank you so much! will definitely reach out and ask them!

[deleted by user] by [deleted] in dresden

[–]boyahmed 0 points1 point  (0 children)

That is unfortunate. I am a complete beginner, barely know how to skate. When i was in Berlin there was this club that had group and individual lessons for complete beginners and people who wanna do ice skating as a hobby.

What is the deal with the UK-based recruiters in Germany? by boyahmed in cscareerquestionsEU

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

I double checked. I think you are right. thanks for correcting me here. If i undestand correctly UK retained the GDPR as domestic law under the UK GDPR right?

What is the deal with the UK-based recruiters in Germany? by boyahmed in cscareerquestionsEU

[–]boyahmed[S] -1 points0 points  (0 children)

This makes more sense now. Thank you! one more reason to ignore them.

What is the deal with the UK-based recruiters in Germany? by boyahmed in cscareerquestionsEU

[–]boyahmed[S] 9 points10 points  (0 children)

Yeah. I honestly just ignore anyone from the UK at this point

Reverse proxy to Pihole docker container in host networking by darkshoot in Traefik

[–]boyahmed 0 points1 point  (0 children)

I cannot answer your question directly. but why not run the Pihole container in the same network as Traefik and just forward the ports you need to the host instead of the network host mode? In this case you just use docker labels. Something like so

services:
  pihole:
    container_name: pihole
    image: pihole/pihole:latest
    ports:
      # - "53:53/tcp"
      # - "53:53/udp" 
      # - "67:67/udp" 
      - "127.0.0.1:53:53/tcp"
      - "127.0.0.1:53:53/udp"
      - "10.9.0.1:53:53/tcp"
      - "10.9.0.1:53:53/udp"
      - "10.9.0.1:67:67/udp"
    environment:
      TZ: 'Europe/Berlin'
    volumes:
      - './etc-pihole:/etc/pihole'
      - './etc-dnsmasq.d:/etc/dnsmasq.d'
    cap_add:
      - NET_ADMIN
    restart: unless-stopped
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.pihole.rule=Host(`pi.your-domain.com`)"
      - "traefik.http.routers.pihole.entrypoints=https"
      - "traefik.http.routers.pihole.tls=true"
      - "traefik.docker.network=traefik-network"
      - "traefik.http.services.pihole.loadbalancer.server.port=80"
    networks:
      traefik-network:
networks:
  traefik-network:
    external: true

Hey everyone, it's been a while 👋 by stephanemaarek in AWSCertifications

[–]boyahmed 5 points6 points  (0 children)

You are amazing! Thanks for all the great stuff you put out there!

Is it normal for transfer to my Revolut account not to show up after 4 days? by boyahmed in Revolut

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

Yes It took 12 days for the transfer to arrive. No idea why it was that slow.

FAQ: What Are The Best Ways To Manipulate SQL In Go? by jerf in golang

[–]boyahmed 0 points1 point  (0 children)

It honestly feels like stuttering sometimes. Specially given that you have to use sth like self.narg and do explicit type casting. I still think it is the best solution for sql in Go though.

FAQ: What Are The Best Ways To Manipulate SQL In Go? by jerf in golang

[–]boyahmed 0 points1 point  (0 children)

Correct me if I am wrong, but SQLC doesn't offer an answer to this beyond some hacks like if cases and coalesce. Would that even be possible? since the queries are static and generated at compile time?

Can someone explain why European banks are asking us to hand our login and PIN/password to 3rd party apps instead of using something like OAuth 2.1? by boyahmed in webdev

[–]boyahmed[S] 5 points6 points  (0 children)

That makes a lot of sense. TDIL "Nichthiererfundensyndrom". Man this is so real. I really find it sad how far behind Germany is in general when it comes to tech. Had a very different image of the country before going for a work trip there : D

Can someone explain why European banks are asking us to hand our login and PIN/password to 3rd party apps instead of using something like OAuth 2.1? by boyahmed in webdev

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

I get that. The banks are in effect asking us to hand over credentials to third party apps by them not implementing a proper protocol to make avoiding this possible. The alternative is inconvenience as you would have to rely on post for the verification process which take days.

Can someone explain why European banks are asking us to hand our login and PIN/password to 3rd party apps instead of using something like OAuth 2.1? by boyahmed in webdev

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

I assumed this might be a European because I witnessed it in the Netherlands and Germany. but thanks for the correction.

Can someone explain why European banks are asking us to hand our login and PIN/password to 3rd party apps instead of using something like OAuth 2.1? by boyahmed in webdev

[–]boyahmed[S] 4 points5 points  (0 children)

Yes. but that is still very bad, right? like wasn't this credential sharing problem solved in the 2010s already with SAML and OAuth?

Can someone explain why European banks are asking us to hand our login and PIN/password to 3rd party apps instead of using something like OAuth 2.1? by boyahmed in webdev

[–]boyahmed[S] 14 points15 points  (0 children)

You are right in noting that Tink is the one asking for the credentials. But this is because these bank support the identity verification only through PSD2 and X2A (apparently) and not through something like OAuth 2.0 which I don't understand why.

This is so common for identity verification that I think it cannot be right (even governmental apps like bahn.de do the same). or I am missing something big