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/)S
Posts
2
Comments
1022
Joined
2 yr. ago

  • Deleted

    Permanently Deleted

    Jump
  • One is a comment on society and the other is some teenage boys surviving a year on their own.

  • We can make México pay for it!

  • Boo hoo. Cinema is dead.

    Maybe people should have spoken out against monopolies (or oligopolies) before it affects them.

  • Deleted

    Permanently Deleted

    Jump
  • As a Canadian who has barely drank any bourbon since February (and has not bought a bottle), this makes me feel good.

  • Deleted

    Permanently Deleted

    Jump
  • Sucks to your assmar.

  • The usage is correct and indicates possession.

  • That's the multiple worlds theory, which is discussed in the video.

  • It should be "comma".

  • Not to discourage you, but Lemmy is pretty small compared to reddit. Developing a niche community at this point is pretty tough. It might be more productive to find a gaming community that you like and posting there instead.

    Either way, good luck!

  • Just do whatever you did for Vietnam.

  • Deleted

    Permanently Deleted

    Jump
  • Any nation that wants to keep their sovereignty needs nukes. Agreements like the Budapest Memorandum were a mistake for some of the countries involved (Ukraine).

  • Japan's in general is quite xenophobic, and I'm actually surprised it wasn't a requirement already.

    The US doesn't have an official language, so it would be weird to enforce English (for example). US is also full of immigrant/colonizers, so xenophobia is a bit weird there -- it's pulling up the ladder.

    I agree the double standard is funny, these were just some related thoughts.

  • True enough, but it's pretty much the same to use sed, unless you need those milliseconds of performance boost.

  • Definitely not the ultimate, since it's not POSIX, but still a nice tidbit.

  • I was thinking sed, too, but to replicate the behaviour (and scene):

     sh
        
    echo "HOLD THE DOOR" | sed -n '
      p
      s/E//g p
      s/L//g p
      s/TH//g p
      s/ //g p
      s/DO//g p'
    
      

    Note: -n suppresses the default printing that sed does, so I could include the last p for symmetry and clarity 🙂

  • A warm, white and creamy liquid.

  • me_irl

    Jump
  • Go to A&W, they never add ice.

  • Or

     
        
    base64 -d <<< 'dXIgbW9tCmhhaGEgZ290dGVtCg=='
    
      

    Can't remember if <<< is POSIX or not, but pretty sure it works in bash and zsh.