偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.
全部博文(1752)
发布时间:2016-06-08 15:40:12
http://blog.csdn.net/wzgl573537270/article/details/18968887GTK3.x For WIN7 下载http://win32builder.gnome.org/GTK的安装参照压缩包中gtk+-bundle_xxxxx_win32.README.txt的说明即可!配置 CodeBlocks的环境, 以及Demo参见原链接.......【阅读全文】
发布时间:2016-05-31 11:22:24
一台双网卡电脑拥有两个网关是不可能的,因为默认网关(default gateway)只能是一个。给Ubuntu Linux服务器安装两块网卡,分别设置不同的ip和网关(内网和外网),外网的通过外网网卡来访问,内网的通过内网网卡来访问,似乎实现起来很简单,但有些问题,因为默认网关(default gateway)只能是一个!解决的办.........【阅读全文】
发布时间:2016-05-30 11:32:01
#include "stdafx.h"#include <Windows.h>#include <iostream>using namespace std; DWORD WINAPI ThreadFuncFirst(LPVOID param){ int iCount = 50; while(iCount--){ cout<<"\nThreadFuncFirst:"<<iCount; } return 0;}DWORD WINAPI ThreadFuncSecond(LPVOID p.........【阅读全文】
发布时间:2016-05-28 09:36:58
https://ruff.io/zh-cn/docs/download.html......【阅读全文】
发布时间:2016-05-19 17:25:49
http://blog.csdn.net/lophyxp/article/details/14228735首先说一下alsa的配置文件。alsa的配置文件是alsa.conf位于/usr/share/alsa目录下,通常还有/usr/share/alsa/card和/usr/share/alsa/pcm两个子目录用来设置card相关的参数,别名以及一些PCM默认设置。以上配置文件,我等凡夫从不用修改,修改它们是大神的工作。.........【阅读全文】