• 130 Posts
  • 1.63K Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle




  • I am pretty sure your PC doesn’t block ICMP requests and you can get the MAC address of the IP address using the arp command and then check the first three octets against the MAC vendors database.

    This is all possible in Bash but the script will be slightly more complicated and will involve three different tools, ping, arp, curl.

    But I am sure you know how to check your PC IP address anyway.



  • One other factor is that ICE engines are extremely complicated engines with many unique parts and established car manufacturers have perfected the technology over many generations. For comparison, electrical motors are a lot simpler engines, that are easier to manufacture and maintain. I read an article if VW switches entirely to EVs they still need to fire tens of thousands of employees as they won’t be needed to produce the same amount of cars.

    This and the fact that a lot of the focus on the EVs is on the software and European car manufacturers are struggling immensely of building modern software to run their cars. This gives Tesla and Chinese EV manufacturers a big advantage.


  • One comment though, you are moving the bashrc and bash_profile instead of copying it. So consider fixing it in your instructions.

    You could have also run a for loop and ping all the IPs in your subnet. Something like this will work:

    for i in {1..254}; do ping -c 1 -W 1 192.168.1.$i &> /dev/null && echo 192.168.1.$i; done
    

    Presuming that your subnet is 192.168.1.0/24. This command will loop through all the IPs in this network and only print the one that are alive.

    I didn’t know that Steam have added an exception for /nix which is pretty cool. Thanks for sharing