Skip to content
Go back

Hello World

Edit this post

Welcome

This is the start of my new blog where I’ll be writing about distributed systems, engineering challenges, and software architecture.

I decided to move away from Notion and build this site using Astro and the AstroPaper theme for better performance and control.

What to expect

I plan to cover topics like:

A Code Snippet Test

Here is a quick test to ensure syntax highlighting is working correctly:

interface Engineer {
  name: string;
  stack: string[];
  isHiring: boolean;
}

const me: Engineer = {
  name: "Mohammed Malik",
  stack: ["TypeScript", "Go", "AWS"],
  isHiring: false,
};

console.log(`Hello from ${me.name}`);

Edit this post
Share this post on:

Previous Post
Your Post Title