logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

“make -j32”指定32个线程(job)一起make

https://www.crifan.com/summary_usage_about_make_linux_command/http://blog.chinaunix.net/uid-22238267-id-5748798.html

Linux链接boost库错误error while loading shared libraries错误解决方法

出错如下:主要错误:error while loading shared libraries: libboost_regex.so.1.51.0: cannot open shared object file: No such file or directory错误过程如下:[cpp] viewplain copy[ro

Linux下安装chromium

1、首先添加软件源,打开终端输入:      sudo add-apt-repository ppa:chromium-daily2、接着更新安装:      sudo apt-get update      sudo apt-get install chromium-browser3.ubuntu下更新chromium。打开终端依次输入:    

Linux查看库依赖方法

1.查看依赖的库:objdump -x xxx.so | grep NEEDED2.查看可执行程序依赖的库:objdump -x 可执行程序名 | grep NEEDED3.查看缺少的库:ldd xxx.so如果某个依赖的库不存在,会打印类似“xxx.so not found”的提示。...

CMakeSettings.json可用的宏变量

vs2017集成了cmake插件,支持创建、打开、编辑、编译、调试cmake工程,甚至支持跨平台远程生成调试,其中一些CMakeSettings.json可以使用的宏变量如下:$ {workspaceRoot} - 提供工作区文件夹的完整路径$ {workspaceHash} - 工作空间位置的散列; 用于为当前工作空间创建唯一标识符(例如,在文件夹路径中使用)$ {projectFile} -

查看Linux盘符信息df -l

https://zhidao.baidu.com/question/263585359408359965.htmlhttp://blog.51cto.com/13233/82677Linux下如何查看分区文件系统类型:https://blog.csdn.net/lzjsqn/article/details/72059035

k8s负载均衡

http://cloud.51cto.com/art/201803/567037.htm

Linux下常用的C/C++开源Socket库

1.      Linux Socket Programming In C++ : http://tldp.org/LDP/LG/issue74/tougher.html2.      ACE: http://www.cs.wustl.edu/~schmidt/ACE.htmlACE采用ACE_OS适配层屏蔽各种不同的、复杂繁琐的操作系统API。ACE是一个大型的中间件产品,代码20万

LZ4----优秀的压缩算法

https://blog.csdn.net/zhangskd/article/details/17009111https://github.com/lz4/lz4压缩率在1:4.5左右,速度为10ms级,如果压缩结果大于指定最大输出,压缩时间会长些,不过也在100ms左右。...

python使用json

http://pythonguidecn.readthedocs.io/zh/latest/scenarios/json.htmlhttp://python3-cookbook-personal.readthedocs.io/zh_CN/latest/c06/p02_read-write_json_data.htmlhttp://yshblog.com/blog/104

到底了