Quantum
Quest

Algorithms, Math, and Physics

Hello world

Welcome to my blog! This platform serves as an extension to my main site, focusing on a more dynamic and transient type of content.

While my site is reserved for timeless and enduring materials, here on the blog, I explore the ever-evolving world of technology, discussing coding practices, industry trends, and topics that, although might become obsolete over time, are of current interest and relevance.

I don’t plan on posting frequently, but rather as inspiration strikes and when there’s meaningful insight to share.

The backbone of this blog is powered by Hexo, which I’ve heavily customized to ensure a seamless integration with the overall aesthetics and functionality of my main site.

Although currently, it’s just beginning with this introductory post, I aim to enhance this space with more features typical of a fully-fledged blog.

Stay tuned for updates and occasional deep dives into the fascinating world of tech!

Quick start with Hexo

Create a new post

$ hexo new "My New Post"

Run server

$ hexo server

Generate static files

$ hexo generate

Deploy to remote sites

$ hexo deploy

My journey into Hexo customization

In my journey to create a more personalized and engaging blog, I’ve taken the liberty of crafting my own syntax highlighter that beautifully complements the aesthetic of my site. Tailored specifically for the languages that breathe life into web development, my highlighter elegantly showcases <html>, <JavaScript>, and <CSS> snippets with a distinct flair. For instance, consider the following CSS snippet that centers content both vertically and horizontally:


.centered-content {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

This custom highlighting not only enhances readability but also infuses my posts with a unique visual identity. Whether it’s a chunk of HTML, a function in JavaScript, or a block of CSS, each is given due attention with highlighter-rouge, ensuring that insights into code are both informative and visually captivating.