this post was submitted on 16 Jul 2024
658 points (97.8% liked)

Programmer Humor

31997 readers
673 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
[–] brbposting@sh.itjust.works 24 points 1 month ago (5 children)

Apparently it’s really hard to get a progress bar right. It’s just kinda guessing, but some can be worse than others if coded carelessly, from what I’m reading.

[–] owsei@programming.dev 24 points 1 month ago (2 children)

While it's true that's a progess bar is guessing (since it doesn't know what would take more time in your computer). It should still finish when at 100%

[–] black0ut@pawb.social 20 points 1 month ago

This. The guessing part comes from the time it takes to do the tasks, but you know the number of tasks. So a progress bar should only reach 100% when all the tasks are completed.

For example, you might have a big process that performs 3 other small tasks and then finishes. You could reasonably assume that each small task is 33% of the big process, so after the first finishes you get 33% progress, then 66% after the second and 100% after the third. When the bar reaches 100%, the third task has finished, so your process has finished too.

What you don't know is how much time each small task takes, so if the first task needs 20 seconds and the following tasks take just 5, you'll spend 2/3 of the time on the first 33% of the progress bar, and then the remaining 66% gets done in 1/3 of the time.

[–] brbposting@sh.itjust.works 2 points 1 month ago

IDK how I missed that :)

load more comments (2 replies)