
第三方库学习笔记
callinglove
从事Linux C/C++/Python开发近10年,擅长相关环境的搭建
展开
-
libevent学习__学习历程总结
高性能I/O框架库libevent The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. Furthermore, libevent a原创 2014-11-26 16:43:20 · 5062 阅读 · 1 评论 -
sqlite C/C++ API
官网:https://sqlite.org/download.html 下载代码安装三步走: ./configure // ./configure --help查看安装参数设置,学习configure的配置,明白安装后include、lib、bin等文件的位置 make make install 学习SQL基本语法,各个数据库基本相同http://www.w3cschool.cc原创 2014-05-01 20:30:05 · 1223 阅读 · 0 评论 -
redis☞ python客户端
redis python客户端库安装与简单使用原创 2015-02-13 14:54:41 · 846 阅读 · 0 评论 -
ubuntu下编译OpenGL
安装基本编译环境: sudo apt-get install build-essential 安装Opengl工具箱: sudo apt-get install freeglut3-dev /* main.cpp */#include #include #include #include "app.h" using namespace std; int mai转载 2013-01-07 22:56:44 · 2377 阅读 · 3 评论 -
OpenGL画简单图形
#include #pragma comment(linker,"/subsystem:\"windows\" /entry:\"mainCRTStartup\"") /* 三角形 GL_TRIANGLES(三个点成一个三角形) GL_TRIANGLE_STRIP(相邻三点成一个三角形) GL_TRIANGLE_FAN(同第二个,后2个和第一个成三角形) 四边形原创 2013-01-07 19:13:25 · 5154 阅读 · 1 评论