Chrome的地址栏自动补齐功能提供了非常方便的地址预测功能 浏览器可以通过用户当前输入的字符来与用户的访问历史与书签匹配 然后在下拉栏中为用提供准确的补齐方案排名, 提高用户访问效率
在大部分情况下, 这个功能是非常好用的 但是有时, 出于某些原因, 用户需要移除某个记录(网址无法访问,网址更换域名等) Chrome提供了组合键
Shift+Delete
来删除地址栏下拉记录中的某个网址
'use strict'; | |
/* eslint-disable consistent-this */ | |
let middlewareManagerHash = []; | |
/** | |
* Composes single-argument functions from right to left. The rightmost | |
* function can take multiple arguments as it provides the signature for | |
* the resulting composite function. | |
* |
! Put user rules line by line in this file. | |
! See https://adblockplus.org/en/filter-cheatsheet | |
*.githubusercontent.com/* |
## | |
## HTTP Router benchmarks -- Jan 9, 2019 with Go 1.11.4 on Linux X1 Carbon laptop | |
## | |
## This benchmark suite is based on https://github.com/julienschmidt/go-http-routing-benchmark | |
## using the most up-to-date version of each pkg as of today. Each router has their own | |
## pros and cons, so consider the designs of each router to suit your application. | |
## | |
## We use the most up-to-date version of each router available in the tests below. | |
## |
.card { | |
font-family: PingFang SC; | |
font-size: 1em; | |
} | |
.Back { | |
font-family: arial; | |
font-size: 1em; | |
border-radius: 1.2em 0.3em; |
{ | |
"window.openFilesInNewWindow": "on", | |
"window.restoreWindows": "all", | |
"window.openFoldersInNewWindow": "on", | |
"editor.snippetSuggestions": "top", | |
"editor.cursorStyle": "block", | |
"editor.lineHeight": 30, | |
"debug.allowBreakpointsEverywhere": true, | |
"editor.fontFamily": " 'M+ 1mn', 'Operator Mono', 'Fantasque Sans Mono', 'SFMono-Regular', 'Fira Code', 'Ubuntu Mono', 'iosevka', 'inconsolata'", | |
// Enables font ligatures |
markdown here 的主题,参考了李笑来的主题
优化:
主题:
echo "CPU型号: " | |
sysctl -n machdep.cpu.brand_string | |
echo "CPU核心数: " | |
sysctl -n machdep.cpu.core_count | |
echo "CPU线程数: " | |
sysctl -n machdep.cpu.thread_count | |
echo "其它信息:" |
Good news is we're only using lodash/fp
, which makes it easier to match function signatures.