joseph zhong

Week 1

work

General Notes from week 1

List of randomly useful things in no particular ordering

List of stuff to learn

Frameworks

List of stuff learned

Python

import threading

thread1 = threading.Thread(target=<function_name>)  
thread2 = threading.Thread(target=<...>, kwargs={<'Var':Val})

Frameworks