Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)MI
Posts
0
Comments
143
Joined
2 yr. ago

  • The USA is ahead of most nations at about 50% so not sure how you’re coming to that conclusion based off of evidence. Outside of maybe Brazil in the americas on both continents our ipv6 adoption is better than the rest, Canada included.

  • I grew up on a farm, any programmer that thinks farming or ranching is better is gonna have a rude awakening as to why there are very few farmers anymore.

    So no not every computer guy dreams of the farm, repairing 10miles of fence every April for the entire month all day every day isn’t what I would consider an improvement over programming. And that’s the easy part wait till you gotta help an animal struggling to give birth.

    I get programmers have this idea that farming or ranching is more pure somehow but it is murder on your body and soul in ways you wont understand. programming and computer stuff is a cakewalk in comparison. more politics but learn to play the game of thrones and its not too bad.

  • Accepting ssh key fingerprints on first ssh is a bad practice. Ssh ca’s and or sshfp are around and have been for decades. Accepting random host keys is like trusting random self signed ssl certificates.

    Use ssh ca’s for user and host keys so you can revoke and rekey hosts without having to update authorized keys. And then you can revoke access to hosts for users as well and much more.

  • apep

    Jump
  • Not without an inappropriate amount of delta v, it takes effort to hit the sun from the earth. Iirc it’s less energy to yeet yourself out of the solar system from earth than to hit the sun. Direct be even crazier amounts of energy to cancel out our orbital velocity. Iirc it would be easier to do a Jupiter transfer to save on delta v, going direct though is clown town energy waste unless you have some dying need to get there faster for some reason. But you’ll pay for it, a lot, least until we get warp drives or something neato exotic. https://issfd.org/ISSFD_2014/ISSFD24_Paper_S6-5_jehn.pdf If you’re willing to trade time there are less costly ways to “hit” a 700 000 km radius target energy wise.

  • On ye olde hpux this would work, especially when you did rm-fr /$var and $var was unset and nobody unit tested their shell back then. That db server ran for 2 days though with open file handles before it finally died.

  • Key here is the outer [] and interaction of $[], test doesn't have == by default in standard posix, so no this isn't posix shell or bourne compatible. Tis but another bashism. I could probably force zsh into a more bourne mode to try it but its definitely not portable bourne shell its bash.

     
        
    $ [ $[ $RANDOM % 6 ] == 0 ] && echo rm || echo ok
    zsh: = not found
    $ zsh --version
    zsh 5.9 (x86_64-pc-linux-gnu)
    
      

    == should be -eq for this to be posix/bourne portable, you could use = but -eq is for numeric comparisons so not quite right.