• 2 Posts
  • 207 Comments
Joined 1 year ago
cake
Cake day: July 9th, 2023

help-circle






  • pazukaza@lemmy.mltoTechnology@lemmy.worldMen Overran a Job Fair for Women in Tech
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    7
    ·
    edit-2
    1 year ago

    I don’t see the problem with the fair. Women are incredibly underrepresented in IT. Creating a space for them to join the industry or create connections seems healthy.

    This sounds like the argument of rich white kids complaining about black kids getting the scholarships. If you want to balance an unbalanced system, you have to give incentives to the afflicted group.

    I work in IT and I get at least 2 job offers every day in LinkedIn, why the F would I invade a women only fair to prove some point? Let them have something… It’s not like this will affect men in the industry.














  • Mmm do you know Linux containers? Like Docker containers, for example?

    You need to understand Linux namespace and Linux containers to understand this trick. It isn’t super advanced to be honest, just a Linux feature that is very useful.

    It can be overwhelming if you haven’t worked with containers before: https://youtu.be/fTcit7F5Bcg?si=rQlq0mJyapIpOlx8

    Basically you can have multiple “network stacks” in the same machine, and they are isolated. By network stacks I mean things like the netfilter rules and the routing rules.

    So, if you deploy a VPN inside a network namespace that isn’t the host’s namespace, the host won’t route the traffic to the VPN by default. Only the processes that are attached to that network namespace will process the network packets with the netfilter and routing rules of that namespace. So, if you only attach the Firefox process to the network namespace of the VPN, only the traffic generated by that process will go through the tunnel.