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

推荐订阅源

G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
B
Blog
博客园 - 叶小钗
V
Visual Studio Blog
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
博客园 - Franky
V
V2EX
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
IT之家
IT之家
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Check Point Blog
N
Netflix TechBlog - Medium
博客园 - 【当耐特】

Tong-H

about fitness [ Tong-H ] 自媒体 [ Tong-H ] OpenClaw + 即梦自动运营小红书 [ Tong-H ] 202512 [ Tong-H ] nonsense [ Tong-H ] 基于 Playwright 的开发辅助工具-dev-playkit [ Tong-H ] 202509-202511 [ Tong-H ] CAT-TV [ Tong-H ] 202508/09 [ Tong-H ] AI 实践-DeepWiki-open 为项目生成 wiki 文档 [ Tong-H ] ai 实践-项目迁移 [ Tong-H ] 在富文本编辑器中处理图文资源 [ Tong-H ] how to stew meat [ Tong-H ] AI 实践-Memory Bank [ Tong-H ] Maxillofacial fracture [ Tong-H ] 2025-06/07 [ Tong-H ] ai [ Tong-H ] some day [ Tong-H ] day [ Tong-H ] 升级老项目的包依赖 [ Tong-H ] 2025-05 [ Tong-H ] 2025-04 [ Tong-H ] 2025-03 [ Tong-H ]
2025-07 [ Tong-H ]
2025-07-01 · via Tong-H

1851Daily Snippets2025-07-012026-05-31

0706

  • rn render issues
    • gif rendering in rn, Android have performance issues with large GIFs.
      • use react-native-fast-image is a popular choice
    • rendering multiple webviews on a single page can lead to performance issues
      • Each WebView is a separate instance of Chromium (Android System WebView or Chrome), consuming ~20-100MB+ RAM per instance
      • depending on: Device RAM, WebView content complexity and Whether WebViews are active.
      • Low-end Android devices may lead to crash with the number of 3
  • how to stew meat

0713

  • how to handle outside resources in rich editor

0720

  • use cursor to migrate features from an old project to a new one.
  • trivial
    • The requested module ‘/index.scss’ does not provide an export named ‘default’
      • vite checks files based on the order of resolve.extensions array, and scss is coming before js formats.
    • DefinePlugin Conflicting values for ‘process.env.NODE_ENV’.
      • Webpack’s mode parameter sets process.env.NODE_ENV via DefinePlugin [0]. So, if you use both mode: ‘development’ and an instance of DefinePlugin, process.env.NODE_ENV can get set with conflicting values…

0727