[Lecture Notes] CMU 15-721 Advanced DatabaseCMU Advanced Database, Fall 2024 2024-09-03 Lecture Notes #Lecture Notes
LeetCode入门C++ STL std::queue 头文件: #include <queue std::queue<int> q; q.push(1); // 入队 q.front(); // 获取队首元素 q.pop(); // 出队 (没有返回值) q.empty(); // 判断是否为空 q.size(); 2024-08-09
JavaScript 属性标注符 (Accessor Property)Object.getOwnPropertyDescriptor, 可用于自定义getter, setter等 2024-07-27 Frontend #JavaScript
[macOS/Linux/Windows] How to flush DNS cachesudo resolvectl flush-caches 2024-06-19 Cross Platform > NAT #DNS
CS110 Longan Nano 配置与使用非官方 CS110 Spring 2024 Longan Nano 指南 2024-05-14 Lecture Notes #C #Lecture Notes
What is Cross-Origin Resource Sharing (CORS) policy?CORS prevents webpages from making requests to a different origin. 2024-03-22 Frontend #JavaScript #nodejs