2026年 04月 14日 - M1 Max 32GB 本地AI模型推荐总表(2026)

    M1 Max 32GB 本地AI模型推荐总表(2026-04)

    核心结论

    模块 推荐参数量级 推荐策略
    🧠 大模型(主力LLM) 7B – 14B(4bit) 日常主力
    🧠 高级推理(可选) 30B MoE / 32B(4bit) 偶尔用
    🎨 图像模型 SDXL / Flux.1 Schnell 生产级
    🎬 视频模型 SVD / AnimateDiff 实验级
    🤖 Agent工具链 7B模型 + 工具调用 最实用组合

    2025年 09月 25日 - ghfast.top提供github文件代理加速下载服务

    官方介绍

    终端命令行

    支持终端命令行 git clone , wget , curl 等工具下载.
    支持 raw.githubusercontent.com , gist.github.com , gist.githubusercontent.com 文件下载.
    注意:不支持 SSH Key 方式 git clone 下载.
    

    git clone

    git clone https://ghfast.top/https://github.com/stilleshan/dockerfiles
    git clone 私有仓库
    Clone 私有仓库需要用户在 Personal access tokens 申请 Token 配合使用.
    git clone https://user:your_token@ghfast.top/https://github.com/your_name/your_private_repo
    

    wget & curl

    wget https://ghfast.top/https://github.com/stilleshan/dockerfiles/archive/master.zip
    wget https://ghfast.top/https://raw.githubusercontent.com/stilleshan/dockerfiles/main/README.md
    curl -O https://ghfast.top/https://github.com/stilleshan/dockerfiles/archive/master.zip
    curl -O https://ghfast.top/https://raw.githubusercontent.com/stilleshan/dockerfiles/main/README.md
    

    参考资料

    2025年 04月 09日 - kuboard模拟登录进行能力集成

    🧠 背景介绍

    本文介绍如何通过模拟登录方式接入 Kuboard,并在无法直接使用 API 接口的场景下,实现自动化集群管理能力集成,解决运维自动化中的权限认证问题。

    Kuboard 是一款非常流行的 Kubernetes 管理面板,提供了良好的可视化集群运维能力。然而,在某些自动化集成场景下,官方提供的 API 能力有限,尤其是在集群管理、权限接入等方面仍依赖于用户界面交互:

    • SSO 登录流程需人工输入用户名密码
    • 缺乏用于登录态获取的标准开放 API
    • Token 有效期管理及跨系统调用困难

    因此,我们探索了一种 模拟浏览器行为登录 Kuboard 并获取登录态 token 的方案,进而实现自动化添加集群等操作。


    2025年 04月 08日 - Tabby 本地 AI 编码助手实战体验分享

    本文介绍如何在本地部署并使用开源的编码助手 Tabby,作为 GitHub Copilot 的替代方案,为日常开发带来更高效的 AI 辅助体验。

    🧠 背景介绍

    随着 GitHub Copilot、CodeWhisperer 等 AI 编码助手的流行,越来越多的开发者享受到智能补全带来的效率提升。然而:

    • Copilot 需要联网使用,可能涉及代码隐私问题
    • 订阅付费对于个人开发者不太友好
    • 企业私有化需求难以满足

    为此,开源项目 Tabby 提供了一个部署在本地或私有云环境的 AI 编码助手替代方案,支持 VSCode、JetBrains、Vim 等多种编辑器。


    2025年 03月 21日 - Linux 传输文件 - nc + pv

    Linux 传输文件 - nc + pv

    在 Linux 服务器之间传输文件时,scprsync 是常见的选择,但 nc (netcat) 搭配 pv (Pipe Viewer) 也提供了一种轻量级且高效的方式。本文介绍 nc + pv 组合的使用,并对比 scprsync 等传统方法。

    简要代码示例:

    # 接收端
    yum install pv nc -y
    nc -l -p 9999 | pv | tar -xf -
    # 发送端
    yum install pv nc -y
    pv /mnt/data2/k8sstorage/minio_backup.tar | nc 172.25.1.54 9999