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/)DW
Posts
11
Comments
1,363
Joined
2 yr. ago

  • Many people are themselves not particularly attractive, so this is may be a matter of realistic expectations.

    It's only interesting when there's a large disparity in attractiveness which is generally anomalous. I think "many" falling into this category is probably an overstatement.

  • #!/bin/bash

    ping 255.255.255.0 > checker &

    sleep 5

    kill "$!"

    grep unreachable checker || echo '255.255.255.0'

    ping 255.255.255.1 > checker &

    sleep 5

    kill "$!"

    grep unreachable checker || echo '255.255.255.1'

    ping 255.255.255.2 > checker &

    sleep 5

    kill "$!"

    grep unreachable checker || echo '255.255.255.2'

    ...

    Did I do it coach? 😭