Chengyuan Ma
Chengyuan Ma
I am writing a program where I need to clip parts of the svg generated by dvisvgm based on the output of synctex. To do that I need to know...
最近自己写项目的时候需要在大流量的情形下使用KCP,于是基于原版使用Rust编写了略微修改的KCP实现: * 在协议本身不做调整,完全兼容。 * 相较于C实现进行了架构上的些许调整(回调改为poll,分离配置变量,去除`check`+`update`)。 * 在C实现的基础之上,使用链表+滚动数组优化大窗口下的发送性能。 * 在C实现的基础之上,使用小根堆优化RTO计时器的效率,提升重传性能。 * 将BBR拥塞控制算法进行一定修改后试验性地运用到KCP中。 具体可以参考[这篇博文](https://alan20210202.github.io/2021/02/02/KCP/)。 代码可以参考[这个Gist](https://gist.github.com/alan20210202/32c04772f8d2d8b69c827b887b26bcdd),或博文里的链接。 供大家参考:)
MIT Scheme has a debugger which can be entered by typing `(debug)` after an error: ``` 1 ]=> something ;Unbound variable: something ;To continue, call RESTART with an option number:...
**Describe the bug** My laptop allows me to select in BIOS whether to boot with switchable graphics or discrete graphics only. In the latter mode the OS will not see...
I am writing a program where I use synctex to determine where a piece of LaTeX code end up in the PDF. During testing I noticed that the handling of...