07 2022 档案

摘要:pgrep 基本用法 在linux中查看进程信息,经常要用到pa auxf,具体到某个进程的时候,又需进行grep管道。如:ps auxf|grep java|grep -v grep ,即然这么长,可以不可以简化呢?当然可以,如果还是使用ps命令的话,可以改为ps auxf|grep jav[a] 阅读全文
posted @ 2022-07-29 20:04 michaelchengjl 阅读(1222) 评论(0) 推荐(0) 编辑
摘要:Python 数据库接口规范简介 -- DB-API https://blog.konghy.cn/2015/08/16/python-dbapi/ 阅读全文
posted @ 2022-07-29 19:02 michaelchengjl 阅读(49) 评论(0) 推荐(0) 编辑
摘要:Docker 资源限制 https://www.cnblogs.com/sparkdev/p/8296063.html https://www.cnblogs.com/kkbill/p/12942989.html https://coolshell.cn/articles/17049.html ht 阅读全文
posted @ 2022-07-24 23:33 michaelchengjl 阅读(18) 评论(0) 推荐(0) 编辑
摘要:# Debug 1) pstree ``` ubuntu 上安装 apt-get install psmisc 以树状图显示进程PID为的进程以及子孙进程,如果有-p参数则同时显示每个进程的PID: 命令: pstree [-p] watch "pstree -p `pgrep -f test_co 阅读全文
posted @ 2022-07-22 19:51 michaelchengjl 阅读(93) 评论(0) 推荐(0) 编辑
摘要:Ubuntu 搭建jupyter web server,Jupyter notebook远程访问 ubuntu20.04安装anaconda3 创建虚拟环境,安装jupyter notebook conda create -n jupter python=3.7 Proceed ([y]/n)? 输 阅读全文
posted @ 2022-07-13 16:49 michaelchengjl 阅读(567) 评论(0) 推荐(0) 编辑
摘要:pycallgraph https://www.cnpython.com/pypi/pycallgraph3 https://www.jb51.net/article/207000.htm https://www.cnblogs.com/GO-NO-1/p/7155684.html 阅读全文
posted @ 2022-07-12 16:08 michaelchengjl 阅读(65) 评论(0) 推荐(0) 编辑
摘要:GEM5 相关资料 https://github.com/gem5 https://blog.csdn.net/ivy_reny/article/details/53883714 https://blog.csdn.net/qq_43381135/article/details/104371236 阅读全文
posted @ 2022-07-12 10:17 michaelchengjl 阅读(72) 评论(0) 推荐(0) 编辑
摘要:python模块详解 | psutil https://www.cnblogs.com/billie52707/p/12468740.html https://www.cnblogs.com/cherylgi/p/14363240.html https://www.cnblogs.com/linyu 阅读全文
posted @ 2022-07-08 15:09 michaelchengjl 阅读(23) 评论(0) 推荐(0) 编辑
摘要:cmake报错CMake 3.12 or higher is required. You are running version 3.10.2 解决方案 sudo apt remove --purge cmake hash -r sudo snap install cmake --classic c 阅读全文
posted @ 2022-07-07 14:43 michaelchengjl 阅读(2714) 评论(0) 推荐(1) 编辑
摘要:汇编相关资料 https://zhuanlan.zhihu.com/p/125128602 https://blog.csdn.net/Gibbs_p/article/details/72257840 https://www.its404.com/article/freeking101/102569 阅读全文
posted @ 2022-07-06 14:36 michaelchengjl 阅读(9) 评论(0) 推荐(0) 编辑
摘要:python3 异步并发编程 https://docs.python.org/zh-cn/3/library/asyncio.html https://www.cnblogs.com/shenh/p/9090586.html https://segmentfault.com/a/1190000040 阅读全文
posted @ 2022-07-06 14:24 michaelchengjl 阅读(29) 评论(0) 推荐(0) 编辑
摘要:计算机网络 https://www.cnblogs.com/machangwei-8/p/10353279.html https://blog.csdn.net/tianshan2010/article/details/107968397 https://www.cnblogs.com/peida/ 阅读全文
posted @ 2022-07-04 11:29 michaelchengjl 阅读(9) 评论(0) 推荐(0) 编辑
摘要:Harbor 企业级 Registry 服务器 Harbor 是由 VMware 公司中国团队为企业用户设计的 Registry server 开源项目,包括了权限管理 (RBAC)、LDAP、审计、管理界面、自我注册、HA 等企业必需的功能,同时针对中国用户的特点,设计镜像复制和中文支持等功能。 阅读全文
posted @ 2022-07-03 21:25 michaelchengjl 阅读(120) 评论(0) 推荐(0) 编辑
摘要:XLA https://www.tensorflow.org/xla?hl=zh-cn https://www.tensorflow.org/xla/architecture?hl=zh-cn https://zhuanlan.zhihu.com/p/98565435 https://develop 阅读全文
posted @ 2022-07-01 10:16 michaelchengjl 阅读(349) 评论(0) 推荐(0) 编辑