The Bitcoin Boom: In Code We Trust(附全文翻译)

Andrea Chronopoulos

编辑按:《The Bitcoin Boom: In Code We Trust》是原始标题,于2017年12月18日发布在纽约时报上,作者是Tim Wu。文章发布当时的比特币价格折合人民币大约是99394.87元,本文发布时的价格折合人民币是:87898.8元(今日涨17.4%左右),算是写在比特币大跌之际。

因为文章写的很精彩,所以把原文复制过来,最后附上黄剑雄译的中文版,供读者参考。 继续阅读“The Bitcoin Boom: In Code We Trust(附全文翻译)”

WordPress2011主题怎么在文章页插入分享代码

之前写了一篇题为如何在WordPress2015主题文章页插入分享代码的博文,因为WordPress2011主题与WordPress2015主题插入分享代码的文件是不同的,所以才接着写这篇。 继续阅读“WordPress2011主题怎么在文章页插入分享代码”

如何在WordPress2015主题文章页插入分享代码

在博客文章页插入分享代码,可以为博客带来更多的展现和流量,有些人是使用代码,有些人是使用插件,这个根据自己的情况而选择。但是目前百度分享的WordPress 2.7-3.2 插件(更新日期:2011.09.21)在WordPress2015主题下好像不生效了。 继续阅读“如何在WordPress2015主题文章页插入分享代码”

Nginx环境下Discuz7伪静态(rewrite)代码规则写法

Nginx环境下Discuz7伪静态(rewrite)代码规则写法

rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page\%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;

Nginx环境下Typecho伪静态(rewrite)代码规则写法

Nginx环境下Typecho伪静态(rewrite)代码规则写法

if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}