摘要:
https://zh.wikipedia.org/wiki/流式接口 阅读全文
摘要:
空指针异常 空指针异常是指java中的异常类。 空指针异常是指java中的异常类。 中文名空指针异常外文名NullPointerException 当应用程序试图在需要对象的地方使用 null 时,抛出该异常。这种情况包括: 调用 null 对象的实例方法。 访问或修改 null 对象的字段。 将 阅读全文
摘要:
https://github.com/latel/logline Logline 中文 | English logline是一个轻量,实用和客户端级的前端日志记录工具。 为何前端定位问题很困难 前端同学对此肯定深有体会,代码发出去之后,犹如脱缰的野马,运行在万千的客户终端上,等到产品和后台反馈问题到 阅读全文
摘要:
https://cloud.google.com/apis/design/ 阅读全文
摘要:
https://wiki.open.qq.com/wiki/技术优化原则#1._.E7.A8.8B.E5.BA.8F.E8.AE.BE.E8.AE.A1.E6.97.B6.E9.9C.80.E8.A6.81.E8.80.83.E8.99.91.E7.9A.84.E4.BA.8B.E9.A1.B9 阅读全文
摘要:
人们就可以专注于”你在说什么”, 而不是”你在怎么说”. https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/parting_words/ 阅读全文
摘要:
http://alloyteam.github.io/CodeGuide/ http://sideeffect.kr/popularconvention#javascript 阅读全文
摘要:
http://hbyepei.github.io/2016/03/13/设置默认换行符/ 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_48d4cf2d0101859x.html 谈谈网络编程中应用层(基于TCP/UDP)的协议设计 (2013-04-27 19:11:00) 对于初涉网络编程的开发人员来说,在通信协议的设计上一般会有所困惑。一般的网络编程书籍上也较少涉及 阅读全文
摘要:
h256 阅读全文
摘要:
Linux性能分析工具与图形化方法 https://cloud.tencent.com/developer/article/1063652 阅读全文
摘要:
https://zh.cppreference.com/w/cpp/memory/shared_ptr 引用计数 阅读全文
摘要:
内存保护机制及绕过方案——通过覆盖虚函数表绕过/GS机制 阅读全文
摘要:
https://www.swansontec.com/sregisters.html I wrote this article for an online magazine called Scene Zine. Scene Zine caters to the Demo Scene, which i 阅读全文
摘要:
GDB查看内存命令(x命令) - super119 - 博客园 https://www.cnblogs.com/super119/archive/2011/11/18/2254382.html 可以使用examine命令(简写是x)来查看内存地址中的值。x命令的语法如下所示:x/<n/f/u> <a 阅读全文
摘要:
Class as decorator in python . https://www.geeksforgeeks.org/class-as-decorator-in-python/ http://code.activestate.com/recipes/412719/ http://wiki.c2. 阅读全文
摘要:
<!--StartFragment-->https://www.cnblogs.com/alisecurity/p/5486458.html<!--EndFragment--> 阅读全文
摘要:
https://zh.wikipedia.org/wiki/健全性测试 Modules\_threadmodule.c /* Lock objects */ typedef struct { PyObject_HEAD PyThread_type_lock lock_lock; PyObject * 阅读全文
摘要:
https://wooyun.js.org/drops/深入理解%20glibc%20malloc.html https://sploitfun.wordpress.com/2015/02/10/understanding-glibc-malloc/comment-page-1/ 阅读全文
摘要:
https://github.com/python/cpython/blob/master/Doc/library/contextlib.rst https://github.com/python/cpython/blob/master/Doc/library/contextlib.rst#reen 阅读全文
摘要:
Python\ceval.c #define NAME_ERROR_MSG \ "name '%.200s' is not defined XL" #define NAME_ERROR_MSG \ "name '%.200s' is not defined XL" 修改 Python 源代码 htt 阅读全文
摘要:
tmp 阅读全文
摘要:
gcov—a Test Coverage Program https://coverage.readthedocs.io/en/v4.5.x/cmd.html 覆盖率测试 阅读全文
摘要:
https://www.frida.re/docs/home/ 阅读全文
摘要:
a 阅读全文
摘要:
研发测试运维一体化 阅读全文
摘要:
https://pingcap.com/blog-cn/flame-graph/ 因为 TiKV 是自己内部使用了 jemalloc,并没有用系统的 malloc,所以我们不能直接用 perf 来探查系统的 malloc 函数。幸运的是,perf 能支持动态添加探针,我们将 TiKV 的 mallo 阅读全文
摘要:
https://software.intel.com/sites/landingpage/pintool/docs/97998/Pin/html/ http://www.brendangregg.com/perf.html 阅读全文
摘要:
http://boostorg.github.io/stacktrace/stacktrace/getting_started.html#stacktrace.getting_started.how_to_print_current_call_stack 阅读全文
摘要:
cpython/Lib/_threading_local.py at 3.12 · python/cpython · GitHub https://github.com/python/cpython/blob/3.12/Lib/_threading_local.py threading 基于线程的并 阅读全文
摘要:
1、Python切片对象可以为任意类型 https://github.com/python/cpython/blob/master/Include/sliceobject.h /* Slice object interface */ /* A slice object containing star 阅读全文
摘要:
REDIS cluster-tutorial -- Redis中文资料站 -- Redis中国用户组(CRUG) http://www.redis.cn/topics/cluster-tutorial.html 阅读全文
摘要:
https://github.com/liximomo/vscode-sftp 阅读全文
摘要:
/usr/include/limits.h /usr/include/linux/limits.h 阅读全文
摘要:
学件中心 https://cloud.tencent.com/developer/article/1354846 阅读全文
摘要:
Python-3.8.0\Include\patchlevel.h 版本 /* Values for PY_RELEASE_LEVEL */ #define PY_RELEASE_LEVEL_ALPHA 0xA #define PY_RELEASE_LEVEL_BETA 0xB #define PY 阅读全文
摘要:
https://segmentfault.com/a/1190000007240744 https://baike.baidu.com/item/Glibc http://man7.org/linux/man-pages/man2/epoll_wait.2.html https://baike.ba 阅读全文
摘要:
https://devguide.python.org/gdb/ https://sourceware.org/gdb/current/onlinedocs/gdb/Python.html#Python https://python-book.readthedocs.io/zh_CN/latest/ 阅读全文
摘要:
https://zh.wikipedia.org/wiki/包裝函式 阅读全文
摘要:
https://zh.wikipedia.org/wiki/換行 换行(英语:newline、line ending、end-of-line (EOL)、line Feed (LF)、line break),在计算机领域中是一种加在文字最后位置的特殊字符,在换行字符的下一个字符将会出现在下一行,实际 阅读全文