ipa 签名工具

爱思助手 Sideloadly AltStore

阅读全文

Mac OS hosts 文件的锁定保护及修改

锁死hosts文件12sudo chflags uchg /etc/hostssudo chflags schg /etc/hosts 解锁hosts文件1sudo chflags -hv noschg /etc/hosts

阅读全文

10 行实现简单 Promise

12345678910111213141516171819202122232425262728class MyPromise { constructor(fn) { fn(value=>this.cb?.(value)) } then(fn) { return new...

阅读全文

PHP & phpenv

PHP & phpenv Reference: https://github.com/phpbrew/phpbrew/blob/master/README.cn.md https://blog.csdn.net/Annlix/article/details/119759752 https://github.com/phpbrew/phpbrew/w...

阅读全文

浪潮M2220主板加NVME BIOS

浪潮M2220主板加NVME BIOS 123456789101112131415161718192021222324.├── 111.mp4├── 222.mp4├── LICENSE├── README.md├── 刷机前先看视频.txt├── 微信图片_20230910154327.jpg├── 微信图片_20230910154335.jpg├── 微...

阅读全文

mac font pingfang download

19.0d4e2 版本的苹方可以直接被 Windows 识别,估计是华康在导出文件的时候忘了设置什么东西。 出处:https://blog.dsrkafuu.net/post/2020/extract-sf-pingfang/ 我用lanzou备份一份 https://yunling.lanzout.com/iiKti144mgra release 也发...

阅读全文

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...

阅读全文