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:
- System Design patterns
- Cloud Infrastructure
- Interesting bugs I’ve squashed
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}`);