国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
| #!/usr/bin/env bash | |
| # To fix the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error | |
| # Make sure that the .gnupg directory and its contents is accessibile by your user. | |
| chown -R $(whoami) ~/.gnupg/ | |
| # Also correct the permissions and access rights on the directory | |
| chmod 600 ~/.gnupg/* | |
| chmod 700 ~/.gnupg |
| 'use strict'; | |
| // http://dev.zm1v1.com/2015/08/19/javascript-optimization-killers/?spm=0.0.0.0.Rxyzi2 | |
| function testFn(a, b) { | |
| const c = (a || 0) + (b || 1); | |
| return c; | |
| } | |
| function printStatus(fn) { |
The GCC distributed with CentOS 6 is 4.4.7, which is pretty outdated. I'd like to use gcc 4.8+. Also, when trying to install Linuxbrew you run into a dependency loop where Homebrew's gcc depends on zlib, which depends on gcc. Here's how I solved the problem.
Note: Requires sudo privileges.
$ text-builder -index /path/to/index.txt
Or run $ sh build-all to build all your index files.本人不提供任何保证和技术支持,使用者自负风险。
There are no guarantees, no any support. Use it at your own risk.
| 4.4.55 | |
| [es6] When comparing two symbols we may need to throw a TypeError (issue | |
| 4.3.19 | |
| [es6] Fix for-const loops (issue 3983). | |
| 4.2.71 | |
| Implement ES6 rest parameters (issue 2159). | |
| 4.2.26 | |
| ES6 Array.prototype.toString falls back on Object.prototype.toString if | |
| 4.2.18 | |
| Fix issue with __proto__ when using ES6 object literals (issue 3818). |
From Fabrice Bellard, with minor name change (umulh):
// return the high 32 bit part of the 64 bit addition of (hi0, lo0) and (hi1, lo1)
Math.iaddh(lo0, hi0, lo1, hi1)
// return the high 32 bit part of the 64 bit subtraction of (hi0, lo0) and (hi1, lo1)
Math.isubh(lo0, hi0, lo1, hi1)
// return the high 32 bit part of the signed 64 bit product of the 32 bit numbers a and b**~~ NOTE: This is a Stage 0 proposal. ~~**
Please direct all future feedback to that repo in the form of directed issues.
| # npm publish with goodies | |
| # prerequisite: `npm install -g trash` | |
| # `np` with an optional argument `patch`/`minor`/`major`/`<version>` | |
| # defaults to `patch` | |
| np() { | |
| trash node_modules &>/dev/null; | |
| git pull --rebase && | |
| npm install && | |
| npm test && | |
| npm version ${1:-patch} && |