Theu32classifierThe U32 filter is the most advanced filter available in the current implementation. It entirely based on hashing tables, which make it...
分类:
其他好文 时间:
2015-12-09 19:48:05
阅读次数:
168
iptables概述框架tables>chains>rules(target)说明整体上可认为iptables就是由许多chain组成的,要不然其老版本怎么叫做ipchains呢。但是划分层次为:一个table可由多个chain组成,一个chain可由多个rules组成(一个rule对应一个target)。target概念的好处是:系统预..
分类:
其他好文 时间:
2015-12-08 07:27:44
阅读次数:
207
注意数据合法性的检测。26分的时候 有人打了两个多小时,只能打两个小时,有人9点之后来的,要排除。时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueA table tennis club has N tables available ...
分类:
其他好文 时间:
2015-12-06 11:30:17
阅读次数:
279
工具mysqlmysqldump应用举例导出导出全库备份到本地的目录mysqldump -u$USER -p$PASSWD -h127.0.0.1 -P3306 --routines --default-character-set=utf8 --lock-all-tables --add-drop-...
分类:
数据库 时间:
2015-12-05 19:32:15
阅读次数:
251
1.修改MySQL的登录设置:#vi/etc/my.cnf在[mysqld]的段中加上一句:skip-grant-tables例如:[mysqld]datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sockskip-grant-tables保存并且退...
分类:
数据库 时间:
2015-12-05 14:24:59
阅读次数:
221
本文转自:http://elvery.net/demo/responsive-tables/A quick and dirty look at some techniques for designing responsive table layouts. This was put together ...
分类:
其他好文 时间:
2015-12-03 18:42:19
阅读次数:
277
sp_tableoption的作用是设置表选项,影响表的某些特定行为,OBJECTPROPERTY 函数用于查看对象的属性。一,sp_tableoptionSets option values for user-defined tables. sp_tableoption can be used t...
分类:
其他好文 时间:
2015-12-02 12:35:04
阅读次数:
235
1.编辑MySQL配置文件(跳过验证登陆)#编辑文件,找到[mysqld],在下面添加一行skip-grant-tablesvi/etc/my.cnf[mysqld]skip-grant-tables:wq!#保存退出2.重启服务#servicemysqlrestart(-my_print_defaults:[Warning]World-writableconfigfile‘/etc/my.cnf‘isignored.Starting..
分类:
数据库 时间:
2015-12-01 13:00:14
阅读次数:
175
mysql常用操作查看都有哪些库 show databases;查看某个库的表 use 库名; show tables;查看表的字段 desc 表名;当前是哪个用户 select user();查询所有用户 select user,host from mysql.user;当前库 select...
分类:
数据库 时间:
2015-11-30 20:21:14
阅读次数:
189