Hi guy

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

help-circle
  • I call my Dr.

    I book an appointment. If urgent but not medically urgent to my immediate wellbeing I can get in in a week or so.

    If urgent, but not emergency, I can go to a clinic or the hospital non emergency (hospital can have wait times up to several hours)

    If emergency and severe or traumatic injury or life threatening - emergency at hospital. Triage assesses need. Last time I had to take someone it was maybe a 20 minute wait - they had been hurt pretty bad - got jumped.

    None of any of the above will cost me any money.

    An ambulance, though, costs like 75$ if it is not life threatening.

    Canada.


  • I got a pixel 9 for $240 CAD via carrier promotion in Canada.

    I held out getting a new phone as long as I could and they offered a new pixel 9 for $5 per month for 24 months

    Not to trade in after 24.

    It’s mine. For 5$ a month.

    When I received it I didn’t turn it on for a week.

    Read as much as I could to decide that Google would only ever see the single boot to enable developer mode and enable OEM unlock to flash graphenos.

    It seemed intimidating, but the process to install is very smooth.








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