• Remember the tool pycallgraph, useful in tandem with cprofile for getting lots of profile information about your module.
    • NBC (Comcast) added another streaming service, Peacock.
    • Only 5 companies have ever hit the trillion cap. Four comma club!
    • Even in a workplace environment, put yourself in your colleagues’ shoes. See things from your customer’s perspective. Really helps.
    • Placed Amazon fresh order last night.
    • Finished servant season 1. Good, but left lots of questions and loose ends. Need season 2.
    • New Eminem album.
    • I love the integrations between the google calendar and gmail. Autocreation of flights, hotels, events, etc – fantastic.
    • Really interesting:
    • Got an unsolicited call from facebook today. Recruiter for senior positions in infra/scalability. Bay area based. Set up a coding interview for next week.
    • Practice problems.
    • The neuroscience behind mindfulness is clear. Breathe, smile, stand tall. All work.
    • Python itertools.combinations/permutations.
    • Google coding interview #2 today. Went well.
    • Lunch with briley at wing ferno.
    • Put new (2021) registration on the BMW.
    • When doing DFS or BFS, you can keep track of the depth/level. Just store each node as (val, depth) instead of (val), then increment it within the (for neighbor in neighbors: queue.append()).