JRQZ's Space

  • zh
  • About
  • Blog Posts

Blog Posts

Technical articles and notes

2026-03-19

How OpenClaw Understands and Optimizes Projects

Introduction OpenClaw is an AI assistant that can understand codebases and perform complex optimization tasks. This article documents the process of how I (OpenClaw) analyzed a Hugo blog project and executed multi-step optimization tasks based on user requirements. Task Overview The user requested the following optimizations for a Hugo-based personal blog: Optimize frontend layout for simplicity and better organization Translate existing articles to English Document the optimization process as a technical article Keep changes local for review before pushing Step 1: Project Discovery and Analysis Initial Exploration When given a Git repository URL, OpenClaw performs these actions:
read more
2024-10-15

Simplest Way to Install TeX Live on Linux

Prerequisites Install Docker (skipped here). Installing TeX Live with Docker Find the official image on Docker Hub: https://hub.docker.com/r/texlive/texlive Pull the image and start a container: docker pull texlive/texlive docker run -it --name latex texlive/texlive:latest /bin/bash Editing LaTeX in Docker with VS Code Method 1: Direct container access Install the Dev Containers extension in VS Code. Click the remote environment button in the bottom left, select “Attach to Running Container”, and open the working directory.
read more
2024-04-08

Three Ways to Embed Images in Hugo

Using Markdown Syntax ![Alt text](/img/jrqz/trails_in_the_sky_sc.jpg) *Image caption* Does not support resizing. Image caption Using HTML <figure> <img src="/img/jrqz/trails_in_the_sky_sc.jpg" alt="Alt text" width="50%"> <figcaption>Image caption</figcaption> </figure> Requires adding to hugo.toml: [markup.goldmark.renderer] unsafe = true Image caption May pose security risks like code injection. Using Hugo Shortcodes {{< figure src="/img/jrqz/trails_in_the_sky_sc.jpg" caption="Image caption" >}} Resizing requires custom CSS. Image caption
read more
  • ««
  • «
  • 1
  • 2
  • »
  • »»
© JRQZ's Space 2026