npm Users By Downloads (git.io/npm-top)
npm users sorted by the monthly downloads of their modules, for the range May 6, 2018 until Jun 6, 2018.
Metrics are calculated using top-npm-users.
# | User | Downloads |
---|
npm users sorted by the monthly downloads of their modules, for the range May 6, 2018 until Jun 6, 2018.
Metrics are calculated using top-npm-users.
# | User | Downloads |
---|
This is a collection of the most common commands I run while administering Postgres databases. The variables shown between the open and closed tags, "<" and ">", should be replaced with a name you choose. Postgres has multiple shortcut functions, starting with a forward slash, "". Any SQL command that is not a shortcut, must end with a semicolon, ";". You can use the keyboard UP and DOWN keys to scroll the history of previous commands you've run.
http://www.postgresql.org/download/linux/ubuntu/ https://help.ubuntu.com/community/PostgreSQL
I hereby claim:
To claim this, I am signing this object:
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
This is why I don't use
forEach
anymore.
This benchmark was done against native forEach
, while
, and for
. The code for every function follows this pattern:
function code(arr) {
var res = 0;
// basic count, just to have it do something
arr.forEach(function (i) {
res++;
Can micromatch be used as a drop-in replacement for minimatch?
For mainstream features, I tried to keep as much parity as possible between micromatch and minimatch. But there are some differences.
minimatch()
, works like micromatch.isMatch()
micromatch()
, works like multimatch, with support for multiple patterns.In both micromatch and minimatch, globs are converted to regex, which is then used for matching supplied values.
The following example shows one of the implementation differences between micromatch and minimatch, as a way of demonstrating how micromatch manages to have better Bash support while also being 20-120x faster than minimatch.
Given this glob pattern: