intro

This is a showcase and a test journal

Hello and this is my first journal on the website. Mainly to test the script I wrote to translate markdown files into posts you are seeing now.

What to Expect

In future journals, I would put:

  • Technology and AI
  • Fun projects and experiments
  • Stocks and crypto
  • General thoughts

How was the website built and where did the design come from?

I used cursor to "vibe" build the website and honestly I cannot imagine how people code before the year of 2023 now. Currently there are still some limitations to the tools, but I believe in the near future, everyone with basic idea will be able to come up with their products. The colour theme was inspired by neo impressionism. Example profile image The Red Vineyards near Arles by Vincent van Gogh.

Code Examples

Here's a simple example of how code blocks look:

def generate_ascii_art():
    """A fun little Python script that generates ASCII art of a cat"""
    cat = [
        "  /\\_/\\  ",
        " ( o.o ) ",
        " > ^ <   ",
        "         "
    ]

    print("Here's a cute ASCII cat!")
    for line in cat:
        print(line)

    name = input("What's your name? ")
    print(f"The cat says: Meow, nice to meet you {name}!")

# Run the function if you execute this script
if __name__ == "__main__":
    generate_ascii_art()