2025 06-June 24
Date: 2025 06-June 24
Morning Meeting
There was no laser alignment on the new screw pump 1.
Follow up with CS3.
Check in with Don McCommon concerning the raw sewage pump 1 shaft.
Carl:
- TDEC is coming today for inspection.
- 8 o'clock shut down ABF towers 1 and 4
- The Blower Building will be named Ronnie Cobb - the letter sized needs to be assessed.
Python Skill of the Day: functools.partial
from functools import partial
def power(base, exponent):
return base ** exponent
square = partial(power, exponent=2)
cube = partial(power, exponent=3)
print(square(5)) # 25
print(cube(2)) # 8