Shiny Zhu https://shinyzhu.com/posts/2026/running-openclaw-with-docker-sandbox-and-ollama/ - Setup I read a blog Run OpenClaw Securely in Docker Sandboxes that demostrated how to use Docker Sandboxes (which is an experimental feature) to run OpenClaw with restricted security settings. Docker Sandboxes lets you run AI coding agents in isolated environments on your machine. Sandboxes provides a…
Shiny Zhu https://shinyzhu.com/posts/2024/migrating-your-outlook-authentication-today/ - Migrating Your Outlook Authentication Today Motivation and Objective Transition Timeline September 16th, 2024 Basic Authentication no longer available to access any Outlook account According to the Modern Authentication Methods now needed to continue syncing Outlook Email in non-Microsoft email apps support…
Shiny Zhu https://shinyzhu.com/posts/2024/self-hosting-docker-registry/ - This is a follow-up post to the Using Docker in China 2024 . To provide a private cache for Docker Hub with Registry . The Problem I’ve updated the registry-mirrors to aliyun/tencent mirrors. But rencently I can’t pull new images. The commands are successfully run but they returned ‘old’ latest images…
Shiny Zhu https://shinyzhu.com/posts/2024/using-docker-in-china-2024/ - This post is to introduce a solution to the network issues of Docker engine and Docker Hub that may only happen in China. 更新 apt 源解决 Docker Engine 的安装和更新问题 我是根据 官方安装文档 安装的 Docker,这种方法会直接从 download.docker.com 下载软件包,最近由于网络问题,已经无法更新了: W: Failed to fetch https://download.docker.com/linux/ubuntu/dists/focal/InRelease Cannot…
Shiny Zhu https://shinyzhu.com/posts/2024/importing-yi9b-to-ollama/ - Get The Yi-9B For Your Ollama Here is the model: https://ollama.com/shinyzhu/yayi Or just run it from terminal: ollama run shinyzhu/yayi:9b --verbose And you can run Yi-9B-200K too: ollama run shinyzhu/yayi:9b-200k --verbose Why I Do This If you like to run LLM models locally with Ollama like I do. AND You discovered a better…
Shiny Zhu https://shinyzhu.com/posts/2024/my-server-is-under-attack/ - How I Found It Update: According to the discussions on V2EX . These “hackings” were from Tencent Security Team. The scan is a post step when publishing new version of mini program. See details below . I was using the app to check if there are some orders on last Friday. But I felt it was very slow. I was thinking if…
Shiny Zhu https://shinyzhu.com/posts/2024/suffering-code-gen-by-llms/ - The Problem I’m developing the payment of aibeixin app. There is a web hook after payment is done. It carries encrypted data by AEAD_AES_256_GCM algorithm (RFC5116) . I need to: Prepare the API Key. [Done] Fetch the nonce and associated_data from the hook request. [Done] Decrypt the ciphertext . I’m building the…
Shiny Zhu https://shinyzhu.com/posts/2024/github-action-not-running-case/ - What Happened to My GitHub Action I wanted to add a new html file to the www of this project . The workflow should be working correctly. But it didn’t run when I pushed to the repo. It didn’t show any error to me either. Furthermore, I didn’t find the “Run workflow” button under the Action…