logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

CentOS安装NodeJS

CentOS安装NodeJS1、从官网下下载最新的nodejs,https://nodejs.org/en/download/历史版本可从https://nodejs.org/dist/下载2、通过ftp工具上传到linux服务,解压安装包tar -xvf node-v10.16.0-linux-x64.tar.xz3、移动并改名文件夹(不改名也行)cd /usr/local/mv /var/ft

Jsoncpp的安装配置及示例使用

Jsoncpp 安装jsoncpp 是一个 c++封装的 json 包,跨平台支持 windows、linux、unix 等多系统。linux 下面编译需要使用到 cmake 进行编译。下载 jsoncpp 源码git clone https://github.com/open-source-parsers/jsoncpp.git进到目录cd jsoncpp-master创建目录mkdir -p

关于c语言操作cjson数据相关示例

二个库文件 ..cjson库,为了方便,直接把这二个文件copy上来cJSON.h/*Copyright (c) 2009 Dave GamblePermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated doc...

#json#c++
关于cjson库的相关操作方法总结(构造,添加,删除,修改)

cjson_test.c#include <stdio.h>#include <stdlib.h>#include "cJSON.h"#include <string.h>/**{"name":"milo","age":80,"professional": {专业"english": 4,"putonghua": 2,"computer": 4},"langua

关于uthash库的终级使用方法。

关于uthash的说明,可以参考网址https://github.com/troydhanson/uthash为了方便,我这里直接上uthash的库,大家可以直接使用/*Copyright (c) 2003-2018, Troy D. Hansonhttp://troydhanson.github.com/uthash/All rights reserved.Red...

#算法#c++
关于netmap的环境安装以及简单示例

1 首先在ubuntu里面,需要把网卡的名字改成eth 类似这样的。vim /etc/default/grub找到GRUB_CMDLINE_LINUX=""改为GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"grub-mkconfig -o /boot/grub/grub.cfg2 安装netmaphttps://gitee.com/mirrors/

c语言数据库libzdb库的安装以及使用

下载,注意版本,使用3.1版本,如果以上的,可以支持c++17,我使用的不需要支持,搞c++17环境有些麻烦wget http://www.tildeslash.com/libzdb/dist/libzdb-3.1.tar.gztar -zxvf libzdb-3.1.tar.gz./configuremakemake installldconfig以下直接调用#include <stdio

到底了