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/)M
Posts
1
Comments
240
Joined
3 yr. ago

  • Ew, you somehow always only hear U2? That's cursed bro.

  • You should consider taking a break, maybe get some electrolytes in you.

  • The Romans figured that out?

  • But just imagine what it can do for personalized ads. Why won't anyone think of the advertisers?

  • Turns out it is pronounced "jandalf".

  • Dumbest war in history so far.

  • "Are they yelling Boo?"

    "No sir, they are cheering for the bruise".

  • Several error messages incorrectly using the term “argument” have been corrected.

    Quarrelling over exactly what an argument is. Very pythonic.

  • Deleted

    Permanently Deleted

    Jump
  • "We're going to get real racist on people like you, so don't leave".

  • When you use the pipe you're passing stdout from the left command to stdin on the right command.

    file takes a filename as an argument, it does not read stdin (by default).

    The first command works because head does read from stdin and then echoes the first line, but as an argument to file using command substitution - the $( ... ) bit. Command substitution is neat but this is not really the best use-case for it.

    A better way is to use find with -print0 which makes it use a zero-byte instead of a newline character (otherwise the command will fail in case a filename contains a newline - newlines and spaces in filenames break a lot of scripts if you aren't careful) and -quit, which makes find exit after the first match. And then pass it to xargs which is a utility that transfers stdin to command arguments - In this case the file binary - and handles zero-bytes as seperators when using the -0 arg.

    $ find /usr/lib -maxdepth 1 -type l -print0 -quit | xargs -0 file

    Removing -quit from the find command also works as expected (ie. on each found link).

  • Say the line, Bart!

  • This would be considered petty even for a toddler.

  • I think it is the other way around. Some women flirt by acting like young girls (baby-voice, playing dumb/ditsy, etc) and we have been conditioned to perceive those behaviours as flirting.

  • What a guy!

  • He's allowed to if he is wearing a real FBI jacket at the time.

  • The highest pope density in the entire universe.

    Unless you acknowledge the space pope, obviously.

  • "In two weeks"

  • To be fair, there's currently quite a lot of "Worst Xs in US history".

  • I hate every one of these replies.