This is the first post on 081.kg. Welcome!

What to Expect

I plan to write about programming, technology, and whatever else catches my attention. Posts might include:

  • Deep dives into interesting technical topics
  • Interactive demos and visualizations
  • Photography
  • Miscellaneous thoughts

Embedding Widgets

One of the cool things about this blog is that I can embed interactive content directly into posts. This is powered by MDX, which lets me use components alongside regular Markdown.

More on that soon. Stay tuned!

Code Examples

Here’s a quick example of syntax highlighting:

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('world'));

That’s it for now. Thanks for reading.