1.下载并安装 ActivePerl
2.下载OpelSSL源码
3.在VS命令提示符下使用下列命令进行编译
perl configure VC-WIN32
ms\do_ms.bat
nmake -f ms\ntdll.mak
注意命令的大小写
以上是 1.0 版本的编译方法
从 2016 年 11 月 1.1 版本发布以后,编译方法不同了。不再使用 bat和mak, 而是使用 makefile
依旧是下载 ActivePerl 和 OpelSSL 源码。以及 nasm .并配置好 nasm 的环境变量
第三步使用vs命令提示
perl Configure VC-WIN32
nmake
nmake install
原文地址 :猛戳这里
首先将下面的源添加到 /etc/apt/source.list列表里
deb http://mirror.cse.iitk.ac.in/debian/ testing main contrib
然后执行以下命令更新源和安装python2.7
$ apt-get update
$ apt-get install python2.7
安装过程中会更新部分配置。并重启机器上的服务。
我们有时候需要自定义日志,控制某些文章不在首页显示。
打开当前theme的index.php找出如下代码:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
在它的前面加上一句:
<?php query_posts(’cat=-1,-2,’); ?>
里面的“1 ” “2” 换成不想显示的日志的分类ID即可,需要隐藏更多的分类,用逗号隔开。
https方式每次都要输入密码,按照如下设置,输入一次即可记住密码
设置记住密码(默认15分钟):
|
git config --global credential.helper cache |
如果想自己设置时间,可以这样做:
|
git config credential.helper 'cache --timeout=3600' |
这样就设置一个小时之后失效
长期存储密码:
|
git config --global credential.helper store |