摘要:
预备知识:多项式除法 上一节我们讲了checksum 这一节我们来讲CRC How do CRCs work CRC: the cyclic redundancy check 从下面几个章节来讲, 首先是讲一下如何通过 模除运算 来检测错误,为了给你后面学习CRC提供一些sense 现在有hello 阅读全文
摘要:
col命令: 看介绍是过滤掉reverse line feeds 要明白什么是reverse line feeds,我们要先明白什么是line feeds 首先介绍一下new line(换行符) https://en.wikipedia.org/wiki/Newline ,在linux中,换行符ne 阅读全文
摘要:
1. chrome://settings/ 最下面 advanced, 将use hardware acceleration关闭 2.chrome://flags/ 将 关闭 3.安装Font Render Enhancer这个插件 不知道是不是心理作用,但是进行上面操作后会感觉自己眼睛对字体的聚焦 阅读全文
摘要:
1.删除除了某个名字之外的都删除掉find -type f -not -name '*.wf.*' -exec rm {} \;2.find命令{} 是指查询到的结果集3.xargs命令xargs和find 的区别是find是一次性将结果集传入,而xargs是传部分 阅读全文
摘要:
this type of error where you have multiple bit errors in a row is called burst error 除了为每一行添加一个奇偶校验位,还可以为每一列添加 parity bits per row parity bits per col 阅读全文
摘要:
概念: one’s complement ( 二进制补码的第一种形式) two's complement(二进制补码的第二种形式 我们中文翻译中的“补码”) Twos complement: Negative numbers in binary 二进制的负数表示法 负数的表示法: 我们将第一位定义为 阅读全文
摘要:
在mac上使用Chrome, control+tab是切换到下一个tab, control+shift+tab是切换到上一个tab, 感觉这个键位不是特别好按,想设置成control+1 进入mac的 系统设置 -> 键盘 -> 快捷键 Mac System Preferences→Keyboard 阅读全文
摘要:
使用command+H隐藏窗口后, 有没有什么办法能把所有隐藏的窗口都展示出来呢 System Preferences > Keyboard > Keyboard Shortcuts > select "Application Shortcuts" > highlight "All Applicat 阅读全文
摘要:
Launch 和 attach的区别 Launch的话是直接以debug模式运行一个js文件,遇到debugger后会停止 而 Attach需要先开启一个运行在调试模式开启了debug端口的nodejs项目 资料: https://code.visualstudio.com/docs/nodejs/ 阅读全文
摘要:
结论: 随便起个名,某某,xxx,这种随意起名的意思。 资料一: https://softwareengineering.stackexchange.com/questions/69788/what-is-the-history-of-the-use-of-foo-and-bar-in-source 阅读全文