csl123's recent timeline updates
csl123

csl123

V2EX member #668158, joined on 2023-12-22 18:58:36 +08:00
Today's activity rank 1045
csl123's recent replies
13h 35m ago
Replied to a topic by qq9 北京 天崩开局 2026
白血病骨髓移植的门槛好像越来越低了,具体可以看下这个视频 https://www.bilibili.com/video/BV1qP41187E5
2 days ago
Replied to a topic by selfly 生活 大家对骚扰电话有什么好的屏蔽办法
不接电话就行了,他们也会给你号码打标签的
Aug 11, 2025
Replied to a topic by Chicagoake 摄影 新手入门相机求推荐
ZV-E10 挺好的,索尼最大的优势就是镜头选择非常多,各种价位的都有。
May 19, 2025
Replied to a topic by hangzhou 摄影 相机配件推荐
同 A7M4+24105 目前一年半;电池是原厂的,防潮箱贴纸都没买(坐标上海),uv 是耐司的( 100 多)。SD 卡买了两张 128G 的普通卡(一张 100 多),128G 的 RAW 格式可以拍 1500 张,担心卡出问题就双写。
Omit 改成 Exclude 好像就可以了,原因没细看。

``` typescript

interface Elements {
div: {
id: number; name?: string; color: string; x: string
}
a: { id: number; name?: string; href: string; x: string }
}

type E<T extends 'div' | 'a'> = Exclude<keyof Elements[T], 'x'>

// type EDiv = "id" | "name" | "color"
type EDiv = E<'div'>
// type EA = "id" | "name" | "href"
type EA = E<'a'>



type O<T extends 'div' | 'a'> = Omit<keyof Elements[T], 'x'>

/**
* type ODiv = {
toString: () => string;
valueOf: () => string;
toLocaleString: () => string;
}
*/
type ODiv = O<'div'>
/**
* type OA = {
toString: () => string;
valueOf: () => string;
toLocaleString: () => string;
}
*/
type OA = O<'a'>
```
@Niphor #8 确实,之前写微信小程序也做过类似的封装。主要还是微信小程序太坑了,读取 storage 有时候会耗时几百毫秒。体验版开发版正式版共用 storage ,导致必须要给 key 手动加前缀。
Aug 2, 2024
Replied to a topic by hangzhou 摄影 请教摄影大佬一个相机购买的问题
我年初就是买的这套套机头,用了半年,如果再让我选我肯定买 m4 单机身+适马 85 f1.4 了。24-105 我是用不来。
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   947 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 10ms · UTC 19:41 · PVG 03:41 · LAX 12:41 · JFK 15:41
♥ Do have faith in what you're doing.