Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
knuth-shuffle
Advanced tools
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js
'nuf said.
As Microsoft learned the hard way (see article below), function random() { return 0.5 - Math.random() }
turns out to be no-so-random at all.
The fisher-yates shuffle is an algorithm so simple that even IEEE floating point math can't screw it up!
I put this on npm as knuth-shuffle
because fisher-yates-shuffle
was just too long of a name and shuffle was already taken.
<script src="https://raw.github.com/coolaj86/knuth-shuffle/master/index.js"></script>
(function () {
'use strict';
var a = [2,11,37,42];
var b;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = window.knuthShuffle(a.slice(0));
console.log(b);
}());
Decentralized Install
npm install --save git+https://git.coolaj86.com/coolaj86/knuth-shuffle.js.git#v1.0
Centralized Install
npm install --save knuth-shuffle@1.0
(function () {
'use strict';
var shuffle = require('knuth-shuffle').knuthShuffle;
var a = [2,11,37,42];
var b;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = shuffle(a.slice(0));
console.log(b);
}());
FAQs
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.js
The npm package knuth-shuffle receives a total of 7,158 weekly downloads. As such, knuth-shuffle popularity was classified as popular.
We found that knuth-shuffle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.