Claude, Excel, and a 1991 Masterpiece
Author(s): Han Qi Originally published on Towards AI. Photo from Pintrich, P. R., Smith, D. A. F., Garcia, T., & McKeachie, W. J. (1991). A manual for the use of the Motivated Strategies for Learning Questionnaire The gist Transform a scanned PDF …
Visualizing Recursion Trees
Author(s): Han Qi Originally published on Towards AI. Recursion Execution path, Gif by Author How difficult would it be to create the above? Turns out way harder than I thought. How to reproduce Here’s the gist that you can Run All and …
Understanding Pickle to Make Decorators Work With Multiprocessing
Author(s): Han Qi Originally published on Towards AI. Photo by Hert Niks on Unsplash import osfrom multiprocessing import Poolimport timefrom functools import wrapsimport heartrateport_base = 10000def initialize_worker(): # This function runs only in the worker processes process_id = os.getpid() port = port_base …