https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=&problem=2514&mosmsg=Submission+received+with+ID+1623942
Dr. Ellie Arroway has established cont...
分类:
其他好文 时间:
2014-12-27 11:24:11
阅读次数:
166
MySql开始没有权限需要:grant all privileges on *.* to 账户@'%' identified by '密码' with grant option;(对全部数据设置权限,%=IP地址) grant all privileges on 数据库名.* to 账户@'%' i...
分类:
数据库 时间:
2014-12-27 11:22:21
阅读次数:
192
Clean工程 按住option键,再次Clean(Clean Build Folder...) 进入Window -> Organizer,在上面的Tab中选择Project,在左侧选中当前的工程,在右侧把Derived Data删除 报has been modified since the precompil...
分类:
其他好文 时间:
2014-12-27 00:25:46
阅读次数:
228
创建用户分配权限
CREATE USER 'bill'@'%' IDENTIFIED BY 'passpass';
grant all privileges on *.* to bill@localhost identified by 'passpass' with grant option;...
分类:
数据库 时间:
2014-12-26 16:48:25
阅读次数:
255
方法很简单,只需在fis的配置文件那里进行修改即可。文件路径在 C:\Users\Su\AppData\Roaming\npm\node_modules\fis\node_modules\fis-command-server\server.js打开server.js,在第63行添加.option('...
分类:
其他好文 时间:
2014-12-26 16:30:25
阅读次数:
176
今天从网络上copy一段示例代码到本地运行,代码很乱,便准备格式化,但发现option + command + L后行距还是很大,如图:
看上去是否不爽,调了setting中的code style也无效
最后找到替代方法,先把代码合并成一行再格式化,
合并成一行的快捷键: control + shift + J
格式化:option + command + L
结果如下:...
分类:
移动开发 时间:
2014-12-26 13:03:06
阅读次数:
686
1单向if语句双向if语句dangling elseswitch:char,byte,short,int2javax.swing.JOptionPane.showConfirmDialog(null,text);返回值:JOptionPane.YES_OPTION:0JOptionPane.NO_O...
分类:
编程语言 时间:
2014-12-26 06:06:48
阅读次数:
387
Image transformation is a process of rotating and scaling images. Rotating Images There are two ways to rotate an image. First option is to use the Ro...
语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text();//获取Sel...
分类:
Web程序 时间:
2014-12-25 01:28:56
阅读次数:
367
【利用tc做简单的限速策略】tcqdisc.sh#!/bin/sh
#
#tcqdisc.sh[a|c|d|s]interface[delay|loss]N[ms|%]
#
#
action=$1
eth=$2
option=$3
value=$4
case$actionin
a)
tcqdiscadddev$ethrootnetem$option$value
;;
c)
tcqdiscchangedev$ethrootnetem$option$value
;;
d)
tcqdis..
分类:
其他好文 时间:
2014-12-24 18:20:42
阅读次数:
152