Hi guy

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

help-circle





  • These are the pigeons you seek.

    After her husband was brutally murdered and she had a few thousand enemy soldiers killed, to make peace Olga asked for a small tribute from each enemy household: 3 sparrows and 3 pigeons.

    https://pigeons-of-war.com/2022/07/08/saint-olga-of-kyiv-a-pioneer-of-pigeon-warfare/

    Now Olga gave to each soldier in her army a pigeon or a sparrow, and ordered them to attach by a thread to each pigeon and sparrow a piece of sulphur bound with small pieces of cloth. When night fell, Olga bade her soldiers release the pigeons and the sparrows. So the birds flew to their nests, the pigeons to the cotes, and the sparrows under the eaves. Thus the dove-cotes, the coops, the porches, and the haymows were set on fire. There was not a house that was not consumed, and it was impossible to extinguish the flames, because all the houses caught fire at once.

    The birds flew home.





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