
Zeyu Yao
2x AIME qualifier
Distinction @ AMC 10
👋 Hey, I am Peter,
I started programming at 13, and in the past year, I have built a website that tracks more than 1.8k available taxis in Singapore, worked with AI to create a fully functional LSTM model that can predict stock prices, and did so much more. I plan to pursue further my passion for computer science to contribute to my community.
Cool stuff coming soon!
In the meantime, why not check out a random quote?
Here is the code snippet behind-the-scenes:
const quote = fetch("https://api.quotable.io/random")
.then((response) => response.json())
.then((data) => {
document.getElementById("quote").innerHTML = data.content;
document.getElementById("author").innerHTML = data.author;
})
.catch((error) => {
document.getElementById("quote").innerHTML = "Something went wrong!";
document.getElementById("author").innerHTML = "Try again later";
});