• 0 Posts
  • 39 Comments
Joined 8 months ago
cake
Cake day: March 3rd, 2024

help-circle
  • For negativity bias my wife just told me a great technique that she uses for that. Come up with a list of people whose opinions matter to you. Any time you question yourself, imagine how each person on that list would react to what you did. Since those are the only people whose opinions matter to you, if it’s mostly positive, then you should feel proud of your choice.


  • Another thing that wasn’t mentioned in the video that Proton does is it also – sometimes, depending on the game – checks a list of known requirements for a game and installs them through winetricks, or makes other recommended changes to game files that are known to make the game work.

    When Proton is updated and the patch notes mention that a game was fixed, it’s something to do with this part of the process. A certain library, or whatever was missing and Proton installs it for you behind the scenes.

    It also runs WINE through Steam’s launcher (aka Steam Linux Runtime) which has some common redistributables (aka Steamworks SDK Redist) built right into it, and it also runs appropriate anti-cheat solutions (aka Proton EasyAntiCheat Runtime or Proton BattlEye Runtime).










  • Elves in LOTR have technically infinite vision because the world used to be flat and illuminated by two glowing trees that resided in Valinor. Because the world was flat, and Elves have essentially perfect vision at any distance, they could actually see things that were on the opposite side of the world.

    After Morgoth (aka Melkor, aka the evil god that Sauron worships) and Ungoliant (the mother of Shelob, the spider that nearly kills Frodo) destroyed the trees then the world was made into a globe and Elves infinite vision ability, while still useful, wasn’t quite as powerful as before.



  • It’s quite good and also I like that they largely support Linux. They have phone apps, browser extensions, desktop apps, and even CLIs. They also have downloadable configurations for OpenVPN and WireGuard if you want to go that route. They’ve also got what I assume are fairly basic features of most VPNs like kill switching, private DNS servers, etc.


  • There’s quite a lot that can be gleaned from the depots for the game on steamdb: https://steamdb.info/app/1422450/depots/

    I don’t know if this information is already public but here are a couple of quick inferences I made by looking a the files. I’m not overly familiar with Valve’s intellectual properties so I don’t recognize any specific characters or franchises.

    There’s likely a hero named Yamato who has the abilities:

    • Shadow Form
    • Power Stance
    • Infinity Slash
    • Healing Slash
    • Flying Strike

    There’s a lot more hero information but that’s the top one in the depots.

    The game might be called “Citadel”, or it may have just been called that internally at Valve. The reason I suspect that is because of there appears to be a game folder called “citadel” which appears to be the main game folder.


  • ShaunaTheDead@fedia.iotoScience Memes@mander.xyz🐊🐓🦖
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    3 months ago

    I actually just learned this recently, but dinosaurs differ from reptiles in that dinosaurs have legs that are under their bodies whereas reptiles have legs that splay out to the side. So all mammals, and birds, with legs directly under their bodies are probably more closely related to dinosaurs then reptiles.






  • My favorite tips are:

    You can filter the output of a command. Most commands return parameters like (output, error) so you can filter them by number like 1>/dev/null will filter the output and only show the errors, and 2>/dev/null will filter the errors and only show the output. Also if you want a command to run silently but it doesn’t have it’s own built-in quiet mode you can add &>/dev/null which will filter everything.

    Bash (and other shell’s I assume) can be fully customized. In addition to the .bashrc file in your home directory, there are also a few common files that bash will look for like .bash_aliases, .bash_commands, .bash_profile or you can create your own and just add to the end of the .bashrc file ./YOUR_CUSTOM_BASH_FILE_NAME

    Inside that file you can add any custom commands you want to run for every bash shell like aliases and what not.

    I personally often use a simple update command like so alias up='sudo apt update -y && sudo apt upgrade -y && sudo apt autoremove -y' which just makes running updates, upgrades, and clean-up so much easier. Just type up and enter your password. I have previously added in things like &>/dev/null to quiet the commands and echo Fetching updates... to make some commands quieter but still give some simple feedback.

    There’s also the basics of moving around a terminal command as others have pointed out. The easiest and the one I use the most is if you hold CTRL+LEFT_ARROW the cursor will move entire words instead of one character at a time. Very helpful if you need to change something in the middle of a command.