It was the best of times. It was the blurst of times!?
you stupid monkey
Such a good song. https://m.youtube.com/watch?v=9uYhIiW6lok
It was the best of times, I was just thinking about it but I don’t know if you want to go to the store or something else
It was the best of times to be honest with you and you are a good person to do it and you can get it from the material and the teaching is the same thing as the next
It was the best of times. It is the worst of times.
Microsoft Teams is always trying to autofill simple responses so I guess I’m gonna have to get creative when I would normally use a “Thanks” or a “Sounds good” etc lol
My friend and I screenshot our favorite reply suggestions
“Brb I have to take the shit of the century”
[screenshot of “Let me know how it goes!” or whatever
I like when all three responses go together
“Great! Let me know how it goes! Best of luck!”
“It was a dark and stormy night” has entered the chat
“Hmmm…” Backspace… Backspace…
“It was a bright and sunny day…”
“This is the worst vampire novel I’ve ever read.”
S P A R K L E S
I am going to eat a cactus
I know you were going to type that.
Works for code too
import math def multiply_bad(a:int, b:int) -> int: return a*b def multiply_better(a:int, b:int) -> int: return (-1 if a<0 else 1)*(-1 if b<0 else 1)*int(math.sqrt(a*a*b*b)) def multiply_perfect(a:int, b:int) -> int: product = 0 negative = False if a < 0: a = -1*a negative = not negative if b < 0: b = -1*b negative = not negative for i in range(a): for j in range(b): product += 1 if negative: return -1*product return product
Missed opportunity for an obfuscated recursive solution.
Damn you’re right. I bet i could come up with a bullshit bitwise operator solution too
So many missed opportunities. 🙂
care to explain this to a pleb in laymen’s terms?
Basically, “why cross the street when you can circle the block 4 times while walking backwards and end up at the same spot”?
It’s a joke, the less predictable way is just a far worse way to solve the problem, with a few faults sprinkled in.
writes a one way function