FunkyStuff [he/him]

  • 0 Posts
  • 4 Comments
Joined 4 years ago
cake
Cake day: June 9th, 2021

help-circle

  • One of my software engineering professors referenced the original C&H comic when explaining load testing, then he told us “well the nice thing about load testing software is that you can break it and just rebuild it exactly.” It’s nice we don’t have to do all the linear algebra and other crazy math to know how much load a server can take.


  • Throwback to when someone shared the OG version of this meme to my uni chat, I replied with "Oh you can simply do

    def is_even(n: int) -> boolean:
        if n > 0 return not is_even(n - 1)
        elif n < 0 return not is_even(n + 1)
        else return True
    

    And instead of laughing at the joke the TA in the chat said “When you start getting internships you’ll do n % 2” like I was being serious.