• 0 Posts
  • 332 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle


  • How is it political to talk about yourself in vague terms when introducing yourself to a group!? Would it be political if he said his hair is brown? How about if he mentions the color of his skin, is that political?

    You make the statement political when you try to ban certain people from talking about who they are, if only white people talk about the color of their skin it’s not political to say you’re black, it’s political to try to block people from saying it. Saying you’re queer is on the same level of mentioning you have a wife/husband, in fact it’s even more vague, it’s in the same level of saying “since I was a boy/girl”, because queer does not necessarily mean non-heterosexual it can also mean non-cisgender so it’s an umbrella term to mean member of the LGBTQ+ community, if being queer is political then being heterosexual or cisgender also has to be, and I doubt people would be okay with having to step on eggshells not to mention anything that could make someone deduce their sexuality or gender. Hell, the same people who claim Queer is political are the ones who have the most problem with gender neutral language.


  • First of all, this is not a professional setting, he’s not an employee there, and that forum is open for everyone.

    Secondly, and way more important, people do that daily and no one cares especially when introducing oneself it’s common to mention stuff like your wife/husband and your preferred pronouns, hell, my corporate slack profile has my pronouns and those of everyone else. I’ve worked with trans people who introduced themselves as trans on the first day, and no one cared. So no, it’s perfectly okay for people to talk about themselves during an introduction even in professional settings.

    Last but not least, people being uncomfortable is not a good reason to ban something, members of the KKK might be uncomfortable about working next to a black person, so what? Should the black person hide that he’s black to not make the others uncomfortable? That’s bullshit. If a person is uncomfortable by another one saying they’re queer, then that first person needs to deal with it, being queer is part of who the other person is and he shouldn’t have to hide who he is because someone might be uncomfortable about it. You mentioned religion, which I don’t think falls into the same category because religion is a set of beliefs that many people change through their lives, but still, people wear crosses daily in professional settings and no one cares.



  • Yes, things like original email and Nickname are some of those questions because after they change the public might have no way of figuring it out. Notice the support tech asked for those informations and when provided with it he said that he couldn’t verify ownership, this means OP reported wrong information for the identifying questions.

    I’m not saying the service is great, asking him to access an email he claims to have lost access is dumb, but everything after that the tech support person did his best, and I don’t think he should have disabled 2FA, since it could be a social engineering attack.


  • Ok, lots of answers focusing on the game, so I think you have plenty of suggestions on what to try there. That being said I have never heard of bottles, I’ve used raw wine and PlayOnLinux before Steam integrated Proton so now I just use that.

    For docker it can be daunting, and home assistant is not an easy thing to setup. The thing with docker is that it can be very complex, but you don’t have to worry about the majority of it. I assume you have docker installed, enabled and your user is in the correct groups. Unfortunately Mint/Ubuntu don’t have docker in their normal repos so you probably had to add the docker PPA and install from there. Let’s run a couple of commands to ensure all went well:

    sudo systemctl status docker

    This should show you the status of the docker daemon, and it should say that it is Active. If you get a no such service type error then docker is not installed, if it’s not shown as active then the daemon is not started and can be done so by running sudo systemctl start docker (and you can replace start with enable for it to happen at boot). If it’s Active then awesome, let’s check that your used can run docker commands, try running this: docker run hello-world if that fails but sudo docker run hello-world works then your user doesn’t have access, you want to add your user to the docker group sudo usermod -aG docker $USER and reboot.

    Ok, docker hello world is working, what now? Now, I assume you have some idea of what docker is, but in a (wrong but simple) way you can think of it as virtual machines. Let’s try to run some cool stuff in it, there are two main ways, running a long complicated command, or writing those parameters on a file and running a simple command. This file is called a compose file, and should be named compose.yaml or docker-compose.yaml. let’s try that, create a folder called silverbullet (just because that’s the service we will try, it is a note taking app that I really like) and in there create a file compose.yaml and write the following content there (everything starting with # is a comment I added explaining what that does, and can be removed if you don’t want it):

    # This defines all of the services we want to run
    services:
      # This is the name of the service, it can be whatever you want
      silverbullet:
        # The image is the actual thing you want to run
        image: ghcr.io/silverbulletmd/silverbullet
        # This tells docker to restart the service if it closed for whatever reason, unless you specifically tell it to stop
        restart: unless-stopped
        # This will set environment variables inside the docker.
        # different services might require different environment variables set
        environment:
          # silver bullet uses SB_USER environment variable to set user/password for the main account. We're setting user to admin and password to 123 here
          - SB_USER=admin:123
        # This maps outside folders to inside folders so that your docker container can access them
        volumes:
          # Here we're telling it that the ./data folder should be accessible in the /space folder inside the docker
          # silver bullet stores stuff in the /space folder, so by mapping it to the ./data folder we can keep that data between runs
          - ./data:/space
        # This tells docker to map ports from the inside to your host machine, this allows you to access the docker container as if it were running on your machine
        ports:
          # This tells it to map the internal port 3000 to the external port 5000, so accessing http://localhost:5000/ from your machine will in fact access the same as http://localhost:3000/ inside docker
          # Silver bullet runs on port 3000, so we need to expose that port
          - 5000:3000
    

    Uff, that was a lot, but we’re done, now just run docker compose up -d (up to start -d to run as a daemon, i.e. in the background) and you should be able to access http://localhost:5000/ and get to Silver bullet logging in with admin 123, then if you write about something you will see files appearing in the silverbullet/data folder.

    I know that this was a lot in one go, but I chose Silver bullet because it touches all of the most common stuff you’ll need and it’s easy to get going.

    Good luck with your self hosting journey, and don’t hesitate to ask if you have any questions.


  • It all depends on your threat model, what is your fear? I personally would be very comfortable noting stuff down on a notebook, or even having a random text file on my PC, neither of those is likely to get compromised/tampered. Let’s assume you have someone living with you that you can’t trust, and you don’t want them to either be able to alter or read your entries, notebook and text files are not enough, but you can encrypt the notebook using any multitude of ways (including inventing your own language and symbols) and you can password encrypt the file in your PC. They could still destroy entries or the entire thing, if that is more of your concern then having backups might be more important. If you’re worried about altering past entries you can use something similar to a Blockchain, where the hash of your previous message is used in the new one so it’s obvious if someone erased a message, in the notebook you can do something like starting each message with the 5th to last word from the previous one or in some other way reference it.

    At the end of the day it all depends on what is it you’re afraid could happen to your entries, so we’ll need more information on that.


  • Nibodhika@lemmy.worldtoGames@lemmy.world(Rant) Don't buy Rockstar games.
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    1
    ·
    19 days ago

    The thing is, and I think you’re missing this, he got those wrong. After being asked for email and Nickname he provides them and the support person says “I’m unable to verify that you own the account”, that means he answered wrong, yes those might be bad questions because some random person might know them, but he didn’t.



  • No it hasn’t, Nvidia usability in Linux now is the same as it was 10-15 years ago, and that’s sort of the problem. What do you think has improved since then? I remember ~18 years ago getting Nvidia to work with the proprietary drivers on my Mint was just a couple of clicks away and I could play oblivion and many other games that ran on Wine (and the very few natives we had) just fine. The majority of the Nvidia issues are self-inflicted, always have been, the problem is that because you have to use the proprietary drivers it’s very easy to shoot yourself in the foot, and inexperienced people tend to do it very often, so my guess is that 10-15 years ago is when you started using Linux, and broke stuff with the Nvidia driver, nowadays you don’t break that stuff and you think the driver has changed, when what has changed is you.


  • Yes, I have a near flawless experience with Linux, but it was years in the making. One thing people don’t realize when they switch over is the amount of time you’ve spent in dealing with similar issues on Windows, but you did it so long ago and so often they’re second nature to you, so you don’t perceive them as problems. But when you start from scratch on Linux they’re daunting problems because they force you to learn new stuff.

    The same will happen to Linux over time, some stuff you’ll fix once and forever, others you’ll learn to work around and be okay with it. For me nowadays whenever I have to use Windows for something more than simple stuff it’s death by a thousand cuts, because I haven’t used windows in so long that my muscle memory for those caveats and weirdness (that I didn’t even noticed before switching) is completely gone.

    As for the specific things, you’re using an Nvidia card, which is known for not playing nice with Linux, you haven’t mentioned drivers but you have two options here, open source and very poorly performative Nouveau driver or the proprietary and doesn’t play nice with other stuff Nvidia one. Both are bad, but probably you want the Nvidia one.

    Also I don’t know how Ubuntu studio is, but I would recommend you try other distros, maybe Mint or I’ve heard wonderful stuff for Bazzite. Any way you can have your /home be in a different partition so you don’t lose your data when switching over and trying stuff, eventually you might find something that clicks for you, and it’s smooth sailing from then on. Good luck.


  • I don’t think you’ll find a replacement because the distinguishing feature for CS is that it’s a service game that you can play online with other people, any game that is not a service game will not be the same, because the single player campaign will be finite and playing against bots gets boring very fast. But that’s okay, as far as service based gaming goes CS is not bad, it doesn’t require payment and at least last time I checked the micro transactions were all cosmetics so no pay to win either.



  • I have a TV, a projector and a VR headset, which essentially are your options, so let me run through each of them giving you pros/cons for each.

    VR headset was a cool solution that someone mentioned here. It is an interesting approach, and the cheapest way to feel at the movie theater by yourself, it also allows you to play VR games which can be very immersive and it’s an experience. However it’s the worst visual quality of the 3 and you can’t bring anyone over for movie night.

    Projectors can be really bad, but since you have a good budget a little research should get you a relatively decent projector with at least 1080p native resolution. If you’re looking for screen size, or have limited space for a TV, this is the way. However, even great projectors will struggle with daylight, your room needs to be as dark as possible, which might mean blackout curtains completely closed if watching during daytime. Also audio can be relatively bad, especially because some projectors are somewhat loud, but you should be able to get a quiet decent one for that budget, but you might want to consider speakers or a sound bar.

    TVs are cheap and give you the best visual quality per price. They’re a pain in the ass to move (but not as much as you might think), but they don’t have any of the drawbacks of any of the other forms, but they’re also not great, however for 1k you can get an excellent TV and a very good sound bar that will allow you to view content in 4K HDR during daytime.




  • No, scales don’t measure mass but weight, it is completely possible to lose weight and have the scale show a larger number because of buoyancy. For example, grab a helium balloon capable of holding up a 1kg mass mid-air and the scale would show 1kg less than when you release it. This is very simple to understand, how much would the scale show for a 1kg object tied to that balloon? 0 of course, the object is not even touching the scale, and a slightly heavier object would only be making that slight weight difference of pressure on the sensors, not the remaining 1kg.

    So conservation of mass has nothing to do with the question here. It’s all to do with whether farts are denser than air while inside your body.



  • At my current job they asked what OS I wanted for my laptop and Linux was an option. I do have a Windows desktop at the office that I remote to that needs to be Windows for technical reasons, but my main device is Linux.

    At my job before this I worked for one year on my own Linux laptop, until one day I asked for a laptop lent temporarily because I was going to travel and my wife needed mine, and it had to be Windows. I never minded much because it was temporary, but when I came back I was told that I was supposed to always have been using a Windows machine and that I shouldn’t use a Linux machine anymore (even though our product was a website deployed to Linux servers). That was one of the reasons I eventually took another job, not the main one, but an important one nevertheless.

    Before that the company also offered Linux.

    And before that it was a very small company when all of the owners were software engineer guys using Linux themselves. I remember one day we were discussing OS and someone said “can we take a moment to recognize we’ve been talking about this for 15 minutes and no one even considered Windows as an option”.