http://bbs.csdn.net/topics/340253236 需要在此文件中添加该按钮 声明一下。 但是在resource.h中已经定义了:#define IDC_ETHCONF_CHKPSW 1184#define IDC_MTL_RADIO 1187#define IDC_CFC_R ...
分类:
编程语言 时间:
2017-02-20 18:48:57
阅读次数:
218
Eclipse不去掉对JS文件的Validation,编译时会花费很长的时间,有时甚至会导致编译失败。 可以按照如下的方式去掉对JS文件的Validation。 一、window->preference->Java Script->Validator->Errors/Warnings->Enable ...
分类:
Web程序 时间:
2017-02-19 23:49:09
阅读次数:
354
一、服务器推送理解 首先要知道为什么使用服务器推送,回答这个问题其实就是相当于回答,服务器推送的优点,可以从两个方面来思考: 1.1 服务器推送的目的 及时的将客户端感兴趣的数据推送给它。 1.2 不是用服务器推送怎么来实现需求 不使用服务端推送,那就只能由客户端定期对服务器发送请求,来获取是否有需 ...
分类:
其他好文 时间:
2017-02-19 18:29:17
阅读次数:
139
1 #include 2 #include 3 #include 4 #include 5 6 #define DEV_NAME "/dev/my_led" 7 8 int main(int argc, char const *argv[]) 9 { 10 11 int fd = open(DEV_... ...
分类:
移动开发 时间:
2017-02-19 18:04:00
阅读次数:
210
1 #include 2 #include 3 #include 4 #include 5 6 #define DEV_NAME "/dev/my_led" 7 8 int main(int argc, char const *argv[]) 9 { 10 11 int fd = open(DEV_... ...
分类:
移动开发 时间:
2017-02-19 17:59:49
阅读次数:
223
# -*- coding: utf-8 -*-import xlrdimport xlwtimport osimport sysreload(sys)sys.setdefaultencoding('utf8')xlrd.Book.encoding = "gbk"type=sys.getfilesys ...
分类:
其他好文 时间:
2017-02-18 12:20:28
阅读次数:
250
settings.xml 文件修改一下内容 本地 <localRepository>D:\maven\repository</localRepository> 远程:修改成国内的速度快 <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> < ...
分类:
其他好文 时间:
2017-02-18 09:17:26
阅读次数:
166
eslint “eol-last”:0 文件末尾强制换行(就是代码结尾处,要来个空格,相当于加一行,设置为0就可以了) ./src/main.js error eol-last Newline required at endoffile but notfound /Users/xxx/site/xx ...
分类:
其他好文 时间:
2017-02-17 23:23:04
阅读次数:
3205
subprocess模块 subprocess包来fork一个子进程,并运行一个外部的程序。 subprocess包中定义有数个创建子进程的函数。subprocess还提供了一些管理标准流(standard stream)和管道(pipe)的工具,从而在进程间使用文本通信。 subprocess.c ...
分类:
其他好文 时间:
2017-02-16 23:46:01
阅读次数:
168