Far away, farther still

Blog

/**
 * @note The purpose of this site is not to show off knowledge, but to record ignorance.
 * @since 2025-10-22T09:07:46.286Z
 */
#include <iostream>
#include <string>
class Blog{
public:
    std::string name, author, url;

    Blog(const std::string& name, const std::string& author, const std::string& url)
    : name(name), author(author), url(url) {}
};
int main(){
    Blog site("Kreo's Blog","Kreo Wu","https://kreo.ink");
    std::cout<<"Far away, farther still"<<std::endl;
    return 0;
}

Me

Hi!

I am Kreo, an undergraduate student still on the path of learning.
I love tinkering with technology and occasionally immersing myself in the world of books, movies, and music.

♥️
  • Book: Crime and Punishment, Three Days of Happiness, The Myth of Sisyphus
  • Music: The Old Man and the Sea, Merry Christmas Mr. Lawrence
  • Movie: The Legend of 1900
  • Anime: Steins;Gate, Neon Genesis Evangelion

Nice to meet you on the internet. 😊

If you want to chat, feel free to email me at (kreouu@gmail.com).


In case I don’t see you, good afternoon, good evening, and good night.

The Truman Show