pxcking's recent timeline updates
pxcking

pxcking

V2EX member #401385, joined on 2019-04-13 15:50:31 +08:00
pxcking's recent replies
6h 52m ago
Replied to a topic by Shiu 程序员 AI coding 真的提高效率了吗?
极大的提高了编码都效率,但加重了 review 和自测的任务,因此,在一些核心项目上最终提效其实不是非常明显。而且,核心项目没办法不看 ai 写的代码,否则迭代了几版后,人就 review 不动了,总不能到最后几百行的代码 review 只 review 些代码格式吧,这些才是 ai 完全能替代的
Feb 5, 2025
Replied to a topic by RIckV2 程序员 deepSeekAPI 好像不能用了
https://status.deepseek.com/uptime/j4n367d9mh3x
api 不能用了,官网还能用
public class NotIncludeNullValidator implements ConstraintValidator<NotIncludeNull, Collection<?>> {
@Override
public void initialize(NotIncludeNull constraintAnnotation) {

}

@Override
public boolean isValid(Collection<?> value, ConstraintValidatorContext context) {
// 不校验空集合
if (CollectionUtils.isEmpty(value)) {
return true;
}
for (Object next : value) {
if (next == null) {
return false;
}
}
return true;
}
}
打击电商,扶持实体的手段
Feb 6, 2024
Replied to a topic by windchime 问与答 也许只有经历过得人才能懂
悲观主义其实挺容易走出来的,往往陷的最深的是虚无主义,爬出来太难了,祝楼主能尽快的摆脱出来
Jan 19, 2024
Replied to a topic by dyv9 程序员 请教商品价格排序的性能问题
我们公司很简单,把这种和价格相关的数据全部放到 redis 里,根本不走 mysql
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3165 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 10ms · UTC 00:24 · PVG 08:24 · LAX 17:24 · JFK 20:24
♥ Do have faith in what you're doing.