RSSAmplifier

Blog

Shiny Zhu

Recent content on Shiny Zhu

shinyzhu.comRSS feed ↗10 posts

Latest posts

Running OpenClaw with Docker Sandbox and Ollama

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…

Migrating Your Outlook Authentication Today

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…

Self Hosting A Docker Registry To Pull Images From Docker Hub

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…

如何解决网络问题实现正常使用 Docker

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…

[译] 解锁图分析的力量:25 个顶级 Python 库、算法、类型和技术

Shiny Zhu https://shinyzhu.com/posts/2024/unleashing-the-power-of-graph-analytics/ - 简介 最近我在做一些跟图数据和 GenAI 相关的事情,图(Graph)因为其丰富的信息表达方式和直观的分析探索形式,我相信在迈进 GenAI 的同时,我们都需要使用图数据的模式比如 KG(知识图谱)来丰富和强化 GenAI。比如: 使用已有的知识图谱强化 LLM 的溯源能力,使得 GenAI 的结果变得可解释。 使用 LLM 的泛化的知识能力提取语义,进一步丰富和完善知识图谱。 那么到底什么是图呢?有哪些分析方法和算法工具? 这是一篇我在 LinkedIn 上看到的关于图的介绍文章。试着翻译成中文,供大家阅读。也可以 点这里访问原文 。 以下为译文。 解锁图分析的力量:25 个顶级 Python 库、算法、类型和技术…

Importing Yi-9B to Ollama

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/solving-a-math-problem-by-llm/ - 简介 作为家长,我们总是希望为孩子提供最好的教育支持,特别是在数学这一关键学科上。数学不仅是孩子们认识世界的重要工具,也是培养逻辑思维和解决问题能力的基础。然而,面对复杂的数学问题,即使是最有爱心和耐心的家长,有时也会感到力不从心。 在这样的背景下,大语言模型的出现,为我们提供了一种全新的教育辅导方式。这些智能工具不仅能够解答复杂的数学问题,还能够以易于理解的方式向孩子们解释概念和解题步骤,极大地减轻了家长的负担。 本文将从家长的角度出发,探讨如何利用大语言模型来辅导孩子的数学作业。我们会分享一些实用的策略和方法,帮助家长引导孩子与这些智能工具互动,提高他们的数学学习效率。…

My Server Is Under Attack

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…

Which of These LLM Generated Codes Do You Think Can Run As Expected?

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…

GitHub Action Not Running Case Fixed

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…