Avan's Blog

Avan 的博客

原本想着是用 node 脚本实现 Obsidian 的文章复制到 blog 项目中, 在 deploy 到 github page 上. 脑子一热, 想着多此一举的用 electron 可视化页面操作. 干脆 Vibe Coding 一下, 发现效果似乎不错.

PS: 本篇文章就是用 electron 写的 Avan Toolkit 实现一键同步, 具体内容等完善后上传到 github 上面在更新这个文章

graph TD
    A[设备A: Obsidian 编辑] -->|坚果云同步| C(坚果云云端)
    B[设备B: Obsidian 编辑] -->|坚果云同步| C
    C -->|同步到本地| D[各设备本地 Obsidian 仓库<br>(整个 Vault)]
    
    D -->|GitHub 插件<br>提交整个仓库| H1[(GitHub 私有仓库<br>Obsidian 备份)]
    H1 -.->|新设备拉取恢复| D
    
    D --> E[Obsidian 内「blog」文件夹存放 Hexo 文章]
    E -->|Electron 一键复制| F[本地 Hexo 项目<br>(含 /source, themes, _config.yml)]
    
    F -->|git push 备份| H2[(GitHub 仓库<br>Hexo 源码备份)]
    H2 -.->|新设备克隆| F
    
    F -->|hexo deploy| G[GitHub Pages 预览]
阅读全文 »

创意工坊 + N网 双模组安装

Mods\NativeMods\UE4SS\Mods
Pal/Binaries/Win64/Mods

Pal\Content\Paks\LogicMods
Pal/Content/Paks/LogicMods

阅读全文 »

视频资源获取:
1.个人fans群993782526
2.资源获取总网盘:https://www.123pan.com/s/toMujv-fETu3.html提取码:cjnb
3.github:
cai install项目github:
github.com/zhouchentao666/Cai-install-Fluent-GUI
github.com/pvzcxw/Cai-Install-Reborn-opensrc
(停更)github.com/pvzcxw/cai-install_stloader
(停更)github.com/pvzcxw/Cai-install-Web-GUI
4.菜Games官网:www.caigames.us.kg

油门 axis:y: *
刹车 axis:rz: *
离合 slider:0: *
方向盘左转 axis:x: -
方向盘右转 axis:x: +
左拨片 button:6
右拨片 button:5
B button:2
X button:3
Y button:4
A button:1
菜单键 button:7
摄像键 button:8
LSB button:10
RSB button:9
pov0:left
pov0:right
pov0:up
pov0:down
加号 button:19
减号 button:20
G1 button:11
左旋钮 button:22
右旋钮 button:21
确认键 button:23

R档 button:18
1档 button:13
2档 button:14
3档 button:15
4档 button:16
5档 button:17

以签发 upyun-assets.4van.top 为例, 后续替换为对应的域名

1
openssl req -x509 -newkey rsa:2048 -nodes -keyout server.key -out server.crt -days 3650 -subj "/C=CN/ST=Beijing/L=Beijing/O=MyOrg/OU=IT/CN=upyun-assets.4van.top"

生成根证书 (Root CA) 创建虚拟的“CA机构”

阅读全文 »

  1. 通过 xcodes 下载指定版本 xcode
  2. xcode 设置页面 Locations 中选择 Command Line Tools 的版本
  3. component 下载对应的模拟器版本
  4. xcode 菜单栏选择 Open Developer Tool 选择 Simulator
  5. 应用栏 右键 Device 选择一个型号启动
  6. 回到项目中, npm run ios 进行启动调试

NERDTree

  • 聚焦目录栏 —— to
  • 退出目录栏 —— tc
  • 退出目录栏 —— q
  • 打开文件/文件夹 —— o
  • 递归打开文件/文件夹 —— O
  • 预览文件 —— go
  • 折叠文件夹(光标需要在目录文件上) —— x
  • 递归折叠子文件夹(光标需在折叠目录的父级文件夹) —— X
  • 垂直分割 —— i
  • 垂直分割不聚焦 —— gi
  • 水平分割 —— s
  • 水平分割不聚焦 —— gs
  • 打开菜单 —— m
  • 跳到当前目录第一个文件 —— K
  • 跳到当前目录最后一个文件 —— J
  • 最大化/最小化窗口 —— A
  • 刷新目录 —— r
  • 递归刷新目录 —— R
  • 跳到当前目录父节点 —— p
  • 跳到根目录父节点 —— P

1、相关配置文件

~/.ideavimrc
~/.vimrc

1
2
# 安装插件管理
git clone git@github.com:Layouwen/Vundle.git ~/.vim/bundle/Vundle.vim
阅读全文 »