想要把命令行回显的错误信息保存到文件里,使用 command > file
的方式只能保存正常的输出信息。经查询了解了重定向的相关知识。想要单独输出错误信息,则使用 command 2> file
这样的命令即可。
MySQL 远程连接
凑巧学到了如何让 MySQL 或者 MariaDB 让远程用户连接的方法。
服务端
编辑配置文件:
1 | vi /etc/mysql/my.cnf |
做如下改动:
1 | bind-address = 0.0.0.0 |
重启服务:
1 | systemctl restart mysql |
进入 mysql:
1 | mysql -u root -p |
给予权限:
1 | use dbname; |
客户端
1 | mysql -u root -pyourpassword -h ipaddress -P port -D dbname |
利用 jQuery 实现锚点平滑移动
记录一个用 jQuery 实现点击锚点链接后平滑移动的方法。
1 | var $root = $('html, body'); |
如果想更新地址栏的话,就这样:
1 | var $root = $('html, body'); |
Classify Wine Data with Libsvm in Matlab
This a simple example of the classification with Libsvm in Matlab.
You can download the wine data from here.
Data Preprocessing
Load the wine data , and save it to winedata
1 | uiimport('wine.data'); |
Show the box figure of test data
1 | figure; |