首页HTML开始的地方

摘要: Linux kernel 4.9 及以上已支持 tcp_bbr 1.查看系统内核版本: uname -r 看内核版本是否大于等于4.9,否则要升级内核,或者安装bbr。 2.开启BBR:echo "net.core.default_qdisc=fq" >> /etc/sysctl.confecho 阅读全文
posted @ 2023-07-03 09:13 csnotes 阅读(1026) 评论(0) 推荐(0)
摘要: https://www.psy.pku.edu.cn/static/main/uploads/faculty/wu_yan_hong/2016051900002.pdf 脑智前沿科普|脑细胞如何产生记忆 脑与心智毕生发展研究中心CLIMB 阅读全文
posted @ 2023-06-29 20:52 csnotes 阅读(56) 评论(0) 推荐(0)
摘要: 转自https://xijiz.github.io/post/what-is-understanding.html 阅读全文
posted @ 2023-06-21 20:58 csnotes 阅读(224) 评论(0) 推荐(0)
摘要: @echo off echo\echo\echo 适用于 Navicat 12.0.29echo 正在清除试用信息。。。 for /f %%i in ('reg query HKCU\Software\Classes\CLSID') do call:checkDelCLSID %%i reg del 阅读全文
posted @ 2023-04-07 21:16 csnotes 阅读(40) 评论(0) 推荐(0)
摘要: 头部文件 DOS头 DOS MZ头 IMAGE_DOS_HEADER 64个字节 第一个为5A4D即MZ,最后一个为IMAGE_NT_HEADERS的偏移。 DOS stub 不固定 IMAGE_DOS_HEADER尾部,到PE文件头开始,之间部分。PE中没有与之对应的结构 pe头IMAGE_NT_ 阅读全文
posted @ 2023-04-07 11:23 csnotes 阅读(51) 评论(0) 推荐(0)
摘要: 1、简洁说明 localhost (IP都没有,不到网络层IP也不到链路层MAC) localhost 不会解析成ip,也不会占用网卡、网络资源 (到TCP/UDP,但不经过IP) 127.0.0.1 (有IP,只到网络层IP走网卡,不到链路层MAC) 127.0.0.1 回环地址,不经过[链路层, 阅读全文
posted @ 2023-04-03 22:05 csnotes 阅读(2937) 评论(0) 推荐(0)
摘要: aria2 #安装aria2 yum install aria2 #配置aria2 mkdir ~/.aria2 touch ~/.aria2/aria2.session vi ~/.aria2/aria2.conf ## 文件保存相关 ## # 文件的保存路径(可使用绝对路径或相对路径), 默认: 阅读全文
posted @ 2023-03-04 10:39 csnotes 阅读(81) 评论(0) 推荐(0)
摘要: C 风格的字符串起源于 C 语言,并在 C++ 中继续得到支持。字符串实际上是使用 null 字符 \0 终止的一维字符数组。 因此,一个以 null 结尾的字符串,包含了组成字符串的字符。 DB 'dddd', 00H ;结尾00H, 0DH回车,0AH换行,ascII码表。 用 C 语言百定义字 阅读全文
posted @ 2023-03-01 15:16 csnotes 阅读(802) 评论(0) 推荐(0)
摘要: const 函数名后,加const使类的成员函数,不能修改类内成员。mutable可以突破const限制! 在函数后面加const只能在类的成员函数中实现!普通的函数是无法进行这样的操作的! void test() const { cout<<"This is test function!"<<en 阅读全文
posted @ 2023-02-23 20:37 csnotes 阅读(36) 评论(0) 推荐(0)
摘要: sysctl内核参数 阅读全文
posted @ 2023-02-23 17:28 csnotes 阅读(12) 评论(0) 推荐(0)

这是页脚html