This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
navigator = { | |
appName: "Netscape", | |
}; | |
window = {}; | |
e = {}; | |
/** | |
* 源码中模块6的代码 | |
*/ | |
!(function (t) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="zh-cn"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="baidu_union_verify" content="df1a9a844ad16db7b31cc021f2ff13e4"> | |
<link rel="dns-prefetch" href="//cdn.sojson.com" /> | |
<link rel="dns-prefetch" href="//cdn.vfan.top" /> | |
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Vim的几种模式 | |
正常模式:可以使用快捷键命令,或按:输入命令行。 | |
插入模式:可以输入文本,在正常模式下,按i、a、o等都可以进入插入模式。 | |
可视模式:正常模式下按v可以进入可视模式, 在可视模式下,移动光标可以选择文本。按V进入可视行模式, 总是整行整行的选中。ctrl+v进入可视块模式。 | |
替换模式:正常模式下,按R进入。 | |
2. 启动Vim | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Basically there are two CER certificate encoding types, DER and Base64. When type DER returns an error loading certificate (asn1 encoding routines), try the PEM and it shall work. | |
openssl x509 -inform DER -in certificate.cer -out certificate.crt | |
openssl x509 -inform PEM -in certificate.cer -out certificate.crt |