Welcome to JerryMain's Blog — a personal corner of the internet where ideas find their home.
This site is built from scratch with plain HTML & CSS, no frameworks, no clutter. Just content and craft.
What you will find here?
The blog covers a broad range of topics — from code and mathematics to personal notes and half-finished ideas. Posts may be written in Chinese, English, or both.
Current categories include Python, Frontend, and README file tagged under Pinned. More will follow as the site grows.
Design
Light and dark modes are supported. You can toggle them manually at any time using the button in the header.
The color palette leans into deep navy backgrounds with cyan and pink accents — calm enough to read, distinct enough to remember.
Code Example
Use renderMathInElement() for code editing.
document.addEventListener("DOMContentLoaded", () => {
renderMathInElement(document.body, {
delimiters: [
{ left: '$$', right: '$$', display: true },
{ left: '$', right: '$', display: false }
]
});
});
Formula Example
This is the Gaussian integral.
$$\int_{-\infty}^{\infty}e^{-x}=\sqrt{\pi}$$That's all for now.