17 Jul
2023
17 Jul
'23
8:29 p.m.
# remainings[0] = 0 # remainings[1] = min_period # remainings[remaining_count] = remaining # >>> def remainings(idx, remaining_count, remaining, min_delay): # ... a = (remaining / remaining_count - min_delay) / (remaining_count - 1) # ... b = min_delay - a # ... return a * idx * idx + b * idx noting b depends on a also wondering what form here is useful ... maybe the timepoint rather than remaining, which would be eta - remaining? uhhhhhhhhhhhhhhhhhh also noting that remaining is wrong context maybe stop posting for a bit