• 0 Posts
  • 32 Comments
Joined 1 year ago
cake
Cake day: July 8th, 2023

help-circle






  • unfortunately it is complicated… the reason modular is more expensive is because manufacturing and logistics become much more difficult and they lose the opportunity to sell new phones every year claiming new features. it’s a double loss for them.

    our consumerist culture makes it difficult for people to realise this, but most of the time we are not paying the real cost of products (the modular question, also sustainability, ethical questions). we tend to complain about the expensive one, when the cheap one might be the one to blame because it’s simply shifting the cost away from the companies and costumers.

    if the market ever moves towards modular phones, hopefully a few years later you could be able to do that you’re suggesting



  • their home address, social security number, face, email, phone number, passwords, their emails and texts, etc could be out there for anyone to see soon or may already be

    this part is important and few people talk about this. your data is indeed for faceless companies eyes only, but for now.

    you’d have to blindly trust all big datas’ security practices and that they won’t be leaked any time in the future, either by an inside agent or by a security vulnerability.

    once upon a time we did the same to our online accounts and used the same password over and over, only to find they were stored as plain text waiting to be leaked…








  • arvere@lemmy.mltoMildly Infuriating@lemmy.worldThanks Spez!
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    1 year ago

    [-] thunderbox666 « 1 point 2 months ago

    Pretty much any subdomain will go to the nginx server and it will only do something if youve configured that subdomain in the config - everything else just gets ignored, or you can setup a catchall to handle all the unconfigured stuff

    so you will need something like this (might not be exact, been a long time since i had to configure NGINX haha)

    server {
    server_name ha.mydomain.duckdns.org;
    location / {
    proxy_pass http://hostnameOrIP1:port1;
    }
    }
    server {
    server_name nextcloud.mydomain.duckdns.org;
    location / {
    proxy_pass http://hostnameOrIP2: port
    }
    }
    

    an easier way would be to use Nginx Proxy Manager which gives you a nice GUI to add and manage all the sites.




  • I don’t think I agree with you, replaceability depends on a lot of factors, really.

    I’m a lead dev who works mostly in test automation and dev ops. I can assure you that no matter how much and thoroughly I document and share knowledge (I’ve became known in my company for that since every piece of doc has my name somewhere on it lol) I can’t see anyone around there being able to fully take the reins if something happened to me.

    in my case, it’s a mixture of talent crisis in the industry, lack of interest/expertise in the field and my own company’s culture (that doesn’t value these infrastructural subjects enough). I bet other people from different areas in tech might share different reasons

    but all in all, being irreplaceable is hardly an employee’s fault. if a company can’t manage to lose an employee (or lets people get away without documenting/sharing knowledge) it’s entirely their own fault!