logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

linux源码安装git

linux 源码安装git, 各种坑,记录一下获取源码wget https://github.com/git/git/archive/v2.3.0.zipunzip v2.3.0.zipcd git-2.3.0编译安装设置注意看Makefile ,下边几个宏需要注意CURLDIR找不到libcurl的*.h和lib,重新安装了libcurl, 需要指定libcurl的*.h, lib的位置NO_R

#git
linux 证书有效期查看

查看本地证书有效日期openssl x509 -in ${cer-path}-noout -datesopenssl 参数x509 : Run certificate display and signing utility.-noout : Prevents output of the encoded version of the certificate.-dates : Prints out t

#linux
查看gpu使用情况

命令行方式 查询gpu设备使用情况。

文章图片
#linux
Python的http服务(SimpleHTTPServer,BaseHTTPServer,CGIHTTPServer)

Python的“Web服务器模块”有如下三种一、SimpleHTTPServer:包含执行GET和HEAD请求的SimpleHTTPRequestHandler类。通过下面命令我们创建了HTTP服务,默认使用8000端口号监听。通过:http://localhost:8000/ 就可以访问,如果文件夹下有index.html,那么这个文件就会成为一个默认页,如果没有这个文件,那么,目录

#python
jieba分词词性对照表

from:https://blog.csdn.net/princemrgao/article/details/107532469------jieba分词词性对照表标注解释标注解释标注解释a形容词mq数量词tg时语素ad副形词n名词u助词ag形语素ng例:义 乳 亭ud例:得an名形词nr..

#nlp
libhv http client vs cpr

libhv http client 和 cpr 的性能对比。

文章图片
#http
python invoking c++

invoking cc module from pythoncodebuildreferencesinvoking c/c++ module from pythonuse boost pythoncodemodel_wrapper.cpp#include boost/python.hpp>#include boost/python/s

c++/ python 混合编程多线程问题

c++调用pythonpython调用c++refpybind11.GIL

python exception

#!/usr/bin/pythonimport tracebacktry:1/0#except Exception,e:#print traceback.format_exc()except Exception as e:print e #!/usr/bin/pythonimport tracebacktry:1/0#except Except

到底了