I have been wanting to get back into blogging, but building a completely new CMS from scratch isn’t fun. Currently, I write posts in Markdown and use KaTeX to render LaTeX-style math equations. I recently found that NextJS v15 now supports MDX content more natively (https://nextjs.org/docs/app/guides/mdx), making it easier to create a Markdown based CMS.
May 17, 2025
Bubble sort is a comparison-based sorting algorithm that iterates through a list of elements, checking adjacent pairs and swapping them if they are not in the correct order. The process is repeated until the entire list is sorted. In each pass, the element is guaranteed to be placed in the correct position.
January 31, 2024