摘要:
摘要:为了实现对前端脉冲电子围栏系统的远程管理,设计了一种基于网络接口芯片W5200的电子围栏管理系统.前端围栏系统模块主要包括微控器C8051F340、高压脉冲产生、反馈信号接收、网络通信和声光报警等;通过网络使围栏系统与控制中心管理主机进行数据交换,实现管理机对围栏系统工作模式设置和对反馈的报警信息进行声光语音报警、报警显示及数据存储管理,以达到远程监控与管理的目的;通过系统试验运行,效果良好,管理系统稳定可靠.作者:黄其培,钟睿,段俊杰,李尚柏作者单位:四川大学辐射物理及技术教育部重点实验室链接:http://d.wanfangdata.com.cn/Periodical_jsjzdcl 阅读全文
摘要:
mysql> use innoDatabase changedmysql> insert into mm select 1;Query OK, 1 row affected (0.01 sec)Records: 1 Duplicates: 0 Warnings: 0mysql> insert into mm select 2;Query OK, 1 row affected (0.00 sec)Records: 1 Duplicates: 0 Warnings: 0mysql> insert into mm select 3;Query OK, 1 row affect 阅读全文
摘要:
首先下载Apache2.x的源码包,地址:http://httpd.apache.org/当前(2013年03月26日)的最新版本为Apache HTTP Server 2.4.4,下载地址:http://httpd.apache.org/download.cgi#apache241、解压下载的源码包 tar -xjvf httpd-2.4.4.tar.bz2 或者 tar -xzvf httpd-2.4.4.tar.gz2、编译并安装Apache2.x ./configure --prefix=/usr/local/apache2 \ --enable-so 其中,prefix 指定安... 阅读全文
摘要:
一直在寻找有关jQuery性能优化方面的小窍门,能让我那臃肿的动态网页应用变得轻便些。找了很多文章后,我决定将最好最常用的一些优化性能的建议列出来。我也做了一个jQuery性能优化的简明样式表,你可以打印出来或者设为桌面背景。一、选择器性能优化建议1. 总是从#id选择器来继承这是jQuery选择器的一条黄金法则。jQuery选择一个元素最快的方法就是用ID来选择了。1$('#content').hide();或者从ID选择器继承来选择多个元素:1$('#content p').hide();2. 在class前面使用tagjQuery中第二快的选择器就是tag 阅读全文
摘要:
What is the Logical Architecture? And Layers? The logical architecture is the large-scale organization of the software classes into packages (or namespaces), subsystems, and layers. It's called the logical architecture because there's no decision about how these elements are deployed across 阅读全文