fat cat is a user on octodon.social. You can follow them or interact with them if you have an account anywhere in the fediverse. If you don't, you can sign up here.
fat cat @3goliad

love me some impure languages
(given a list of functions l and a starting value n, return a list of the intermediate values of applying l in order to n)

list(map(lambda f:[l.append(f(l.pop())), l[-1]][1], [l.append(lambda x:l.pop()), l.append(n), l][2]))[:-1]