
Zeyu Yao
👋 Hey! I am Peter, a student developer currently studying in Singapore. I started programming at 13, and in the past year, I have contributed documentation for a startup that recently raised $10M from a16z, 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;
});