Joined July 2014
515 Photos and videos
Github又挂了…
66
买的AMD股票已经50倍了
1
70
对这位人员的要求变成:员工对其在各自工作环节中应履行的特定隐私保护义务缺乏明确认知,日常工作中更侧重于技术任务的完成,岗位说明书或操作指南普遍缺少对隐私保护职责的可操作性描述与强制要求 我等着审判的那一天
还是小公司时,一个人负责开发、测试、部署、运维、监控,没有人会说什么 小公司变成上市公司后,就变成了:存在由一名人员全程负责的情况,违反了隐私与安全管理的职责分离。相关技术岗位的岗位职责说明书中,并未清晰、具体地定义其在隐私与数据安全方面应承担的责任
1
2
317
还是小公司时,一个人负责开发、测试、部署、运维、监控,没有人会说什么 小公司变成上市公司后,就变成了:存在由一名人员全程负责的情况,违反了隐私与安全管理的职责分离。相关技术岗位的岗位职责说明书中,并未清晰、具体地定义其在隐私与数据安全方面应承担的责任
2
557
This is trash guys.
New day, New Mac, New IDE.
362
125
4,816
526,893
Spring Boot 4的这个问题,我们很早就确认了…但不认为是Bug,而是收紧了限制,于是我们直接自定义回滚回去了… github.com/spring-projects/s…
1
126
有一说一,我是完美符合的
王自如在B站发了个全栈工程师的招聘要求
168
买了个MacBook Air,24G 1T的配置,不知道啥时候能到
171
还有捆绑的Kotlin版本并没有支持Java 25,我们目前停留在Java 21上,现在只能等今年7、8月份再升级了
今天终于将几个数据中心的服务都升级到了Spring Boot 4.0.3,上线过程还是挺痛苦的,一堆的Bug还有兼容性问题都需要修,好在今天都修完了: 1. Jackson 3.0.3、Spring Integration 7.0.2均存在很严重的Bug 2. Spring 7与Spring Boot 4对其提倡的可观测性做了很多代码重构,导致大量错误被显式抛出
1
281
今天终于将几个数据中心的服务都升级到了Spring Boot 4.0.3,上线过程还是挺痛苦的,一堆的Bug还有兼容性问题都需要修,好在今天都修完了: 1. Jackson 3.0.3、Spring Integration 7.0.2均存在很严重的Bug 2. Spring 7与Spring Boot 4对其提倡的可观测性做了很多代码重构,导致大量错误被显式抛出
2
498
不得不说…现在8000 人民币才能买个16G内存 5060Ti显卡是真的太不值了…
1
205
timbo retweeted
Huge loss for Apple. Out of all the people Awni kept my hope alive that Apple would someday do something amazing in AI. And he broke many rules by being public and representing Apple, which he did very carefully for years. I know how hard that is, did that at Microsoft and helped write its social media policy. Apple has many rules against representing the brand in public. Simply put it's not allowed. Years ago an Apple employee couldn't even tell anyone she was at the first iPhone developer camp (she begged me to keep her attendance private because of these rules). And when I was running developer conferences we never could get Apple employees to speak on stage because of these rules. I saw Awni as a leader in trying to open up Apple and change the rules. And he built a nice community around MLX as a result. Thanks @awnihannun and can't wait to see what you do next. I bet he becomes an even bigger name here on X in the AI community because I could tell he was checking every word he posted and was knowingly stepping around many land mines.
Today is my last day at Apple. Building MLX with our amazing team and community has been an absolute pleasure. It's still early days for AI on Apple silicon. Apple makes the best consumer hardware on the planet. There's so much potential for it to be the leading platform for AI. And I'm confident MLX will continue to have a big role in that. To the future: MLX remains in the exceptionally capable hands of our team including @angeloskath, @zcbenz, @DiganiJagrit, @NasFilippova, @trebolloc (and others not on X). Follow them or @shshnkp for future updates.
28
42
797
171,525
我知道我很急,但是我先别急
1
121
过年走亲戚和必要的社交活动,挤出时间两人把生化危机两部编年史都打完了,Normal难度隐藏模式和剧情全通,感觉应该有20小时的,没想到只要不到14小时,补完(无任何必要的)遗漏剧情等生化危机9
177
我妈有点像轨迹里面的主角,需要跟镇上的所有人对话完毕之后主线任务才能推进
49
用了10年的Logitech K380,月初时发现电池消耗得很快,拆下来之后发现是电容爆了,目前更换到Logitech Signature K855了
1 Dec 2025
Replying to @timbotetsu
今天换了副新电池
224
2025年买得最值的电子产品是华为MatePad Mini悦读柔光屏版,纪念一下
1
2
415
3. 之前objectmapper的很多方法都会显式抛出需要处理的异常,如JsonProcessingException、JsonMappingException等,转而使用jsonmapper后,很多方法变成了运行时异常,不需要处理异常确实方便,但很多地方还是得小心谨慎把异常包起来处理或直接忽略掉,不然运行时异常打断业务流程,尤其在流数据处理中
这段时间弄了Jackson 2.X -> 3.X,升级完毕了,测下来也没什么大问题,一些心得说一下: 1. JsonMapper.builder().configureForJackson2().build(); 这可以无痛迁移 2. 大量依赖没有支持Jackson 3.X,比如jjwt、retrofit;jjwt依赖绑定比较多,好在只有几个应用在用;而retrofit只有4个类,改起来很快
2
100
这段时间弄了Jackson 2.X -> 3.X,升级完毕了,测下来也没什么大问题,一些心得说一下: 1. JsonMapper.builder().configureForJackson2().build(); 这可以无痛迁移 2. 大量依赖没有支持Jackson 3.X,比如jjwt、retrofit;jjwt依赖绑定比较多,好在只有几个应用在用;而retrofit只有4个类,改起来很快
1
154