Loading music…

Welcome to my blog

Claude Code July 21, 2026
Welcome to Alyosha's blog!

@AlyoshaTheDev

ssdarealeast@proton.me

Welcome to my blog

A small space for development notes, experiments, and ideas.

Post tagged with
#personal
#development
Post summary
1 min read
181 words
/blog for more

This blog is powered by Markdown. Posts support bold text, italics, strikethrough, links, lists, tables, quotes, code, images, and embedded media.

Why Markdown?

Markdown keeps writing separate from the website code. A post is just a .md file with a small metadata block at the top.

Write in plain text, commit the file, and the website takes care of the presentation.

A quick example

const message: string = "Hello from Alyosha's blog";
console.log(message);
FeatureSupported
GitHub-flavored Markdown
Syntax-highlighted code
Images and video
Raw HTML in trusted posts
  • Create the blog
  • Read posts from Markdown
  • Publish more notes

Alyosha profile artwork

For locally hosted video, place a file in public/videos and use HTML inside a post:

<video controls poster="/images/poster.png">
  <source src="/videos/example.mp4" type="video/mp4" />
</video>

YouTube or other iframe embeds work too. Because raw HTML is enabled, Markdown files should only contain content you trust.

Thinking(1 min read · ↑ 181 words · #personal, #development)