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:

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