惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

ImQi1

本站 CMS 已开源,欢迎体验 抖音刷到了一个模拟高中的游戏 或许我们每个人都有问题 介绍下本站特色功能及一些杂谈 蜘蛛侠4,咋说呢,还是挺烂的 找个工作好难啊 跟风做了一系列地图界面 川渝游结束,浅浅记录一下 来成都看大熊猫 跨越了两千公里,只为见到你 为了一个女孩,我哭了一整晚 彻底换到新的 CMS 了,Glass 主题介绍 我的 Nuxt 版网站即将上线了 个人毕业设计展 尝试从情绪中走出 更新到Ty1.3,顺便维护一些插件 没想到现在的编程AI已经这么好用了 Typecho 图床从USS迁移至COS 近期拍摄的新照片 zai-org / Open-AutoGLM 已开源,体验一下 12月近况,实况照片功能 理想的未来和现实的现在 4000公里首摔,真是当头一棒 属实是信息差了,没想到现在的手机生态这么完善 比较是快乐的小偷 搬家,新车,父亲手术
ChatGPT年度总结,卖号纠纷,代码块新样式
· 2025-12-24 · via ImQi1

ChatGPT 年度总结

在编写新实况图功能和代码块新样式时,我和以往一样实用 ChatGPT 辅助开发。然后有一次在我打开 ChatGPT 页面的时候,它给我推了个“查看你的ChatGPT年度总结”。

年度总结

点击开始之后,它就根据我一年中问过的问题生成年度总结。

年度诗篇:

你一年钻研硬件与光,
YOLO识人影亦飞扬。
调试如诗连DLL,
镜头下思路自成章。
你把复杂化为稳与光。

2025 年 3 大亮点:

You spent much of the year refining C/C++ SDK integration into Python, solving DLL path issues, and mastering PyInstaller packaging for hardware drivers.

You developed live‑photo and ID‑photo pipelines, combining YOLO pose detection, lighting checks, and motion extraction to automate photo quality validation.

You strengthened how your apps run in the field—creating Windows services, handling startup recovery, and improving logging for stable long‑term operation.

专属奖项

The Debug Whisperer: For somehow coaxing every stubborn DLL, serial port, and YOLO model into obedience—eventually—while narrating the chaos like a tech noir legend.

工程师
用像素描绘我

“Still Life with Circuit Board and Coffee Mug” – ChatGPT, 2025

A programmer’s altar: bash terminal glow, tangled USB cable, pixel cat sticker, and one half‑finished latte—debugging both code and caffeine levels.

账号处理纠纷

12月近况,实况照片功能中说过一个极其晦气的事情,现在就是螃蟹还没有找回号,我就先付了 600 块到手钱给盼之,当然螃蟹仍然还没找到号。

从这里知道了,以后买完账号再卖,不要跨平台,否则原平台包赔失效,卖出去的平台发生找回了自己还要担责。

账号未被找回

代码块新样式

以前代码块是在右上角展示语言,悬浮在上面时显示复制按钮,现在是显示该编程语言的图标。

import java.util.*;
import java.util.stream.*;

public class Demo {
    public static void main(String[] args) {
        List<String> list = Arrays.asList("apple", "banana", "orange", "avocado");

        Optional<String> result = list.stream()
            .filter(s -> s.startsWith("a"))
            .map(String::toUpperCase)
            .findFirst();

        result.ifPresent(System.out::println);
    }
}

代码块可以显示文件名称,在教程中非常实用,增强了可读性。

type CacheData<T> = { [key: string]: T };

export class Cache<T> {
    private data: CacheData<T> = {};

    set(key: string, value: T) {
        this.data[key] = value;
    }

    get(key: string): T | undefined {
        return this.data[key];
    }
}
import { Cache } from './cache';

const stringCache = new Cache<string>();
stringCache.set("hello", "world");

console.log(stringCache.get("hello"));