linux git 配置永久密码

git config –global credential.helper store 配置永久保存密码

四月 8, 2026 · 1 分钟 · Rui

npm pnpm yarn镜像源配置

npm get registry # 国内 淘宝 镜像源 npm config set registry https://registry.npmmirror.com/ # 官方镜像源 npm config set registry https://registry.npmjs.org/ pnpm get registry # 国内 淘宝 镜像源 pnpm config set registry https://registry.npmmirror.com/ # 官方镜像源 pnpm config set registry https://registry.npmjs.org/ npm install -g yarn@1.22.19 yarn config get registry # 国内 淘宝 镜像源 yarn config set registry https://registry.npmmirror.com/ # 官方镜像源 yarn config set registry https://registry.yarnpkg.com/ 清除缓存 ...

四月 8, 2026 · 1 分钟 · Rui

React Native运行IOS

关闭代理 yarn install yarn pod 检查xcode workspace 三处arm64 twwapp中的三处、以及prods 运行,查看报错,选择wenling 再次运行,fix代码里的语法错误 再次运行,xcode执行成功后关闭终端、simulator,在webstorm重新运行

四月 8, 2026 · 1 分钟 · Rui

windows所需的C++环境下载

在运行Hbuilder的cli报出dll错误,下载并安装后问题解决 微软官方链接: https://learn.microsoft.com/zh-cn/cpp/windows/latest-supported-vc-redist?view=msvc-170 下载链接: https://aka.ms/vs/17/release/vc_redist.x64.exe https://aka.ms/vs/17/release/vc_redist.x86.exe 注意:X86 和X64 都需要下载!!!

四月 8, 2026 · 1 分钟 · Rui

影刀RPA构建淘宝、京东价格捕获工具

最近玩了下影刀RAP,查询了下影刀公开的RAP工作流,似乎没有很新的价格捕获工具,因此博主做了这次尝试,记录一下 整体的流程和爬虫中的selenium有点像,博主是初步搭建了在淘宝、京东查询商品并捕获店铺名称、商品名称、详情链接和价格后,将信息存储到excel的工作流,还没有做分页点击获取,大家有好的建议可以评论下 ...

四月 8, 2026 · 2 分钟 · Rui

iOS 原生 IKEv2 配置教程(Ubuntu + strongSwan)

前言 这篇文章记录如何在 Ubuntu 服务器上部署一套可供 iPhone 原生使用的 IKEv2/IPsec 服务。 适用场景: 希望使用 iPhone 系统自带 IKEv2 功能 不想安装第三方客户端 服务器系统为 Ubuntu 24.04 或相近版本 服务端使用 strongSwan 本文使用脱敏示例,发布时请将下列占位符替换为你自己的信息: ...

四月 8, 2026 · 5 分钟 · Rui

OpenClaw 安装教程(windows+Linux)

官方文档:https://docs.openclaw.ai/start/getting-started 需要先安装node22 使用nvm安装 windows使用下面的命令会自动安装node22,linux则需要自行手动安装,并安装git 安装命令 windows: ...

四月 8, 2026 · 3 分钟 · Rui

ubuntu怎么切换到root用户,切换到root账号方法

https://blog.csdn.net/hwh20095000060/article/details/121439611

四月 8, 2026 · 1 分钟 · Rui

如何使用 MuMu模拟器和 Android Studio 调试应用

https://mumu.163.com/help/20240903/40912_1178625.html D:\App\MuMuPlayer\nx_device\12.0\shell> adb.exe connect 127.0.0.1:7555 新版本adb.exe 路径 “D:\App\MuMuPlayer\nx_device\12.0\shell\adb.exe” “D:\App\MuMuPlayer\nx_main\adb.exe” uniapp调试运行到mumu模拟器 D:\App\HBuilderX\plugins\launcher-tools\tools\adbs\adb.exe

四月 8, 2026 · 1 分钟 · Rui

3X-UI 配置

前提:购买一台境外服务器,最好是美国节点,便于访问ai网站(如Gemini、Claude) 切换root账户 进行安装 su root bash <(curl -Ls https://raw.githubusercontent.com/MHSanaei/3x-ui/master/install.sh) 出现下面的提示时,输入y确定 Would you like to customize the Panel Port settings? (If not, a random port will be applied) [y/n]: y 根据提示设置3X-UI的面板端口 Please set up the panel port: 54321 Your Panel Port is: 54321 Port set successfully: 54321 Username and password updated successfully Base URI path set successfully 选择2模式,然后一路按回车就完事了 Choose SSL certificate setup method: 1. Let's Encrypt for Domain (90-day validity, auto-renews) 2. Let's Encrypt for IP Address (6-day validity, auto-renews) Note: Both options require port 80 open. IP certs use shortlived profile. Choose an option (default 2 for IP): 2 Using Let's Encrypt for IP certificate (shortlived profile)... Do you have an IPv6 address to include? (leave empty to skip): Setting up Let's Encrypt IP certificate (shortlived profile)... Note: IP certificates are valid for ~6 days and will auto-renew. Port 80 must be open and accessible from the internet. Installing acme.sh for SSL certificate management... acme.sh installed successfully 重置管理员账号密码,root账户下,输入 x-ui 进入控制终端,输入6,如下 ...

四月 8, 2026 · 5 分钟 · Rui