偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.
全部博文(1748)
发布时间:2016-07-05 16:04:19
从 http://msys2.github.io/ 下载 msys2-x86_64-20160205.exe 并安装到 d:\msys641. 更新系统库 pacman -Sy pacman安装 pacman -Syupacman -S mingw-w64-x86_64-toolchainpacman -S mingw-w64-x86_64-gedit gedit有依赖GTK。......【阅读全文】
发布时间:2016-06-29 11:14:16
1. Ubuntu12.04查看BlueZ版本:#dpkg --status bluez | grep '^Version:'Version: 4.98-2ubuntu7http://www.ioncannon.net/linux/1570/bluetooth-4-0-le-on-raspberry-pi-with-bluez-5-x/2.查看蓝牙适配器:root@wv-ThinkPad-SL:/home/wv# hciconfighci1: Type: BR/EDR Bus: USB &nb.........【阅读全文】
发布时间: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.........【阅读全文】