MRX.LAFuck the Rules!

让typecho支持emoji

我有点奇怪,为啥typecho都这么多版本了,怎么还不支持emoji.
首先执行下面的SQL语句来修改表的编码

alter table typecho_comments convert to character set utf8mb4 collate utf8mb4_unicode_ci;
alter table typecho_contents convert to character set utf8mb4 collate utf8mb4_unicode_ci;
alter table typecho_fields convert to character set utf8mb4 collate utf8mb4_unicode_ci;
alter table typecho_metas convert to character set utf8mb4 collate utf8mb4_unicode_ci;
alter table typecho_options convert to character set utf8mb4 collate utf8mb4_unicode_ci;
alter table typecho_relationships convert to character set utf8mb4 collate utf8mb4_unicode_ci;
alter table typecho_users convert to character set utf8mb4 collate utf8mb4_unicode_ci;

然后修改typecho的配置文件,位于你的typeocho根目录,文件名:config.inc.php
如下:阅读全文 →

让网页favicon图标在支持SVG的浏览器中使用SVG图标

今儿有人问我ICO怎么压缩,我寻思先转成别的格式压缩了再转ICO不就可以了,这一试才发现ICO格式是真的垃圾.反正就是体积大.就想到了用SVG来代替ICO,但是有些浏览器又不支持咋个搞.”百度一哈”,这次是真的直接在百度首页偷来的.他用的贼好,借鉴一哈.

<link rel=”shortcut icon” href=”/favicon.ico” type=”image/x-icon” />
<link rel=”icon” sizes=”any” mask href=”//www.baidu.com/img/baidu_85beaf5496f291521eb75ba38eacbd87.svg”>