VGA线

VGA线 VGA线本来含有14根线15孔 (第9针可以作给usb供电线,也可以作盲针即: 空脚) ,其中5根传输VGA主信号,还有4根主要数据信号线

img width

img width 标签的 height 和 width 属性设置图像的尺寸。 提示: 为图像指定 height 和 width 属性是一个好习惯。如果设置了这些属性,就可以在页面加载时为图像预留空间。如果没有这

linux game alien arena

linux game alien arena Alien Arena 2011 7.50版本发布,这款开源的游戏新版本带来了以下特色:新增的物理引擎 ,改善的游戏IRC客户端,GUN的自动化安装工具,以便Li

CSRF/XSRF

CSRF/XSRF CSRF (Cross-site request forgery跨站请求伪造,也被称成为"one click attack"或者session riding,通常缩写为CSRF

size

size size 程序列出参数列表中各目标文件或存档库文件的段大小 — 以及总大小。默认情况下,对每个目标文件或存档库中的每个模块都会产生一行输出。 1 size foo wiloonwy@penguin:~/tmp$ size

url转义字符

url 转义字符, urlencode url 转义字符, URL escape codes 对与通过get方式提交的url,浏览器在提交前首先根据http协议把参数及其值解析配对。而url的参数间是通

google firstitemmsec

google firstitemmsec Get subscription list. Each subscription contains a “category” if the user had created folders. It also has a field called firstitemmsec that denotes in milliseconds the time from which entries for that feed should be picked up. firstitemmsec initially stumped me until I added a new subscription. I noticed that Google Reader has entries for a feed spanning back to a month (probably -infinity). So the reader has

sqlite 数据类型

sqlite 数据类型 一般数据采用的固定的静态数据类型,而 SQLite 采用的是动态数据类型,会根据存入值自动判断。SQLite 具有以下五种数据类型: NULL: 空值。 INTEGER: 带符

adb shell sqlite DB

adb shell sqlite DB 在Android应用程序开发中,我们有时可能会用到系统中自带内嵌的数据库sqlite3,例如我们在某个应用程序中创建了数据库,如何查

java, break/continue

java, break/continue 使用break 退出循环 可以使用break 语句直接强行退出循环,忽略循环体中任何其他语句和循环条件测试。在循环中遇到break语句时,循环

CopyOnWriteArrayList

CopyOnWriteArrayList http://www.cnblogs.com/sunwei2012/archive/2010/10/08/1845656.html 除了加锁外,还有一种方式可以防止并发修改异常,就是读写分离技术 (不是数据库上的) 。 先回顾一下一个常识: JAVA中"="

ConcurrentHashMap/CopyOnWriteArrayList

ConcurrentHashMap/CopyOnWriteArrayList ConcurrentHashMap, CopyOnWriteArrayList 并发集合类 ConcurrentHashMap 和 CopyOnWriteArrayList(转) 在Java类库中出现的第一个关联的集合类是 Hashtable ,它是JDK 1.0的一部分。 Hashtable

分布式消息队列

分布式消息队列 分布式消息队列是是大型分布式系统不可缺少的中间件,主要解决应用耦合、异步消息、流量削锋等问题。实现高性能、高可用、可伸缩和最终

cxf wsdl2java

cxf wsdl2java 1 2 3 wsdl2java -d src -client http://localhost:9000/helloWorld?wsdl 其作用上面的build.xml作用一样。 附加: wsdl2java用法: wsdl2java -p com -d src -all aa.wsdl -p 指定其wsdl的命名空间,也就是要

hacker/cracker

hacker/cracker hacker A person who delights in having an intimate understanding of the internal workings of a system, computers and computer networks in particular. The term is often misused in a pejorative context, where “cracker” would be the correct term. See also: cracker. cracker A cracker is an individual who attempts to access computer systems without authorization. These individuals are often malicious, as opposed to hackers, and have many means at their disposal for

jvm http proxy

jvm http proxy http://i4t.org/2007/05/04/java-http-proxy-settings/ Java HTTP Proxy Settings OVERVIEW For local networks within an organization, access to the public-domain Internet is often via a HTTP Proxy. This article talks about the HTTP proxy settings for the Java environment. I did not find a good document on the Web to describe these settings; Had to discover many of them by trial-and-error. Hence this article. KEYWORDS HTTP Proxy, Java Proxy Settings, Tomcat, Application Server, Servlets, HTTP Proxy Authentication for Java, Java Application Proxy Settings

linux shell 进程监控

linux shell 进程监控 进程内存占用 1 2 3 4 top -p <PID> # 查看进程的status文件 cat /proc/2913/status http://www.ibm.com/developerworks/cn/linux/l-cn-shell-monitoring/index.html?ca=drs- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 function GetPID #User #Name { PsUser=$1 PsName=$2 pid=\`ps -u $PsUser|grep $PsName|grep -v grep|grep -v vi|grep -v dbxn

awk command

awk command [ɔk] 参数 1 -F fs, --field-separator=fs, # 指定输入文件折分隔符,fs 是一个字符串或者是一个正则表达式 print ‘{pirnt $2}', print 外层要用单引号, 不能用双引号 $0 代表当前行 内建变量