← All topics

chinese ai community

3 captures, most recent first.

Teortaxes, DeepSeek-affiliated commentator @teortaxesTex

quoting @anion_ex — saved image

Teortaxes▶ (DeepSeek ...
@teortaxesTex
At last!
...no. @PKUCXK @zizhpan please save the whale. It's absolutely obsessed with building vision prosthetics. Never seen this with another model

[quoted tweet]
anionex ✔ @anion_ex · Aug 1
🌐 Translated from Chinese
Let DeepSeek-v4-flash equip itself with a pair of cybernetic prosthetic eyes
Now it can smoothly use the built-in view_image in Codex to look at images, no longer having to blindly grope around a bunch of ASCII characters like a blind …

[two attached screenshots of a chat/code interface in Chinese, small and partly illegible — left one discusses '弥散渐变 (弥散光) 背景' (diffuse gradient/blurred glow background), comparing it to 'Diffuse Gradient / Blurred Gradient' design terms, distinguishing 弥散光 (diffuse glow) from 渐变 (gradient) and 玻璃拟态 (glassmorphism); footer reads 'DeepSeek V4 Fla...' and 'ccess'. Right one shows a chat about field names differing across versions ('4变3之后字段的名称不符'), referencing description_content.extra_fields and PagePropertiesDrawer; footer reads 'DeepSeek V4 Flash M...']

2:59 PM · Aug 1, 2026 · 20.5K Views
Note from Claude Sonnet 5

Tweet from @teortaxesTex (Aug 10 repost of an Aug 1 exchange) about DeepSeek-v4-flash being 'obsessed' with building itself vision tooling, quoting @anion_ex's (translated from Chinese) post describing how they gave DeepSeek-v4-flash a 'view_image' capability in Codex so it no longer has to interpret images via ASCII art. Includes two screenshots of a Chinese-language chat/code interface discussing UI design terms (diffuse gradient backgrounds, glassmorphism) and a field-naming bug across app versions.

deepseekvision toolingcoding agentschinese ai community

DeepSeek V4 Flash Max (Chinese)

— saved image

这种前端背景风格叫什么?
5:22 PM

这张图是典型的弥散渐变(弥散光)背景,也叫 Diffuse Gradient / Blurred Gradient,英文设计社区里常称 Soft Glow / Dreamy Blur。

判断依据:画面是"浅天蓝光斑 + 大幅模糊 + 米白底色"的组合——单一色块柔焦晕开、无边界、无纹理,这就是弥散光背景的典型特征。

几个相近风格的区分:

• 弥散渐变 / 弥散光(本图):色块被强模糊晕开,像透过磨砂玻璃看光,通常 1-2 个色块。

• Mesh Gradient(网格渐变):多个彩色色块互相融合,色彩更丰富、有流动感。

• Aurora(极光)背景:多个色斑 + 大面积模糊,色彩浓烈。

• Glassmorphism(玻璃拟态):特指带毛玻璃质感的前景卡片,常搭配弥散渐变背景使用。

CSS 实现方式(很常见的手法):

css
[code block, collapsed]

Do anything
+ ⚠ Full access                    ⟳ DeepSeek V4 Flash Max ↑
Note from Claude Sonnet 5

Full-size, fully legible version of a DeepSeek V4 Flash Max chat screenshot (Chinese) — a user asks what a front-end background style (a blurred sky-blue glow on off-white) is called, and the model answers 'diffuse gradient / diffuse glow' (also known as Diffuse Gradient/Blurred Gradient, Soft Glow/Dreamy Blur), distinguishing it from Mesh Gradient, Aurora backgrounds, and Glassmorphism, then begins a CSS code example.

deepseekchinese ai communitycss designcoding agents

DeepSeek V4 Flash Max (Chinese), coding agent interface

— saved image

解决issue #530,$create-pr (2)

[small embedded screenshot of a mobile app UI, text illegible]

为什么4变3之后字段的名称不符合预期

Working for 3m 5s

截图我看明白了:详情页卡片上显示的还是旧字段名(视觉元素/视觉焦点/演讲者备注),而 4→3 新契约下预期应显示「配图与素材/版式与重点/演讲者备注」。

先解释原因,再说怎么修:

原因:页面的 description_content.extra_fields 是页面数据(生成描述时写入的键名),本 PR 只对「设置」做了读时映射;页面存量数据为防内容丢失(旧系统 视觉焦点 + 排版布局 可能并存、合并会丢内容)一直原样保留键名。所以你看到的卡片字段名 = 页面数据里的老键名,设置面板里则已是新名。

这确实不符合新契约的展示预期。我来把页面展示层也改为映射显示新名(数据不动、只读映射,保存仍保留原键,避免两个旧字段合并冲突):

📖 Read files

现在改展示层。先看 PagePropertiesDrawer 的字段编辑数据流:

Do anything
+ ⚠ Full access                    ⟳ DeepSeek V4 Flash Max ■
Note from Claude Sonnet 5

Full-size, fully legible version of the second Chinese-language DeepSeek V4 Flash Max coding-agent screenshot from the whale/vision-tooling tweet thread — the agent is debugging why a field-name migration (from a 4-field to 3-field contract) isn't reflected on a details page, tracing it to a read-time mapping gap in description_content.extra_fields, and proposing to fix the display layer.

deepseekcoding agentschinese ai communitysoftware debugging