👋 Welcome to Jason’Log

I’m Jason, a researcher focused on enterprise-level Agent development. I’ll be sharing research and technical notes here, aiming to demystify cutting-edge LLM technologies in the simplest way possible. Feel free to reach out to me via email or GitHub if you have any questions or suggestions.

Creating a blog with Hugo and GitHub Pages

A hands-on guide to creating a blog with Hugo and GitHub Pages. Prerequisites A GitHub account Installed Microsoft Visual Studio Code Installed Git Installed Snap If you are not familiar with Git, you can refer to the simple guide. Installation Install Hugo sudo snap install hugo hugo version # test installation Install PaperMod Theme mkdir -p homepages && cd homepages hugo new site mywebsite --format=yaml && cd mywebsite git init git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod echo "theme: PaperMod" >> hugo.yaml After the installation, you should have a directory structure like this: ...

November 21, 2025 Â· 4 min Â· 729 words Â· Jason