<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>技术分享 on Akkuman 的技术博客</title>
    <link>https://www.hacktech.cn/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/</link>
    <description>Recent content in 技术分享 on Akkuman 的技术博客</description>
    <generator>Hugo -- 0.155.3</generator>
    <language>zh-cn</language>
    <lastBuildDate>Tue, 31 Mar 2026 17:45:58 +0800</lastBuildDate>
    <atom:link href="https://www.hacktech.cn/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/atom.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>bitwarden ssh agent 使用</title>
      <link>https://www.hacktech.cn/post/2026/03/bitwarden-ssh-agent-use-15zm94/</link>
      <pubDate>Fri, 27 Mar 2026 16:48:38 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2026/03/bitwarden-ssh-agent-use-15zm94/</guid>
      <description>本文介绍了如何使用 Bitwarden 密码管理器来管理SSH密钥，并通过其SSH代理功能在各种操作系统和终端环境下安全、方便地使用这些密钥进行认证。</description>
    </item>
    <item>
      <title>headless-wps arm64 后续</title>
      <link>https://www.hacktech.cn/post/2026/03/headless-wps-arm64-hou-xu-1csr1p/</link>
      <pubDate>Thu, 19 Mar 2026 15:14:37 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2026/03/headless-wps-arm64-hou-xu-1csr1p/</guid>
      <description>这篇文章讨论了为 headless-wps 项目提供 ARM64 版本镜像的探索历程。核心结论是：在页大小为 4K 的 ARM64 Linux 内核上，WPS 可以正常运行；但在页大小为 64K 的内核（如某些国产化系统）上，由于 WPS 内置的 libcef（浏览器组件）无法加载，导致相关功能严重缺失。</description>
    </item>
    <item>
      <title>为什么我的 powershell 启动这么慢</title>
      <link>https://www.hacktech.cn/post/2026/03/why-is-my-powershell-starting-so-slowly-12hzjt/</link>
      <pubDate>Tue, 03 Mar 2026 09:37:13 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2026/03/why-is-my-powershell-starting-so-slowly-12hzjt/</guid>
      <description>本文分析了Windows Terminal中PowerShell启动缓慢的问题，发现主要原因是加载个人配置文件（profile.ps1）耗时过长。通过逐步排查，确定问题出在conda初始化脚本上。解决方案包括：注释掉conda相关代码以加快启动速度，或参考社区讨论中的优化方法。</description>
    </item>
    <item>
      <title>Clean up old versions of VSCode</title>
      <link>https://www.hacktech.cn/post/2026/02/clean-up-old-versions-of-vscode-z1qr48c/</link>
      <pubDate>Sat, 28 Feb 2026 17:08:30 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2026/02/clean-up-old-versions-of-vscode-z1qr48c/</guid>
      <description>A script to help you clean up old versions of VSCode</description>
    </item>
    <item>
      <title>迁移git仓库已有文件到 lfs</title>
      <link>https://www.hacktech.cn/post/2026/02/migrate-existing-files-in-git-repository-to-lfs-z1wjust/</link>
      <pubDate>Thu, 05 Feb 2026 09:58:59 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2026/02/migrate-existing-files-in-git-repository-to-lfs-z1wjust/</guid>
      <description>本文介绍了如何将Git仓库中的大文件迁移到Git LFS（Large File Storage）中。核心方法是利用`.gitattributes`文件定义需要追踪的大文件，然后通过`git lfs migrate import --everything --fixup`命令进行迁移。但直接使用`--fixup`可能无效，因为该命令依赖历史提交中的`.gitattributes`文件。解决方案是先用`git-filter-repo`工具将`.gitattributes`文件注入到所有历史提交中，再执行LFS迁移。文章还提供了备选方案：通过解析`.gitattributes`文件生成`--include`参数列表进行迁移，但此方法可能无法处理标签。最终推荐的方法是先注入`.gitattributes`到历史记录，再使用`--fixup`完成迁移。</description>
    </item>
    <item>
      <title>一行命令共享 SSH 终端会话</title>
      <link>https://www.hacktech.cn/post/2025/12/oneline-command-to-share-an-ssh-terminal-session-z1wqqxi/</link>
      <pubDate>Thu, 11 Dec 2025 09:20:00 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2025/12/oneline-command-to-share-an-ssh-terminal-session-z1wqqxi/</guid>
      <description>本文介绍了一种快速共享SSH终端会话的方法，使用一条命令即可通过upterm工具（tmate的替代品）创建临时会话。执行命令后，系统会生成一个临时的SSH连接地址，用户可将其分享给他人以实现终端实时共享。</description>
    </item>
    <item>
      <title>国内使用 gitea action 加速</title>
      <link>https://www.hacktech.cn/post/2025/12/domestic-use-gitea-action-to-accelerate-c6vjp/</link>
      <pubDate>Mon, 08 Dec 2025 14:50:16 +0800</pubDate>
      <guid>https://www.hacktech.cn/post/2025/12/domestic-use-gitea-action-to-accelerate-c6vjp/</guid>
      <description>本文介绍了在国内使用 Gitea Actions 时如何通过部署和配置 act runner 来从网络层面加速工作流执行，显著提升 Gitea Actions 在国内网络环境下的执行速度。</description>
    </item>
  </channel>
</rss>
