• 1 Post
  • 22 Comments
Joined 1 year ago
cake
Cake day: June 7th, 2023

help-circle

  • Laughing at Trump has gotten old for me. He has bottomed out the level of idiocy so much that it’s just not funny anymore, almost like real-life flanderisation. If anything, it brings me sadness thinking how half of america is somehow more stupid than this guy.

    If this community is going to be just a list of stupid shit Trump is going to say until the elections, I am not sure if I want it in my face every day, especially as a non-american. It must be possible for me to block posts based on words

    Edit: At least on Eternity there is such a filter! I shall see nothing about this arsehole anymore

















  • anar@lemmy.mltoProgrammer Humor@lemmy.mlSounds great in theory
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    edit-2
    1 year ago

    This reminds me when a senior engineer asked me to write exception handling on a one-off python script, not a production code - just a script devs can use internally. The “handling” was that the program should exit when a file is not found. He wanted me to try the file open, except the file error, print “file not found” message and exit(1).

    Guess what, genius. Python already does that for you. No need to write an extra wrapper needlessly.