会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
AngDH
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
124
下一页
2025年6月20日
GN build
摘要: GN build https://gn.googlesource.com/gn/+/master/docs/ https://docs.google.com/presentation/d/15Zwb53JcncHfEwHpnG_PoIbbzQ3GQi_cpujYwbpcbZo/edit?pli=1&
阅读全文
posted @ 2025-06-20 14:35 AngDH
阅读(11)
评论(0)
推荐(0)
2025年6月12日
cpp 完美转发
摘要: #include <iostream> #include <utility> // 目标函数,接收左值引用 void process(int& value) { std::cout << "左值版本: " << value << std::endl; } // 目标函数,接收右值引用 void pr
阅读全文
posted @ 2025-06-12 21:33 AngDH
阅读(17)
评论(0)
推荐(0)
2025年6月9日
babel ast 获取包含该表达式的语句节点 getStatementParent
摘要: // 获取包含该表达式的语句节点 const statement = path.getStatementParent();
阅读全文
posted @ 2025-06-09 19:44 AngDH
阅读(12)
评论(0)
推荐(0)
babel ast 创建一元表达式节点
摘要: types.UnaryExpression('+', types.identifier('a'), true) 详解 基本概念 types.UnaryExpression 是 Babel 提供的一个用于创建一元表达式节点的函数。一元表达式是指只有一个操作数的表达式,比如 +a、-b、!c 等。 参数
阅读全文
posted @ 2025-06-09 14:42 AngDH
阅读(19)
评论(0)
推荐(0)
2025年6月3日
log 输出,处理window递归
摘要: https://mp.weixin.qq.com/s/MHaKy12G8VDD23-a7tMRXg JSON.stringify($_aiding.$_zw,function(k, v) {if (v window) {return 'window'} return v})
阅读全文
posted @ 2025-06-03 18:33 AngDH
阅读(14)
评论(0)
推荐(0)
gzip炸弹
摘要: https://mp.weixin.qq.com/s/gObE977lOjE4I0vTT5tx_A
阅读全文
posted @ 2025-06-03 16:40 AngDH
阅读(23)
评论(0)
推荐(0)
在浏览器中使用 AST
摘要: https://mp.weixin.qq.com/s/oXYSzsPVr5Ro348c9Gn_QQ <!DOCTYPE html> <html lang="cn"> <head> <meta charset="UTF-8"> <title>AST 实时反混淆模版</title> </head> <b
阅读全文
posted @ 2025-06-03 15:16 AngDH
阅读(26)
评论(0)
推荐(0)
Object.defineProperty 什么时候用value /get,set
摘要: 在 JavaScript 中,数据描述符 和 存取描述符 是 Object.defineProperty() 的两种属性描述符类型,它们的使用场景和区别如下: 1. 数据描述符(Data Descriptor) 适用场景: 静态属性:定义固定值或不可变属性(如常量、配置项)。 简单读写控制:仅需控制
阅读全文
posted @ 2025-06-03 12:26 AngDH
阅读(24)
评论(0)
推荐(0)
2025年5月26日
rust 安装
摘要: https://www.cnblogs.com/-CO-/p/18041169
阅读全文
posted @ 2025-05-26 21:59 AngDH
阅读(11)
评论(0)
推荐(0)
2025年5月20日
算法-算数表达式
摘要: def calculate(s: str) -> float: def helper(s_iter): stack = [] num = 0.0 sign = '+' while True: char = next(s_iter, None) if char is None or char in '
阅读全文
posted @ 2025-05-20 18:00 AngDH
阅读(18)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
124
下一页
公告