lingr7

Results 35 comments of lingr7

> 试着用了知乎上面的一个工具[https://zhuanlan.zhihu.com/p/114096199](uac%E7%99%BD%E5%90%8D%E5%8D%95) , 然后把生成的快捷方式拖到了启动的文件夹里面,开机自启动可以读取配置了,并且也没了uac的警告,但是要注意的是用软件生成快捷方式的时候要**添加起始位置** 我试了一下,会弹出那个是否由autohotkey.exe打开该脚本的确认框,这一点很麻烦啊。

修改了CapsLock.ahk中的前面几行。 ``` ;full_command_line := DllCall("GetCommandLine", "str") ;if not (A_IsAdmin or RegExMatch(full_command_line, " /restart(?!\S)")) ;{ ; try ; leads to having the script re-launching itself as administrator ; { ; if...

My problem has been solved, the solution is as follows ---------------- Win10 Linux子系统编译运行c语言程序 [win10 下的 Linux 子系统 Ubuntu 的 gcc 安装_ChanYipFan的博客-CSDN博客](https://blog.csdn.net/weixin_43530726/article/details/89605548) [安装完wsl,win10子系统Ubuntu 后需要做的事_wsl,Ubuntu,第一件事_ChanYipFan的博客-CSDN博客] ( https://blog.csdn.net/weixin_43530726/article/details/91038807) [Win10 linux子系统如何共享文件-百度经验] (https://jingyan.baidu.com/article/8275fc865232db46a03cf6c8.html) [Linux 下编译并运行C语言程序_cxcbupt-CSDN博客](https://blog.csdn.net/cxc19890214/article/details/40622351)...

修正,应该是docker wsl2挂载文件目录有问题导致的。这三种本质上一样,只不过使用Dockerfile,最后使用的node版本是12.20.1

pyldpc/encoder.py at master · hichamjanati/pyldpc https://github.com/hichamjanati/pyldpc/blob/master/pyldpc/encoder.py ``` def encode(tG, v, snr, seed=None): """Encode a binary message and adds Gaussian noise. Parameters ---------- tG: array or scipy.sparse.csr_matrix (m, k). Transposed coding...

H.npy parity_check_matrix array(64,128) np.int32 [H_npy.zip](https://github.com/hichamjanati/pyldpc/files/4714891/H_npy.zip) this parity_check_matrix should choose `solver = _logbp_numba_regular` or `solver = _logbp_numba`

[kb:style standards [Zotero Documentation] ](https://www.zotero.org/support/kb/style_standards#commercial_style_guides) I did n’t find a solution, and I did n’t have the knowledge and ability to provide help on the zotero-wiki, but I think it...

工会是管理机构,不是服务机构。运转起来的工会,只是在你头上多了座要交钱的山而已。

sudo cp ./git-cz /usr/lib/git-core sudo chmod 777 /usr/lib/git-core/git-cz 然后使用git cz就出现了。这里的git-cz就是编译产物

关于乙级1032,提供一种更简化一点的代码 ```c++ #include #define maxn 100005 int goal[maxn]={0}; int main(){ int N,a,e,max=0; scanf("%d",&N); goal[0]=-1;//哨兵 while(N--){ scanf("%d %d",&a,&e); goal[a]+=e; if(goal[a]>goal[max]) max=a; } printf("%d %d",max,goal[max]); return 0; } ```