Skip Navigation

Posts
2
Comments
132
Joined
2 yr. ago

  • That's terrifying efficient of them: taking a nape while waiting for a snack!

  • These funds were used to purchase [...] and the production of The Wolf of Wall Street and other films.

    That's fitting.

  • Sorry, but I'm not sure what you are talking about.

    This video is about how the dictatorial ideas of guys like Curtis Yarvin are beeing implemented in front of us. It's two months old and describes what is currently happening too well.

  • 🫂

  • He's clearly looking victorious and proud of it.

  • Stop looking away then.

  • We should use uuids

  • No, we already have it and do not plan increasing our nuclear arsenal.

  • France stopped production of military fuel 30 years ago.

    The current goal is about recycling the existing nuclear waste, to reduce the need for long term storage and natural uranium.

  • C++? Shoot me

  • If they were an award for political meme of the year, I vote this one 🤌

  • You can't risk a man in the middle 😂

  • The boolean operator 'If and only if' do not have a relation with the program instruction 'if'.

    The programatic 'if' is a jump, not a boolean operator. It do not have truth table.

    In logic:, if and iff can be seen like functions taking two booleans and returning a boolean

    • 'if a then b' (noted a -> b): return true if a is false or b is true. Example: 'if I eat pizza then I fart' This is true even if I fart all the time (if b is true, we do not care about the value of a) as long as I fart when eating pizza (if a is true, b must be also true)
    • 'a <-> b' is equivalent to 'a -> b and b -> a': the two should be true at the same time. I can only fart will eating pizza and cannot fart otherwise.