馃憢 Welcome to Jason’Log

Hi, this is Jason. I’m documenting my learning notes in this blog since 2025.

Best practices for building agentic ai systems

Hi! I am a new blog post.

November 22, 2025 路 1 min 路 7 words 路 Jason

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