Hi guy

  • 1 Post
  • 155 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle




  • Except, today, the police aren’t just corrupt.

    They’re militarized agents of an authoritarian state where the “president” is a foreign asset and the president is a racist billionaire with a god complex.

    When Nazis, literal, actual Nazis, are given free reign to operate without oversight or opposition within the government to dismantle it, and nazis march in the streets without fear, because they are supported by the “president” and the president, the similarities end.

    There are plans are in place to destroy western society, roll back decades or a century of civil rights, eliminate any social safety net, and rule by technocracy.

    While you may be conflating things in jest, if you do not see the seriousness and actual present danger in the current regime, then you are just blinding yourself.

    This is nothing like anything before.

    This is the prelude to all out war on freedom, democracy, autonomy, and decency.

    On you. On me. On your neighbors.

    On everyone who doesn’t bend the knee.

    Scouts motto: Be prepared

    (Then I realized this was in shitpost, so, grain of salt. Anyway, what I said I said(











  • He’s saying the enemy is within and must be wiped out completely.

    Recursively and forcefully remove virus at Localhost.

    Just sent to a friend and I broke it down like this

    The commands wouldn’t work on Linux/Unix due to the format. But… They don’t need to if you’re just sending a message.

    127.0.0.1 means the local machine. The host.

    rm is remove. -r is recursively. -f means use force if necessary.

    The commands, when put together, would look something like this:

    traceroute wokemindvirus (find the location of and path to the virus)

    The virus has been located at localhost (internally)

    rm -rf /127.0.0.1/wokemindvirus

    Remove, forcefully and recursively until nothing is left, the woke virus, in the local host - USA.

    In other words, the enemy within must be wiped out.

    Tell me I’m crazy.


  • https://www.man7.org/linux/man-pages/man1/bash.1.html

    Lists A list is a sequence of one or more pipelines separated by one of the operators ;, &, &&, or ||, and optionally terminated by one of ;, &, or <newline>.

       Of these list operators, && and || have equal precedence, followed by ; and &, which have equal precedence.
    
       A sequence of one or more newlines may appear in a list instead of a semicolon to delimit commands.
    
       ....
    
       AND and OR lists are sequences of one or more pipelines separated by the && and || control operators, respectively.  AND and OR lists are executed with left associativity.  An AND list has the form
    
              command1 && command2
    
       **command2 is executed if, and only if, command1 returns an exit status of zero (success).**
    

    So, command 1 returns success, but command 2 fails. The FAILED comment at the beginning of the error message is the message to parse, one part succeeded, the other failed.

    Not using && and running your command by line will show where the error is.