$ brew install emscripten
and setup by following the instruction after the installation.
www.zhihu.com##[class="ZVideoItem-video"] | |
www.zhihu.com##[class="VideoAnswerPlayer"] | |
www.zhihu.com##[class="RichText-ZVideoLinkCardContainer"] | |
Preface 6 | |
Preface to the first edition 8 | |
Chapter 1 - A Tutorial Introduction 9 | |
1.1 Getting Started 9 | |
1.2 Variables and Arithmetic Expressions 11 | |
1.3 The for statement 15 | |
1.4 Symbolic Constants 17 | |
1.5 Character Input and Output 17 | |
1.5.1 File Copying 18 | |
1.5.2 Character Counting 19 |
emcc_image="trzeci/emscripten"; | |
if [[ "$(docker images -q $emcc_image:latest 2> /dev/null)" == "" ]]; then | |
docker pull emcc_image; | |
fi | |
alias emcc="docker run --rm -v "$(pwd):/src" $emcc_image emcc"; | |
# test | |
emcc -v |
# package-lock=false | |
registry="https://registry.npm.taobao.org" | |
disturl="https://npm.taobao.org/dist" | |
nvm_nodejs_org_mirror="http://npm.taobao.org/mirrors/node" | |
nodejs_org_mirror="http://npm.taobao.org/mirrors/node" | |
sass_binary_site="http://npm.taobao.org/mirrors/node-sass" | |
electron_mirror="http://npm.taobao.org/mirrors/electron/" | |
SQLITE3_BINARY_SITE="http://npm.taobao.org/mirrors/sqlite3" | |
profiler_binary_host_mirror="http://npm.taobao.org/mirrors/node-inspector/" | |
node_inspector_cdnurl="https://npm.taobao.org/mirrors/node-inspector" |
npx license mit > LICENSE && npx gitignore node && npx covgen liuwayong@gmail.com && yarn init -y |
registry "https://registry.npm.taobao.org" | |
disturl "https://npm.taobao.org/dist" | |
nvm_nodejs_org_mirror "http://npm.taobao.org/mirrors/node" | |
NODEJS_ORG_MIRROR "http://npm.taobao.org/mirrors/node" | |
sass_binary_site "http://npm.taobao.org/mirrors/node-sass" | |
electron_mirror "http://npm.taobao.org/mirrors/electron/" | |
SQLITE3_BINARY_SITE "http://npm.taobao.org/mirrors/sqlite3" | |
profiler_binary_host_mirror "http://npm.taobao.org/mirrors/node-inspector/" | |
node_inspector_cdnurl "https://npm.taobao.org/mirrors/node-inspector" | |
selenium_cdnurl "http://npm.taobao.org/mirrors/selenium" |
comment
#
,//
or whateveruncomment
// ==UserScript== | |
// @name set video playback rate | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description change the playback rate of the video | |
// @author wayou | |
// @match *://pan.baidu.com/* | |
// @match *://www.zealer.com/* | |
// @grant unsafeWindow | |
// @grant GM_addStyle |
// ==UserScript== | |
// @name baidu yun 资源链接 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 自动将google搜索结果页面中百度云盘地址变成可点击的链接,如果链接附近有提取码,在点击时自动复制 | |
// @author You | |
// @match https://www.google.com/search* | |
// @grant none | |
// ==/UserScript== |