writings

Hello, World

April 5, 2026

Hi, I’m using this post to test how well my site handles markdown rendering. Feel free to entertain or amuse yourself with this, if you’ve got nothing else to do, that is.

Testing headings

This is content under the heading (h2).

I might decide to have a few code snippets here and there, how does the site hold up?

class Robot {
public:
    Robot(int width, int height) {
        this->width = width; 
        this->height = height;
    }
};
int moveEast(int distance) {
    int new_x = x + distance;
    int new_dist = 0;
    if (new_x >= width) {
        new_dist = new_x - (width - 1);
        new_x = width - 1;
        turn90Deg();
    }
    x = new_x;
    return new_dist;
}

This snippet is from my solution to Walking Robot simulation II on LeetCode.

Testing Images

Galería de Museum of Contemporary Art San Diego
Galería de Museum of Contemporary Art San Diego

I think the styles are great! You should really find something else to do by the way.