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

推荐订阅源

月光博客
月光博客
L
LangChain Blog
Jina AI
Jina AI
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
S
Secure Thoughts
T
The Exploit Database - CXSecurity.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
C
Cyber Attacks, Cyber Crime and Cyber Security
Project Zero
Project Zero
T
Threat Research - Cisco Blogs
量子位
G
GRAHAM CLULEY
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
CERT Recently Published Vulnerability Notes
The Hacker News
The Hacker News
C
Cisco Blogs
Scott Helme
Scott Helme
Spread Privacy
Spread Privacy
宝玉的分享
宝玉的分享
V
V2EX
博客园 - 三生石上(FineUI控件)
T
Tor Project blog
P
Proofpoint News Feed
雷峰网
雷峰网
D
Darknet – Hacking Tools, Hacker News & Cyber Security
V
Vulnerabilities – Threatpost
PCI Perspectives
PCI Perspectives
博客园_首页
L
LINUX DO - 最新话题
IT之家
IT之家
有赞技术团队
有赞技术团队
博客园 - Franky
Hacker News: Ask HN
Hacker News: Ask HN
Last Week in AI
Last Week in AI
The Cloudflare Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Security Archives - TechRepublic
Security Archives - TechRepublic
L
LINUX DO - 热门话题
AWS News Blog
AWS News Blog
S
Security Affairs
T
Tailwind CSS Blog

ImQi1

找个工作好难啊 跟风做了一系列地图界面 川渝游结束,浅浅记录一下 来成都看大熊猫 跨越了两千公里,只为见到你 为了一个女孩,我哭了一整晚 彻底换到新的 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"));