JavaScript 检查 email 地址的正则表达式?1.代码(1)Checking an email address - Version 01This page allows you to enter and checkan email address such as asdf@java2s....
分类:
编程语言 时间:
2014-07-24 21:22:46
阅读次数:
347
一.调试准备
首先需要开启android系统的adb功能,start adbd
PC端 adb connect IP ADDRESS
如果 出现adb 异常可以尝试 adb kill-server ; adb start-server...
分类:
移动开发 时间:
2014-07-24 17:36:26
阅读次数:
405
Pointers * Pointers are variables * Pointers store only address of the memory location. they do not store a value. * Pointers are declared like :- int...
分类:
其他好文 时间:
2014-07-24 12:09:05
阅读次数:
288
所需要的参数: $secret_key, $bind_address = '127.0.0.1', $cache_server_ip = '127.0.0.1', $cache_server_port = '11211', $swift = false, $quantum = false, $pac...
分类:
其他好文 时间:
2014-07-23 15:19:26
阅读次数:
315
Wrote by mutouyun. (http://darkc.at/about-data-structure-alignment/)
1. 内存对齐(Data Structure Alignment)是什么
内存对齐,或者说字节对齐,是一个数据类型所能存放的内存地址的属性(Alignment is a property
of a memory address)。
这个属性...
分类:
其他好文 时间:
2014-07-22 23:52:08
阅读次数:
487
1.引入pymssql包import pymssql2.建立连接: conn = pymssql.connect(server=conf['db_address'], port="1433",user=conf['db_username'], password=conf['db_pass...
分类:
数据库 时间:
2014-07-22 22:50:12
阅读次数:
339
tomcat启动报错:Cannotassignrequestedaddress:jvm_bind经查端口并未被占用,发现最后原因是hosts文件改过,加了一行<ip>localhost,导致启动时绑定不存在的ip失败了,把这行去掉就可以了。
分类:
其他好文 时间:
2014-07-22 18:23:52
阅读次数:
225
选 项 说 明-H, --hostname=ADDRESS 主机名或域名-I, --IP-address=ADDRESS server的IP地址,用于在不能DNS的情况下-p, --port=INTEGER 端口号,默认80-u, --url=PATH url,默认是/-w, --warning=D...
分类:
其他好文 时间:
2014-07-22 00:33:37
阅读次数:
354
1.修改 ip地址 子网掩码 默认网关
netsh interface ip set address "本地连接" static 192.168.1.23 255.255.255.0 192.168.1.1
2.修改DNS
netsh interface ip set dns "本地连接" static 192.168.1.1 primary
3.自动获取ip地址
netsh inter...
分类:
其他好文 时间:
2014-07-19 02:46:16
阅读次数:
224