Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Small library for working with an arbitrarily large array of booleans
npm install bitflags
var bitflags = require('bitflags');
var flags = bitflags(1000000); //Creates a million boolean flags
Gets the bool at offset
flags.get(n) //returns true or false
Sets a bit at offset to bool
flags.set(n,0) //sets to false
flags.set(n,1) //sets to true
flags.set(n,'truthy') //sets to true
Sets the bit at offset to true
flags.on(n)
Sets the bit at offset to false
flags.off(n)
Flip and returns the value of a single bit at offset
flags.flip(n)
Reset to all 1's
flags.fill()
Reset to all 0's
flags.clear()
Return exact size in bits note: may be larger than size specified in constructor, due to storage in octets
flags.size()
Sets a flag for each prime in the first 2000000 integers, using Sieve of Eratosthenes, returns a function to test for primes:
var getSieveOfEratosthenes = function() {
var size = 2000000;
var bits = bitflags(size);
bits.fill();
bits.set(0,0);
var lim = Math.ceil(Math.sqrt(size));
for(var i=2;i<=lim;i++) {
if(bits.get(i)){
for(var j=i*i;j<=size;j+=i) {
bits.set(j,0);
}
}
};
return function(n){ return bits.get(n); };
};
FAQs
Small library for working with an arbitrarily large array of booleans
The npm package bitflags receives a total of 1 weekly downloads. As such, bitflags popularity was classified as not popular.
We found that bitflags demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.