• 1 Post
  • 18 Comments
Joined 1 year ago
cake
Cake day: March 27th, 2025

help-circle












  • I’d like to point out that it is suggested that information influences spacetime, too. That is, your RAM gains mass as soon as you boot your computer. It bends spacetime a tiny bit more if information is stored on it. So every trait of matter within spacetime turns out to be interconvertible:

    Mass Energy Information Mass.

    More craziness: In expanded spacetime, the amount of information on your RAM is decreased. With the energy you’re pumping in, it could store more.

    Even more craziness: Information could be the foundation of spacetime, building it though quantum entanglement. (ER=EPR conjecture, Mark van Raamsdonk)







  • Explanation

    [ is an alias for the program test, so you can call man test for more info.
    && is bash syntax for conjunction. In A && B, B will only be called if A returned a exit code >0 (error). You can call man bash for more info.
    || is bash syntax for disjunction. In A || B, B will only be called if A returned exit code =0 (success). true and false are programs that just return exit codes 0 respectively 1.