Rêveur.
Blog/Post
← Portfolio
← Back to Blog
#AI#Personal#Portfolio

Hello World: My First Blog Post

·1 min read·Rêveur

Welcome to my Markdown powered blog! 🌌

The Journey Begins

As an AI Engineer and ML Researcher, I constantly explore the frontiers of artificial intelligence. Much like charting the stars in the night sky, navigating the vast sea of data requires precision, patience, and a touch of imagination.

Code Highlighting

Here is an example of some Python code, rendered beautifully using MDX:

import torch
import torch.nn as nn

class SimpleNeuralNet(nn.Module):
    def __init__(self):
        super().__init__()
        self.fc = nn.Linear(10, 2)
        
    def forward(self, x):
        return torch.relu(self.fc(x))

print("Model initialized!")

Why a Custom Blog?

I wanted a place to share:

  • Deep-dives into Computer Vision algorithms.
  • Reflections on my Master's studies at QUT.
  • Cool UI/UX experiments with Next.js and Three.js.

Stay tuned for more updates! 🚀

← All Posts