网络工具
技术文章
Mysql列转行group_concat函数
MySQL中group_concat函数可以将分组的指定字段合并成一行内容,用来作列转行比较合适。
完整的语法如下:
group_concat([DISTINCT] 要连接的字段 [Order BY ASC/DESC 排序字段] [Separator '分隔符'])
默认分隔符为英文逗号
示例:
select id,group_concat(distinct name) from table group by id;
需要注意的是合并后字段长度有默认限制
参考:
https://www.iteye.com/blog/hchmsguo-555543
http://www.mamicode.com/info-detail-1389878.html
https://www.cnblogs.com/franson-2016/p/6911631.html
https://www.cnblogs.com/llq1214/p/11202866.html
PHP页面添加HTTP认证代码
// Digest HTTP Authentication // To enable, add user: "name" => "password". //$users = array(); $users = array(""=>""); // If auth is enabled: if (!empty($users)) { if (empty($_SERVER['PHP_AUTH_DIGEST'])) { header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Digest realm="' . $realm . '",qop="auth",nonce="' . uniqid() . '",opaque="' . md5($realm) .
分享几个制作词云的网站
http://www.tagxedo.com/app.html
比较老牌的外国网站工具,需要安装微软的Silverlight,有模板可选,风格比较经典;
http://nav.cucldk.com/tagcloud/
博主自己借鉴JavaScript插件写的小工具;
http://bjdataart.com/web/tagcloud/
一个模仿国外网站的工具,国内网络访问速度相对较好;
http://cloud.niucodata.com/
支持分词并统计,简洁明了;
http://www.yciyun.com/
功能、模板丰富,支持分词并统计,需注册;
Aria2一键安装管理脚本
转载自 https://www.zrj96.com/post-420.html
**系统要求**
CentOS 6+ / Debian 6+ / Ubuntu 14.04 +
**安装步骤**
执行下面的代码下载并运行脚本:
wget -N --no-check-certificate https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/aria2.sh && chmod +x aria2.sh && bash aria2.sh
运行脚本后会出现脚本操作菜单,选择并输入 1 就会开始安装。
**使用说明**
进入下载脚本的目录并运行脚本: