VB-CABLE A+B Driver Pack 43

VBCABLE_A_B_Driver_Pack43.zip https://archive.org/details/vbcable-a-b-driver-pack-43

阅读全文

angular 绕弯实现 react 动态组件传值解构透传方法

angular 绕弯实现 react 动态组件传值解构透传方法 实现:hoc.component.ts 123456789101112131415161718192021222324import { AfterViewInit, Component, Input, Type, ViewChild, ViewContainerRef } f...

阅读全文

短小且优雅的Promise并发控制实现

参考 p-limit 12345678910111213141516171819202122function pLimit(concurrent) { let task = [], active = 0; return fn => new Promise(res => { task.push(asyn...

阅读全文

macOS 14 不插电实现合盖外接显示器

mac 默认拔掉电源线后,系统进入休眠,不能正常使用外接显示器。 系统设置中不提供解决方案,直接终端输入如下: 1234# 启用拔线不休眠sudo pmset -a sleep 0sudo pmset -a hibernatemode 0sudo pmset -a disablesleep 1 1234# 还原sudo pmset -a sleep 1su...

阅读全文

NDI HX Camera apk | NewTek NDI apk

Google Play: https://play.google.com/store/apps/details?id=com.newtek.ndi.hxcam 官方的NDI®相机。将您的手机或平板电脑变成实时视频制作相机。 NDI®(网络设备接口)是一种低延迟IP视频协议,专门为专业现场视频制作而开发,并得到许多制造商广泛的广播系统的支持。 NDI®HX相机...

阅读全文

miniconda & cuda & pytorch

minicondaReference: https://docs.conda.io/projects/miniconda/en/latest/miniconda-other-installer-links.html https://docs.conda.io/projects/miniconda/en/latest/ 1234mkdir -p ~/min...

阅读全文

Ubuntu Setup 总结

以下内容只针对于 Ubuntu/Debian,推荐使用 Ubuntu Jammy 或者 Ubuntu Focal 换源 zsh & powerlevel10k 语言包 & 搜狗输入法 cpp: run sudo apt install build-essential -y miniconda & cuda & ...

阅读全文

Ubuntu 换源总结

apt123sudo sed -i.bak 's/archive.ubuntu.com/mirrors.cernet.edu.cn/g' /etc/apt/sources.listsudo sed -i 's/security.ubuntu.com/mirrors.cernet.edu.cn/g' /etc/apt/s...

阅读全文

zsh 安装 powerlevel10k 安装 p10k 插件

Install1234567891011121314151617181920212223242526272829303132# zshsudo apt install zshchsh -s $(which zsh)# ohmyzshsh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyz...

阅读全文

WSL 中安装搜狗输入法 中文拼音

配置语言包123456789101112131415161718sudo locale-gen en_US.UTF-8 zh_CN.UTF-8cat <<'EOF' | sudo tee -a /etc/profileexport LANG=en_US.UTF-8export LANGUAGE=en_US.UTF-8# exp...

阅读全文