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

help-circle





  • 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.


  • It’s extremely confusing but there are basically 2 measurements systems for food energy:

    There’s kilocalories (abbreviated as cal) and there’s kilojoules (abbreviated as kJ). It can get very confusing because some places will label them calories (cal) and Calories (kJ), lower and upper case respectively which is extremely confusing because 1 kJ is equivalent to 4.81 cal.

    According to Wikipedia the US and Canada use kilocalories (cal or calories) and pretty much the rest of the world uses kilojoules (kJ or Calories).

    https://en.wikipedia.org/wiki/Food_energy#Nutrition_labels

    The main difference between the two is that kilocalories are a measure of heat energy, where 1 kilocalorie is the heat needed to warm 1 liter of water by 1 degree celcius. Whereas a kilojoule is a measure of energy usually described by force in newtons.

    They’re both actually from the metric system, but kilocalorie is the old and obsolete form while kilojoules is the currently accepted metric measurement.








  • 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.





  • ShaunaTheDead@fedia.iotoLemmy Shitpost@lemmy.worldLets Help Adobe
    link
    fedilink
    arrow-up
    19
    arrow-down
    1
    ·
    2 months ago

    Cool animation! 10/10 style points!

    For those unaware, Adobe changed their terms of service recently to say that if you agree to the terms then they officially own anything you create using their software and can use it however they want. Specifically this line:

    you grant us a non-exclusive, worldwide, royalty-free sublicensable, license, to use, reproduce, publicly display, distribute, modify, create derivative works based on, publicly perform, and translate the Content.

    This probably means that Adobe has built some kind of backdoor into their programs to access your files and send it off to their servers. Pretty shitty of them!