this post was submitted on 24 Aug 2024
614 points (99.0% liked)

Programmer Humor

32483 readers
318 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] muntedcrocodile@lemm.ee 7 points 2 months ago (8 children)

I hate asyncs, but I don't mind the way Python does it.

[–] psivchaz@reddthat.com 9 points 2 months ago (4 children)

I like async but dislike await. I spend entirely too much time on everything I build trying to maximize how much I can do in parallel because I find it tremendously satisfying.

[–] Luvon@beehaw.org 4 points 2 months ago

Await is usually there either because the performance doesn’t matter and the legibility is much higher with it, and/or because there are a series of asynchronous actions that depend on each other and await lets you write them as if they are sync because related to each other they are.

load more comments (3 replies)
load more comments (6 replies)