{ //https://github.com/simdsoft/yasio/releases/tag/v3.30.6 //https://github.com/simdsoft/yasio //https://github.com/wjwwood/serial //https://github.co ...
分类:
其他好文 时间:
2019-12-27 19:54:01
阅读次数:
88
1. http://zh.highscore.de/cpp/boost/ 第七章 2. https://mmoaay.gitbooks.io/boost asio cpp network programming chinese/content/ 3. boost::asio::ip::tcp实现网络 ...
分类:
其他好文 时间:
2019-12-19 09:41:30
阅读次数:
122
1. http://www.voidcn.com/article/p exkmmuyn po.html 2. http://www.voidcn.com/article/p xnxiwkrf po.html 3. http://www.voidcn.com/article/p otlhzoos po ...
分类:
其他好文 时间:
2019-12-19 09:31:09
阅读次数:
82
CS174A Fundamentals of Database Systems Fall 2019COURSE PROJECT 1 INTRODUCTIONYou have been hired to develop a prototype account management system for ...
分类:
数据库 时间:
2019-12-03 20:13:00
阅读次数:
87
首先,导入os模块 1 import os 获取当前文件所在文件夹的路径,getcwd() 更改当前目录:chdir() 创建文件夹,mkdir() 获取文件夹下所有子文件夹及文件,listdir() 判断是否是文件夹os.path.isdir() 更改文件名称,rename(old_name, n ...
分类:
编程语言 时间:
2019-11-04 13:19:20
阅读次数:
108
#include "stdafx.h" #define ASIO_STANDALONE #include <iostream>#include <asio.hpp> void do_callback(asio::steady_timer& timer, int& count){ timer.asyn ...
分类:
其他好文 时间:
2019-08-21 09:17:13
阅读次数:
164
ElasticSearch简介:ElasticSearch是一个分布式、高扩展、高实时的搜索与数据分析引擎。它能很方便的使大量数据具有搜索、分析和探索的能力。充分利用ElasticSearch的水平伸缩性,能使数据在生产环境变得更有价值。ElasticSearch的实现原理主要分为以下几个步骤,首先用户将数据提交到ElasticSearch数据库中,再通过分词控制器去将对应的语句分词,将其权重和分
分类:
其他好文 时间:
2019-08-02 16:18:14
阅读次数:
116
1.log4cxx 日志 2.protobuf 数据交互(类似json 3.boost.asio 网络库 4.boost.python 脚本支持 5.语法树 + c++处理excel资源 ...
分类:
其他好文 时间:
2019-07-26 11:59:45
阅读次数:
136
1. abs :求绝对值 2. all()传入一个可迭代对象,对该对象进行bool值运算,若都为True 就返回True,有一个为假,就返回False 3. any () 和all()相反,只要有一个为真就返回Ture 4. 进制转换 5. bool() 判断布尔值,除了下面三个,其他都返回True ...
分类:
编程语言 时间:
2019-07-07 11:07:29
阅读次数:
158
its time to do cmake right Enough preambles. Does this look familiar to you? find_package(Boost 1.55 COMPONENTS asio) list(APPEND INCLUDE_DIRS ${BOOST... ...
分类:
其他好文 时间:
2019-07-01 22:52:09
阅读次数:
135