Peter Zhao wistful thoughts

Back to School

After a long summer interning at JPMorgan Chase as a Software Engineering Intern, I was finally ready to head back to school. Despite the COVID pandemic, Williams was still able to stay open for students to study, albeit under strict guidelines. So far, the experience has been well, with weekly testing, lots of food options (living next to a dining hall really helps too), and fantastic dormmates to live with. This semester, I’m taking a tutorial on machine learning, a seminar on algorithmic game theory, and working with professor Sam McCauley on my thesis on algorithms and data structures. Should be a fun semester, especially since I’ll have time to dive deep into topics I’m passionate about, and will be able to work on a couple of projects I’ve tossed on the backburner for awhile.

Casa de Papel

Being in quarantine lends itself to a lot of boredom (despite efforts to be productive), and Netflix luckily is a fantastic solution. Recently, I finished two seasons of the show Casa de Papel, Spanish for the House of Paper, and known in the US as Money Heist.

The show follows a team of criminals, each taking the name of a large city, and the Professor, who plans the Heist, an extravagant plan to steal over 2 billion Euros from the Mint of Spain. Despite the end goal of taking the money, it is revealed that the Heist serves a much greater purpose. The heist ironically doesn’t involve any direct theft, as they simply occupy the Mint and print money, technically stealing from no one. It is also a key motif of the Heist that no one is killed, to retain support of the public. Thus, it is simultaneously a revolutionary message against a government that bails out banks instead of its people, and cares more about its rich than its poor, as well homage towards the Professor’s father (purported to have come up with the Heist), who himself died in a bank heist trying to procure funds to care for his sick son.

In these trying times with COVID-19, the recession, and protests against police brutality, Money Heist is a refreshing reminder that even in difficult times, it is important to retain our own humanity as much as possible, and maintain clear goals when protesting and fighting against the system. We must realize that we determine our own fate and future, and we must fight for what we believe in, and being complicit to tyranny and injustice is unacceptable. Money Heist is a modern day Les Misérables, echoing much of the same themes, and it is a must-watch for anyone who enjoys an extremely well-written, intelligent drama that will make you rethink the role of government and politics.

Enjoy Bella Ciao, the fantastic Italian theme from the show, which is an age old Italian revolutionary song.

Hello World

Welcome to my website! My first post shall be the classic Hello World program that programmers love to start as their first code they compile to make whenever they start learning a new programming language or other technological resource. This is my first attempt at making a personal website/blog, and I would like to thank mdo for his great theme, as I myself have no talent in visual design, nor is it something I enjoy doing that much. I plan on using this to document projects I’m working on, movies/shows I’ve been watching, as well as interesting things I see online.

Here’s a code snippet to celebrate! Programmed in Python 3, and if you want to see what it does, just copy it into your favorite Python compiler!

text = "Hello World"
excitement = 7

def celebrate(string, excite):
    for i in range(excite):
        string += "!"
    return string

print(celebrate(text,excitement))

Enjoy, and welcome!